Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 1 | /* |
| 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 Brown | ec6b910 | 2007-07-11 10:00:37 -0400 | [diff] [blame] | 18 | #include <linux/sched.h> |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 19 | #include <linux/pagemap.h> |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 20 | #include <linux/writeback.h> |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 21 | #include <linux/blkdev.h> |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 22 | #include <linux/sort.h> |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 23 | #include <linux/rcupdate.h> |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 24 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
David Sterba | dff51cd | 2011-06-14 12:52:17 +0200 | [diff] [blame] | 26 | #include <linux/ratelimit.h> |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 27 | #include <linux/percpu_counter.h> |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 28 | #include "hash.h" |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 29 | #include "tree-log.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 30 | #include "disk-io.h" |
| 31 | #include "print-tree.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 32 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 33 | #include "raid56.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 34 | #include "locking.h" |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 35 | #include "free-space-cache.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 36 | #include "math.h" |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 37 | #include "sysfs.h" |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 38 | #include "qgroup.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 39 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 40 | #undef SCRAMBLE_DELAYED_REFS |
| 41 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 42 | /* |
| 43 | * control flags for do_chunk_alloc's force field |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 44 | * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk |
| 45 | * if we really need one. |
| 46 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 47 | * 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 Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 53 | * CHUNK_ALLOC_FORCE means it must try to allocate one |
| 54 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 55 | */ |
| 56 | enum { |
| 57 | CHUNK_ALLOC_NO_FORCE = 0, |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 58 | CHUNK_ALLOC_LIMITED = 1, |
| 59 | CHUNK_ALLOC_FORCE = 2, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 60 | }; |
| 61 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 62 | /* |
| 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 | */ |
| 71 | enum { |
| 72 | RESERVE_FREE = 0, |
| 73 | RESERVE_ALLOC = 1, |
| 74 | RESERVE_ALLOC_NO_ACCOUNT = 2, |
| 75 | }; |
| 76 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 77 | static int update_block_group(struct btrfs_trans_handle *trans, |
| 78 | struct btrfs_root *root, u64 bytenr, |
| 79 | u64 num_bytes, int alloc); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 80 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 81 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 82 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 83 | u64 root_objectid, u64 owner_objectid, |
| 84 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 85 | struct btrfs_delayed_extent_op *extra_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 86 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 87 | struct extent_buffer *leaf, |
| 88 | struct btrfs_extent_item *ei); |
| 89 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 90 | struct btrfs_root *root, |
| 91 | u64 parent, u64 root_objectid, |
| 92 | u64 flags, u64 owner, u64 offset, |
| 93 | struct btrfs_key *ins, int ref_mod); |
| 94 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 95 | struct btrfs_root *root, |
| 96 | u64 parent, u64 root_objectid, |
| 97 | u64 flags, struct btrfs_disk_key *key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 98 | int level, struct btrfs_key *ins, |
| 99 | int no_quota); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 100 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 101 | struct btrfs_root *extent_root, u64 flags, |
| 102 | int force); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 103 | static int find_next_key(struct btrfs_path *path, int level, |
| 104 | struct btrfs_key *key); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 105 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 106 | int dump_block_groups); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 107 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 108 | u64 num_bytes, int reserve, |
| 109 | int delalloc); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 110 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 111 | u64 num_bytes); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 112 | int btrfs_pin_extent(struct btrfs_root *root, |
| 113 | u64 bytenr, u64 num_bytes, int reserved); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 114 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 115 | static noinline int |
| 116 | block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 117 | { |
| 118 | smp_mb(); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 119 | return cache->cached == BTRFS_CACHE_FINISHED || |
| 120 | cache->cached == BTRFS_CACHE_ERROR; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 121 | } |
| 122 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 123 | static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits) |
| 124 | { |
| 125 | return (cache->flags & bits) == bits; |
| 126 | } |
| 127 | |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 128 | static void btrfs_get_block_group(struct btrfs_block_group_cache *cache) |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 129 | { |
| 130 | atomic_inc(&cache->count); |
| 131 | } |
| 132 | |
| 133 | void btrfs_put_block_group(struct btrfs_block_group_cache *cache) |
| 134 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 135 | if (atomic_dec_and_test(&cache->count)) { |
| 136 | WARN_ON(cache->pinned > 0); |
| 137 | WARN_ON(cache->reserved > 0); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 138 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 139 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 140 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 141 | } |
| 142 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 143 | /* |
| 144 | * this adds the block group to the fs_info rb tree for the block group |
| 145 | * cache |
| 146 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 147 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 148 | struct btrfs_block_group_cache *block_group) |
| 149 | { |
| 150 | struct rb_node **p; |
| 151 | struct rb_node *parent = NULL; |
| 152 | struct btrfs_block_group_cache *cache; |
| 153 | |
| 154 | spin_lock(&info->block_group_cache_lock); |
| 155 | p = &info->block_group_cache_tree.rb_node; |
| 156 | |
| 157 | while (*p) { |
| 158 | parent = *p; |
| 159 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 160 | cache_node); |
| 161 | if (block_group->key.objectid < cache->key.objectid) { |
| 162 | p = &(*p)->rb_left; |
| 163 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 164 | p = &(*p)->rb_right; |
| 165 | } else { |
| 166 | spin_unlock(&info->block_group_cache_lock); |
| 167 | return -EEXIST; |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | rb_link_node(&block_group->cache_node, parent, p); |
| 172 | rb_insert_color(&block_group->cache_node, |
| 173 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 174 | |
| 175 | if (info->first_logical_byte > block_group->key.objectid) |
| 176 | info->first_logical_byte = block_group->key.objectid; |
| 177 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 178 | spin_unlock(&info->block_group_cache_lock); |
| 179 | |
| 180 | return 0; |
| 181 | } |
| 182 | |
| 183 | /* |
| 184 | * This will return the block group at or after bytenr if contains is 0, else |
| 185 | * it will return the block group that contains the bytenr |
| 186 | */ |
| 187 | static struct btrfs_block_group_cache * |
| 188 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 189 | int contains) |
| 190 | { |
| 191 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 192 | struct rb_node *n; |
| 193 | u64 end, start; |
| 194 | |
| 195 | spin_lock(&info->block_group_cache_lock); |
| 196 | n = info->block_group_cache_tree.rb_node; |
| 197 | |
| 198 | while (n) { |
| 199 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 200 | cache_node); |
| 201 | end = cache->key.objectid + cache->key.offset - 1; |
| 202 | start = cache->key.objectid; |
| 203 | |
| 204 | if (bytenr < start) { |
| 205 | if (!contains && (!ret || start < ret->key.objectid)) |
| 206 | ret = cache; |
| 207 | n = n->rb_left; |
| 208 | } else if (bytenr > start) { |
| 209 | if (contains && bytenr <= end) { |
| 210 | ret = cache; |
| 211 | break; |
| 212 | } |
| 213 | n = n->rb_right; |
| 214 | } else { |
| 215 | ret = cache; |
| 216 | break; |
| 217 | } |
| 218 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 219 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 220 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 221 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 222 | info->first_logical_byte = ret->key.objectid; |
| 223 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 224 | spin_unlock(&info->block_group_cache_lock); |
| 225 | |
| 226 | return ret; |
| 227 | } |
| 228 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 229 | static int add_excluded_extent(struct btrfs_root *root, |
| 230 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 231 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 232 | u64 end = start + num_bytes - 1; |
| 233 | set_extent_bits(&root->fs_info->freed_extents[0], |
| 234 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 235 | set_extent_bits(&root->fs_info->freed_extents[1], |
| 236 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 237 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 238 | } |
| 239 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 240 | static void free_excluded_extents(struct btrfs_root *root, |
| 241 | struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 242 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 243 | u64 start, end; |
| 244 | |
| 245 | start = cache->key.objectid; |
| 246 | end = start + cache->key.offset - 1; |
| 247 | |
| 248 | clear_extent_bits(&root->fs_info->freed_extents[0], |
| 249 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 250 | clear_extent_bits(&root->fs_info->freed_extents[1], |
| 251 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 252 | } |
| 253 | |
| 254 | static int exclude_super_stripes(struct btrfs_root *root, |
| 255 | struct btrfs_block_group_cache *cache) |
| 256 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 257 | u64 bytenr; |
| 258 | u64 *logical; |
| 259 | int stripe_len; |
| 260 | int i, nr, ret; |
| 261 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 262 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 263 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 264 | cache->bytes_super += stripe_len; |
| 265 | ret = add_excluded_extent(root, cache->key.objectid, |
| 266 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 267 | if (ret) |
| 268 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 271 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 272 | bytenr = btrfs_sb_offset(i); |
| 273 | ret = btrfs_rmap_block(&root->fs_info->mapping_tree, |
| 274 | cache->key.objectid, bytenr, |
| 275 | 0, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 276 | if (ret) |
| 277 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 278 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 279 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 280 | u64 start, len; |
| 281 | |
| 282 | if (logical[nr] > cache->key.objectid + |
| 283 | cache->key.offset) |
| 284 | continue; |
| 285 | |
| 286 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 287 | continue; |
| 288 | |
| 289 | start = logical[nr]; |
| 290 | if (start < cache->key.objectid) { |
| 291 | start = cache->key.objectid; |
| 292 | len = (logical[nr] + stripe_len) - start; |
| 293 | } else { |
| 294 | len = min_t(u64, stripe_len, |
| 295 | cache->key.objectid + |
| 296 | cache->key.offset - start); |
| 297 | } |
| 298 | |
| 299 | cache->bytes_super += len; |
| 300 | ret = add_excluded_extent(root, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 301 | if (ret) { |
| 302 | kfree(logical); |
| 303 | return ret; |
| 304 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 305 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 306 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 307 | kfree(logical); |
| 308 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 309 | return 0; |
| 310 | } |
| 311 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 312 | static struct btrfs_caching_control * |
| 313 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 314 | { |
| 315 | struct btrfs_caching_control *ctl; |
| 316 | |
| 317 | spin_lock(&cache->lock); |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 318 | if (!cache->caching_ctl) { |
| 319 | spin_unlock(&cache->lock); |
| 320 | return NULL; |
| 321 | } |
| 322 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 323 | ctl = cache->caching_ctl; |
| 324 | atomic_inc(&ctl->count); |
| 325 | spin_unlock(&cache->lock); |
| 326 | return ctl; |
| 327 | } |
| 328 | |
| 329 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 330 | { |
| 331 | if (atomic_dec_and_test(&ctl->count)) |
| 332 | kfree(ctl); |
| 333 | } |
| 334 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 335 | /* |
| 336 | * this is only called by cache_block_group, since we could have freed extents |
| 337 | * we need to check the pinned_extents for any extents that can't be used yet |
| 338 | * since their free space will be released as soon as the transaction commits. |
| 339 | */ |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 340 | static u64 add_new_free_space(struct btrfs_block_group_cache *block_group, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 341 | struct btrfs_fs_info *info, u64 start, u64 end) |
| 342 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 343 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 344 | int ret; |
| 345 | |
| 346 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 347 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 348 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 349 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 350 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 351 | if (ret) |
| 352 | break; |
| 353 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 354 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 355 | start = extent_end + 1; |
| 356 | } else if (extent_start > start && extent_start < end) { |
| 357 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 358 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 359 | ret = btrfs_add_free_space(block_group, start, |
| 360 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 361 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 362 | start = extent_end + 1; |
| 363 | } else { |
| 364 | break; |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | if (start < end) { |
| 369 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 370 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 371 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 372 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 373 | } |
| 374 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 375 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 376 | } |
| 377 | |
Qu Wenruo | d458b05 | 2014-02-28 10:46:19 +0800 | [diff] [blame] | 378 | static noinline void caching_thread(struct btrfs_work *work) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 379 | { |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 380 | struct btrfs_block_group_cache *block_group; |
| 381 | struct btrfs_fs_info *fs_info; |
| 382 | struct btrfs_caching_control *caching_ctl; |
| 383 | struct btrfs_root *extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 384 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 385 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 386 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 387 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 388 | u64 last = 0; |
| 389 | u32 nritems; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 390 | int ret = -ENOMEM; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 391 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 392 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 393 | block_group = caching_ctl->block_group; |
| 394 | fs_info = block_group->fs_info; |
| 395 | extent_root = fs_info->extent_root; |
| 396 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 397 | path = btrfs_alloc_path(); |
| 398 | if (!path) |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 399 | goto out; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 400 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 401 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 402 | |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 403 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 404 | * We don't want to deadlock with somebody trying to allocate a new |
| 405 | * extent for the extent root while also trying to search the extent |
| 406 | * root to add free space. So we skip locking and search the commit |
| 407 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 408 | */ |
| 409 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 410 | path->search_commit_root = 1; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 411 | path->reada = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 412 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 413 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 414 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 415 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 416 | again: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 417 | mutex_lock(&caching_ctl->mutex); |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 418 | /* need to make sure the commit_root doesn't disappear */ |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 419 | down_read(&fs_info->commit_root_sem); |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 420 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 421 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 422 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 423 | if (ret < 0) |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 424 | goto err; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 425 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 426 | leaf = path->nodes[0]; |
| 427 | nritems = btrfs_header_nritems(leaf); |
| 428 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 429 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 430 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 431 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 432 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 433 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 434 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 435 | if (path->slots[0] < nritems) { |
| 436 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 437 | } else { |
| 438 | ret = find_next_key(path, 0, &key); |
| 439 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 440 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 441 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 442 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 443 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 444 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 445 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 446 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 447 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 448 | cond_resched(); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 449 | goto again; |
| 450 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 451 | |
| 452 | ret = btrfs_next_leaf(extent_root, path); |
| 453 | if (ret < 0) |
| 454 | goto err; |
| 455 | if (ret) |
| 456 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 457 | leaf = path->nodes[0]; |
| 458 | nritems = btrfs_header_nritems(leaf); |
| 459 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 460 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 461 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 462 | if (key.objectid < last) { |
| 463 | key.objectid = last; |
| 464 | key.offset = 0; |
| 465 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 466 | |
| 467 | caching_ctl->progress = last; |
| 468 | btrfs_release_path(path); |
| 469 | goto next; |
| 470 | } |
| 471 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 472 | if (key.objectid < block_group->key.objectid) { |
| 473 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 474 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 475 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 476 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 477 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 478 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 479 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 480 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 481 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 482 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 483 | total_found += add_new_free_space(block_group, |
| 484 | fs_info, last, |
| 485 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 486 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 487 | last = key.objectid + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 488 | fs_info->tree_root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 489 | else |
| 490 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 491 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 492 | if (total_found > (1024 * 1024 * 2)) { |
| 493 | total_found = 0; |
| 494 | wake_up(&caching_ctl->wait); |
| 495 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 496 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 497 | path->slots[0]++; |
| 498 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 499 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 500 | |
| 501 | total_found += add_new_free_space(block_group, fs_info, last, |
| 502 | block_group->key.objectid + |
| 503 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 504 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 505 | |
| 506 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 507 | block_group->caching_ctl = NULL; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 508 | block_group->cached = BTRFS_CACHE_FINISHED; |
| 509 | spin_unlock(&block_group->lock); |
| 510 | |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 511 | err: |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 512 | btrfs_free_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 513 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 514 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 515 | free_excluded_extents(extent_root, block_group); |
| 516 | |
| 517 | mutex_unlock(&caching_ctl->mutex); |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 518 | out: |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 519 | if (ret) { |
| 520 | spin_lock(&block_group->lock); |
| 521 | block_group->caching_ctl = NULL; |
| 522 | block_group->cached = BTRFS_CACHE_ERROR; |
| 523 | spin_unlock(&block_group->lock); |
| 524 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 525 | wake_up(&caching_ctl->wait); |
| 526 | |
| 527 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 528 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 529 | } |
| 530 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 531 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 532 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 533 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 534 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 535 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 536 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 537 | int ret = 0; |
| 538 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 539 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 540 | if (!caching_ctl) |
| 541 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 542 | |
| 543 | INIT_LIST_HEAD(&caching_ctl->list); |
| 544 | mutex_init(&caching_ctl->mutex); |
| 545 | init_waitqueue_head(&caching_ctl->wait); |
| 546 | caching_ctl->block_group = cache; |
| 547 | caching_ctl->progress = cache->key.objectid; |
| 548 | atomic_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 549 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 550 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 551 | |
| 552 | spin_lock(&cache->lock); |
| 553 | /* |
| 554 | * This should be a rare occasion, but this could happen I think in the |
| 555 | * case where one thread starts to load the space cache info, and then |
| 556 | * some other thread starts a transaction commit which tries to do an |
| 557 | * allocation while the other thread is still loading the space cache |
| 558 | * info. The previous loop should have kept us from choosing this block |
| 559 | * group, but if we've moved to the state where we will wait on caching |
| 560 | * block groups we need to first check if we're doing a fast load here, |
| 561 | * so we can wait for it to finish, otherwise we could end up allocating |
| 562 | * from a block group who's cache gets evicted for one reason or |
| 563 | * another. |
| 564 | */ |
| 565 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 566 | struct btrfs_caching_control *ctl; |
| 567 | |
| 568 | ctl = cache->caching_ctl; |
| 569 | atomic_inc(&ctl->count); |
| 570 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 571 | spin_unlock(&cache->lock); |
| 572 | |
| 573 | schedule(); |
| 574 | |
| 575 | finish_wait(&ctl->wait, &wait); |
| 576 | put_caching_control(ctl); |
| 577 | spin_lock(&cache->lock); |
| 578 | } |
| 579 | |
| 580 | if (cache->cached != BTRFS_CACHE_NO) { |
| 581 | spin_unlock(&cache->lock); |
| 582 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 583 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 584 | } |
| 585 | WARN_ON(cache->caching_ctl); |
| 586 | cache->caching_ctl = caching_ctl; |
| 587 | cache->cached = BTRFS_CACHE_FAST; |
| 588 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 589 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 590 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 591 | mutex_lock(&caching_ctl->mutex); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 592 | ret = load_free_space_cache(fs_info, cache); |
| 593 | |
| 594 | spin_lock(&cache->lock); |
| 595 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 596 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 597 | cache->cached = BTRFS_CACHE_FINISHED; |
| 598 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 599 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 600 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 601 | if (load_cache_only) { |
| 602 | cache->caching_ctl = NULL; |
| 603 | cache->cached = BTRFS_CACHE_NO; |
| 604 | } else { |
| 605 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 606 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 607 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 608 | } |
| 609 | spin_unlock(&cache->lock); |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 610 | mutex_unlock(&caching_ctl->mutex); |
| 611 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 612 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 613 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 614 | put_caching_control(caching_ctl); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 615 | free_excluded_extents(fs_info->extent_root, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 616 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 617 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 618 | } else { |
| 619 | /* |
| 620 | * We are not going to do the fast caching, set cached to the |
| 621 | * appropriate value and wakeup any waiters. |
| 622 | */ |
| 623 | spin_lock(&cache->lock); |
| 624 | if (load_cache_only) { |
| 625 | cache->caching_ctl = NULL; |
| 626 | cache->cached = BTRFS_CACHE_NO; |
| 627 | } else { |
| 628 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 629 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 630 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 631 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 632 | wake_up(&caching_ctl->wait); |
| 633 | } |
| 634 | |
| 635 | if (load_cache_only) { |
| 636 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 637 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 638 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 639 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 640 | down_write(&fs_info->commit_root_sem); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 641 | atomic_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 642 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 643 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 644 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 645 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 646 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 647 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 648 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 649 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 650 | } |
| 651 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 652 | /* |
| 653 | * return the block group that starts at or after bytenr |
| 654 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 655 | static struct btrfs_block_group_cache * |
| 656 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 657 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 658 | struct btrfs_block_group_cache *cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 659 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 660 | cache = block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 661 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 662 | return cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 663 | } |
| 664 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 665 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 666 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 667 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 668 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 669 | struct btrfs_fs_info *info, |
| 670 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 671 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 672 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 673 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 674 | cache = block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 675 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 676 | return cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 677 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 678 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 679 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 680 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 681 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 682 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 683 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 684 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 685 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 686 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 687 | rcu_read_lock(); |
| 688 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 689 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 690 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 691 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 692 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 693 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 694 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 695 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 696 | } |
| 697 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 698 | /* |
| 699 | * after adding space to the filesystem, we need to clear the full flags |
| 700 | * on all the space infos. |
| 701 | */ |
| 702 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 703 | { |
| 704 | struct list_head *head = &info->space_info; |
| 705 | struct btrfs_space_info *found; |
| 706 | |
| 707 | rcu_read_lock(); |
| 708 | list_for_each_entry_rcu(found, head, list) |
| 709 | found->full = 0; |
| 710 | rcu_read_unlock(); |
| 711 | } |
| 712 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 713 | /* simple helper to search for an existing data extent at a given offset */ |
| 714 | int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 715 | { |
| 716 | int ret; |
| 717 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 718 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 719 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 720 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 721 | if (!path) |
| 722 | return -ENOMEM; |
| 723 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 724 | key.objectid = start; |
| 725 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 726 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 727 | ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path, |
| 728 | 0, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 729 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 730 | return ret; |
| 731 | } |
| 732 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 733 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 734 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 735 | * |
| 736 | * the head node for delayed ref is used to store the sum of all the |
| 737 | * reference count modifications queued up in the rbtree. the head |
| 738 | * node may also store the extent flags to set. This way you can check |
| 739 | * to see what the reference count and extent flags would be if all of |
| 740 | * the delayed refs are not processed. |
| 741 | */ |
| 742 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
| 743 | struct btrfs_root *root, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 744 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 745 | { |
| 746 | struct btrfs_delayed_ref_head *head; |
| 747 | struct btrfs_delayed_ref_root *delayed_refs; |
| 748 | struct btrfs_path *path; |
| 749 | struct btrfs_extent_item *ei; |
| 750 | struct extent_buffer *leaf; |
| 751 | struct btrfs_key key; |
| 752 | u32 item_size; |
| 753 | u64 num_refs; |
| 754 | u64 extent_flags; |
| 755 | int ret; |
| 756 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 757 | /* |
| 758 | * If we don't have skinny metadata, don't bother doing anything |
| 759 | * different |
| 760 | */ |
| 761 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) { |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 762 | offset = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 763 | metadata = 0; |
| 764 | } |
| 765 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 766 | path = btrfs_alloc_path(); |
| 767 | if (!path) |
| 768 | return -ENOMEM; |
| 769 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 770 | if (!trans) { |
| 771 | path->skip_locking = 1; |
| 772 | path->search_commit_root = 1; |
| 773 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 774 | |
| 775 | search_again: |
| 776 | key.objectid = bytenr; |
| 777 | key.offset = offset; |
| 778 | if (metadata) |
| 779 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 780 | else |
| 781 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 782 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 783 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, |
| 784 | &key, path, 0, 0); |
| 785 | if (ret < 0) |
| 786 | goto out_free; |
| 787 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 788 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 789 | if (path->slots[0]) { |
| 790 | path->slots[0]--; |
| 791 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 792 | path->slots[0]); |
| 793 | if (key.objectid == bytenr && |
| 794 | key.type == BTRFS_EXTENT_ITEM_KEY && |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 795 | key.offset == root->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 796 | ret = 0; |
| 797 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 798 | } |
| 799 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 800 | if (ret == 0) { |
| 801 | leaf = path->nodes[0]; |
| 802 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 803 | if (item_size >= sizeof(*ei)) { |
| 804 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 805 | struct btrfs_extent_item); |
| 806 | num_refs = btrfs_extent_refs(leaf, ei); |
| 807 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 808 | } else { |
| 809 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 810 | struct btrfs_extent_item_v0 *ei0; |
| 811 | BUG_ON(item_size != sizeof(*ei0)); |
| 812 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 813 | struct btrfs_extent_item_v0); |
| 814 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 815 | /* FIXME: this isn't correct for data */ |
| 816 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 817 | #else |
| 818 | BUG(); |
| 819 | #endif |
| 820 | } |
| 821 | BUG_ON(num_refs == 0); |
| 822 | } else { |
| 823 | num_refs = 0; |
| 824 | extent_flags = 0; |
| 825 | ret = 0; |
| 826 | } |
| 827 | |
| 828 | if (!trans) |
| 829 | goto out; |
| 830 | |
| 831 | delayed_refs = &trans->transaction->delayed_refs; |
| 832 | spin_lock(&delayed_refs->lock); |
| 833 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 834 | if (head) { |
| 835 | if (!mutex_trylock(&head->mutex)) { |
| 836 | atomic_inc(&head->node.refs); |
| 837 | spin_unlock(&delayed_refs->lock); |
| 838 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 839 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 840 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 841 | /* |
| 842 | * Mutex was contended, block until it's released and try |
| 843 | * again |
| 844 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 845 | mutex_lock(&head->mutex); |
| 846 | mutex_unlock(&head->mutex); |
| 847 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 848 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 849 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 850 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 851 | if (head->extent_op && head->extent_op->update_flags) |
| 852 | extent_flags |= head->extent_op->flags_to_set; |
| 853 | else |
| 854 | BUG_ON(num_refs == 0); |
| 855 | |
| 856 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 857 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 858 | mutex_unlock(&head->mutex); |
| 859 | } |
| 860 | spin_unlock(&delayed_refs->lock); |
| 861 | out: |
| 862 | WARN_ON(num_refs == 0); |
| 863 | if (refs) |
| 864 | *refs = num_refs; |
| 865 | if (flags) |
| 866 | *flags = extent_flags; |
| 867 | out_free: |
| 868 | btrfs_free_path(path); |
| 869 | return ret; |
| 870 | } |
| 871 | |
| 872 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 873 | * Back reference rules. Back refs have three main goals: |
| 874 | * |
| 875 | * 1) differentiate between all holders of references to an extent so that |
| 876 | * when a reference is dropped we can make sure it was a valid reference |
| 877 | * before freeing the extent. |
| 878 | * |
| 879 | * 2) Provide enough information to quickly find the holders of an extent |
| 880 | * if we notice a given block is corrupted or bad. |
| 881 | * |
| 882 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 883 | * maintenance. This is actually the same as #2, but with a slightly |
| 884 | * different use case. |
| 885 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 886 | * There are two kinds of back refs. The implicit back refs is optimized |
| 887 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 888 | * back refs of this kind provide information about the block's owner tree |
| 889 | * and the pointer's key. These information allow us to find the block by |
| 890 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 891 | * referenced by their owner trees. The location of tree block is recorded |
| 892 | * in the back refs. Actually the full back refs is generic, and can be |
| 893 | * used in all cases the implicit back refs is used. The major shortcoming |
| 894 | * of the full back refs is its overhead. Every time a tree block gets |
| 895 | * COWed, we have to update back refs entry for all pointers in it. |
| 896 | * |
| 897 | * For a newly allocated tree block, we use implicit back refs for |
| 898 | * pointers in it. This means most tree related operations only involve |
| 899 | * implicit back refs. For a tree block created in old transaction, the |
| 900 | * only way to drop a reference to it is COW it. So we can detect the |
| 901 | * event that tree block loses its owner tree's reference and do the |
| 902 | * back refs conversion. |
| 903 | * |
| 904 | * When a tree block is COW'd through a tree, there are four cases: |
| 905 | * |
| 906 | * The reference count of the block is one and the tree is the block's |
| 907 | * owner tree. Nothing to do in this case. |
| 908 | * |
| 909 | * The reference count of the block is one and the tree is not the |
| 910 | * block's owner tree. In this case, full back refs is used for pointers |
| 911 | * in the block. Remove these full back refs, add implicit back refs for |
| 912 | * every pointers in the new block. |
| 913 | * |
| 914 | * The reference count of the block is greater than one and the tree is |
| 915 | * the block's owner tree. In this case, implicit back refs is used for |
| 916 | * pointers in the block. Add full back refs for every pointers in the |
| 917 | * block, increase lower level extents' reference counts. The original |
| 918 | * implicit back refs are entailed to the new block. |
| 919 | * |
| 920 | * The reference count of the block is greater than one and the tree is |
| 921 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 922 | * the new block, increase lower level extents' reference count. |
| 923 | * |
| 924 | * Back Reference Key composing: |
| 925 | * |
| 926 | * The key objectid corresponds to the first byte in the extent, |
| 927 | * The key type is used to differentiate between types of back refs. |
| 928 | * There are different meanings of the key offset for different types |
| 929 | * of back refs. |
| 930 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 931 | * File extents can be referenced by: |
| 932 | * |
| 933 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 934 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 935 | * - different offsets inside a file (bookend extents in file.c) |
| 936 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 937 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 938 | * |
| 939 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 940 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 941 | * - original offset in the file |
| 942 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 943 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 944 | * The key offset for the implicit back refs is hash of the first |
| 945 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 946 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 947 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 948 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 949 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 950 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 951 | * The key offset for the implicit back refs is the first byte of |
| 952 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 953 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 954 | * When a file extent is allocated, The implicit back refs is used. |
| 955 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 956 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 957 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 958 | * |
| 959 | * When a file extent is removed file truncation, we find the |
| 960 | * corresponding implicit back refs and check the following fields: |
| 961 | * |
| 962 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 963 | * |
| 964 | * Btree extents can be referenced by: |
| 965 | * |
| 966 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 967 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 968 | * Both the implicit back refs and the full back refs for tree blocks |
| 969 | * only consist of key. The key offset for the implicit back refs is |
| 970 | * objectid of block's owner tree. The key offset for the full back refs |
| 971 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 972 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 973 | * When implicit back refs is used, information about the lowest key and |
| 974 | * level of the tree block are required. These information are stored in |
| 975 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 976 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 977 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 978 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 979 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
| 980 | struct btrfs_root *root, |
| 981 | struct btrfs_path *path, |
| 982 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 983 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 984 | struct btrfs_extent_item *item; |
| 985 | struct btrfs_extent_item_v0 *ei0; |
| 986 | struct btrfs_extent_ref_v0 *ref0; |
| 987 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 988 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 989 | struct btrfs_key key; |
| 990 | struct btrfs_key found_key; |
| 991 | u32 new_size = sizeof(*item); |
| 992 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 993 | int ret; |
| 994 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 995 | leaf = path->nodes[0]; |
| 996 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 997 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 998 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 999 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1000 | struct btrfs_extent_item_v0); |
| 1001 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1002 | |
| 1003 | if (owner == (u64)-1) { |
| 1004 | while (1) { |
| 1005 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1006 | ret = btrfs_next_leaf(root, path); |
| 1007 | if (ret < 0) |
| 1008 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1009 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1010 | leaf = path->nodes[0]; |
| 1011 | } |
| 1012 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1013 | path->slots[0]); |
| 1014 | BUG_ON(key.objectid != found_key.objectid); |
| 1015 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1016 | path->slots[0]++; |
| 1017 | continue; |
| 1018 | } |
| 1019 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1020 | struct btrfs_extent_ref_v0); |
| 1021 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1022 | break; |
| 1023 | } |
| 1024 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1025 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1026 | |
| 1027 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1028 | new_size += sizeof(*bi); |
| 1029 | |
| 1030 | new_size -= sizeof(*ei0); |
| 1031 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1032 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1033 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1034 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1035 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1036 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1037 | btrfs_extend_item(root, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1038 | |
| 1039 | leaf = path->nodes[0]; |
| 1040 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1041 | btrfs_set_extent_refs(leaf, item, refs); |
| 1042 | /* FIXME: get real generation */ |
| 1043 | btrfs_set_extent_generation(leaf, item, 0); |
| 1044 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1045 | btrfs_set_extent_flags(leaf, item, |
| 1046 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1047 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1048 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1049 | /* FIXME: get first key of the block */ |
| 1050 | memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi)); |
| 1051 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1052 | } else { |
| 1053 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1054 | } |
| 1055 | btrfs_mark_buffer_dirty(leaf); |
| 1056 | return 0; |
| 1057 | } |
| 1058 | #endif |
| 1059 | |
| 1060 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1061 | { |
| 1062 | u32 high_crc = ~(u32)0; |
| 1063 | u32 low_crc = ~(u32)0; |
| 1064 | __le64 lenum; |
| 1065 | |
| 1066 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1067 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1068 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1069 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1070 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1071 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1072 | |
| 1073 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1074 | } |
| 1075 | |
| 1076 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1077 | struct btrfs_extent_data_ref *ref) |
| 1078 | { |
| 1079 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1080 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1081 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1082 | } |
| 1083 | |
| 1084 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1085 | struct btrfs_extent_data_ref *ref, |
| 1086 | u64 root_objectid, u64 owner, u64 offset) |
| 1087 | { |
| 1088 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1089 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1090 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1091 | return 0; |
| 1092 | return 1; |
| 1093 | } |
| 1094 | |
| 1095 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1096 | struct btrfs_root *root, |
| 1097 | struct btrfs_path *path, |
| 1098 | u64 bytenr, u64 parent, |
| 1099 | u64 root_objectid, |
| 1100 | u64 owner, u64 offset) |
| 1101 | { |
| 1102 | struct btrfs_key key; |
| 1103 | struct btrfs_extent_data_ref *ref; |
| 1104 | struct extent_buffer *leaf; |
| 1105 | u32 nritems; |
| 1106 | int ret; |
| 1107 | int recow; |
| 1108 | int err = -ENOENT; |
| 1109 | |
| 1110 | key.objectid = bytenr; |
| 1111 | if (parent) { |
| 1112 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1113 | key.offset = parent; |
| 1114 | } else { |
| 1115 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1116 | key.offset = hash_extent_data_ref(root_objectid, |
| 1117 | owner, offset); |
| 1118 | } |
| 1119 | again: |
| 1120 | recow = 0; |
| 1121 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1122 | if (ret < 0) { |
| 1123 | err = ret; |
| 1124 | goto fail; |
| 1125 | } |
| 1126 | |
| 1127 | if (parent) { |
| 1128 | if (!ret) |
| 1129 | return 0; |
| 1130 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1131 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1132 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1133 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1134 | if (ret < 0) { |
| 1135 | err = ret; |
| 1136 | goto fail; |
| 1137 | } |
| 1138 | if (!ret) |
| 1139 | return 0; |
| 1140 | #endif |
| 1141 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1145 | nritems = btrfs_header_nritems(leaf); |
| 1146 | while (1) { |
| 1147 | if (path->slots[0] >= nritems) { |
| 1148 | ret = btrfs_next_leaf(root, path); |
| 1149 | if (ret < 0) |
| 1150 | err = ret; |
| 1151 | if (ret) |
| 1152 | goto fail; |
| 1153 | |
| 1154 | leaf = path->nodes[0]; |
| 1155 | nritems = btrfs_header_nritems(leaf); |
| 1156 | recow = 1; |
| 1157 | } |
| 1158 | |
| 1159 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1160 | if (key.objectid != bytenr || |
| 1161 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1162 | goto fail; |
| 1163 | |
| 1164 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1165 | struct btrfs_extent_data_ref); |
| 1166 | |
| 1167 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1168 | owner, offset)) { |
| 1169 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1170 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1171 | goto again; |
| 1172 | } |
| 1173 | err = 0; |
| 1174 | break; |
| 1175 | } |
| 1176 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1177 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1178 | fail: |
| 1179 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1180 | } |
| 1181 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1182 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1183 | struct btrfs_root *root, |
| 1184 | struct btrfs_path *path, |
| 1185 | u64 bytenr, u64 parent, |
| 1186 | u64 root_objectid, u64 owner, |
| 1187 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1188 | { |
| 1189 | struct btrfs_key key; |
| 1190 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1191 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1192 | u32 num_refs; |
| 1193 | int ret; |
| 1194 | |
| 1195 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1196 | if (parent) { |
| 1197 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1198 | key.offset = parent; |
| 1199 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1200 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1201 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1202 | key.offset = hash_extent_data_ref(root_objectid, |
| 1203 | owner, offset); |
| 1204 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1205 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1206 | |
| 1207 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1208 | if (ret && ret != -EEXIST) |
| 1209 | goto fail; |
| 1210 | |
| 1211 | leaf = path->nodes[0]; |
| 1212 | if (parent) { |
| 1213 | struct btrfs_shared_data_ref *ref; |
| 1214 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1215 | struct btrfs_shared_data_ref); |
| 1216 | if (ret == 0) { |
| 1217 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1218 | } else { |
| 1219 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1220 | num_refs += refs_to_add; |
| 1221 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1222 | } |
| 1223 | } else { |
| 1224 | struct btrfs_extent_data_ref *ref; |
| 1225 | while (ret == -EEXIST) { |
| 1226 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1227 | struct btrfs_extent_data_ref); |
| 1228 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1229 | owner, offset)) |
| 1230 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1231 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1232 | key.offset++; |
| 1233 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1234 | size); |
| 1235 | if (ret && ret != -EEXIST) |
| 1236 | goto fail; |
| 1237 | |
| 1238 | leaf = path->nodes[0]; |
| 1239 | } |
| 1240 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1241 | struct btrfs_extent_data_ref); |
| 1242 | if (ret == 0) { |
| 1243 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1244 | root_objectid); |
| 1245 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1246 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1247 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1248 | } else { |
| 1249 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1250 | num_refs += refs_to_add; |
| 1251 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1252 | } |
| 1253 | } |
| 1254 | btrfs_mark_buffer_dirty(leaf); |
| 1255 | ret = 0; |
| 1256 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1257 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1258 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1259 | } |
| 1260 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1261 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1262 | struct btrfs_root *root, |
| 1263 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1264 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1265 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1266 | struct btrfs_key key; |
| 1267 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1268 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1269 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1270 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1271 | int ret = 0; |
| 1272 | |
| 1273 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1274 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1275 | |
| 1276 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1277 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1278 | struct btrfs_extent_data_ref); |
| 1279 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1280 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1281 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1282 | struct btrfs_shared_data_ref); |
| 1283 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1284 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1285 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1286 | struct btrfs_extent_ref_v0 *ref0; |
| 1287 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1288 | struct btrfs_extent_ref_v0); |
| 1289 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1290 | #endif |
| 1291 | } else { |
| 1292 | BUG(); |
| 1293 | } |
| 1294 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1295 | BUG_ON(num_refs < refs_to_drop); |
| 1296 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1297 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1298 | if (num_refs == 0) { |
| 1299 | ret = btrfs_del_item(trans, root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1300 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1301 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1302 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1303 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1304 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1305 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1306 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1307 | else { |
| 1308 | struct btrfs_extent_ref_v0 *ref0; |
| 1309 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1310 | struct btrfs_extent_ref_v0); |
| 1311 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1312 | } |
| 1313 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1314 | btrfs_mark_buffer_dirty(leaf); |
| 1315 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1316 | return ret; |
| 1317 | } |
| 1318 | |
| 1319 | static noinline u32 extent_data_ref_count(struct btrfs_root *root, |
| 1320 | struct btrfs_path *path, |
| 1321 | struct btrfs_extent_inline_ref *iref) |
| 1322 | { |
| 1323 | struct btrfs_key key; |
| 1324 | struct extent_buffer *leaf; |
| 1325 | struct btrfs_extent_data_ref *ref1; |
| 1326 | struct btrfs_shared_data_ref *ref2; |
| 1327 | u32 num_refs = 0; |
| 1328 | |
| 1329 | leaf = path->nodes[0]; |
| 1330 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1331 | if (iref) { |
| 1332 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1333 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1334 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1335 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1336 | } else { |
| 1337 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1338 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1339 | } |
| 1340 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1341 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1342 | struct btrfs_extent_data_ref); |
| 1343 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1344 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1345 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1346 | struct btrfs_shared_data_ref); |
| 1347 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1348 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1349 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1350 | struct btrfs_extent_ref_v0 *ref0; |
| 1351 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1352 | struct btrfs_extent_ref_v0); |
| 1353 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1354 | #endif |
| 1355 | } else { |
| 1356 | WARN_ON(1); |
| 1357 | } |
| 1358 | return num_refs; |
| 1359 | } |
| 1360 | |
| 1361 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1362 | struct btrfs_root *root, |
| 1363 | struct btrfs_path *path, |
| 1364 | u64 bytenr, u64 parent, |
| 1365 | u64 root_objectid) |
| 1366 | { |
| 1367 | struct btrfs_key key; |
| 1368 | int ret; |
| 1369 | |
| 1370 | key.objectid = bytenr; |
| 1371 | if (parent) { |
| 1372 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1373 | key.offset = parent; |
| 1374 | } else { |
| 1375 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1376 | key.offset = root_objectid; |
| 1377 | } |
| 1378 | |
| 1379 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1380 | if (ret > 0) |
| 1381 | ret = -ENOENT; |
| 1382 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1383 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1384 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1385 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1386 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1387 | if (ret > 0) |
| 1388 | ret = -ENOENT; |
| 1389 | } |
| 1390 | #endif |
| 1391 | return ret; |
| 1392 | } |
| 1393 | |
| 1394 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1395 | struct btrfs_root *root, |
| 1396 | struct btrfs_path *path, |
| 1397 | u64 bytenr, u64 parent, |
| 1398 | u64 root_objectid) |
| 1399 | { |
| 1400 | struct btrfs_key key; |
| 1401 | int ret; |
| 1402 | |
| 1403 | key.objectid = bytenr; |
| 1404 | if (parent) { |
| 1405 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1406 | key.offset = parent; |
| 1407 | } else { |
| 1408 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1409 | key.offset = root_objectid; |
| 1410 | } |
| 1411 | |
| 1412 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1413 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1414 | return ret; |
| 1415 | } |
| 1416 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1417 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1418 | { |
| 1419 | int type; |
| 1420 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1421 | if (parent > 0) |
| 1422 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1423 | else |
| 1424 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1425 | } else { |
| 1426 | if (parent > 0) |
| 1427 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1428 | else |
| 1429 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1430 | } |
| 1431 | return type; |
| 1432 | } |
| 1433 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1434 | static int find_next_key(struct btrfs_path *path, int level, |
| 1435 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1436 | |
| 1437 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1438 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1439 | if (!path->nodes[level]) |
| 1440 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1441 | if (path->slots[level] + 1 >= |
| 1442 | btrfs_header_nritems(path->nodes[level])) |
| 1443 | continue; |
| 1444 | if (level == 0) |
| 1445 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1446 | path->slots[level] + 1); |
| 1447 | else |
| 1448 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1449 | path->slots[level] + 1); |
| 1450 | return 0; |
| 1451 | } |
| 1452 | return 1; |
| 1453 | } |
| 1454 | |
| 1455 | /* |
| 1456 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1457 | * to the address of inline back ref, and 0 is returned. |
| 1458 | * |
| 1459 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1460 | * should be inserted, and -ENOENT is returned. |
| 1461 | * |
| 1462 | * if insert is true and there are too many inline back refs, the path |
| 1463 | * points to the extent item, and -EAGAIN is returned. |
| 1464 | * |
| 1465 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1466 | * items in the tree are ordered. |
| 1467 | */ |
| 1468 | static noinline_for_stack |
| 1469 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1470 | struct btrfs_root *root, |
| 1471 | struct btrfs_path *path, |
| 1472 | struct btrfs_extent_inline_ref **ref_ret, |
| 1473 | u64 bytenr, u64 num_bytes, |
| 1474 | u64 parent, u64 root_objectid, |
| 1475 | u64 owner, u64 offset, int insert) |
| 1476 | { |
| 1477 | struct btrfs_key key; |
| 1478 | struct extent_buffer *leaf; |
| 1479 | struct btrfs_extent_item *ei; |
| 1480 | struct btrfs_extent_inline_ref *iref; |
| 1481 | u64 flags; |
| 1482 | u64 item_size; |
| 1483 | unsigned long ptr; |
| 1484 | unsigned long end; |
| 1485 | int extra_size; |
| 1486 | int type; |
| 1487 | int want; |
| 1488 | int ret; |
| 1489 | int err = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1490 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 1491 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1492 | |
| 1493 | key.objectid = bytenr; |
| 1494 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1495 | key.offset = num_bytes; |
| 1496 | |
| 1497 | want = extent_ref_type(parent, owner); |
| 1498 | if (insert) { |
| 1499 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1500 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1501 | } else |
| 1502 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1503 | |
| 1504 | /* |
| 1505 | * Owner is our parent level, so we can just add one to get the level |
| 1506 | * for the block we are interested in. |
| 1507 | */ |
| 1508 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1509 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1510 | key.offset = owner; |
| 1511 | } |
| 1512 | |
| 1513 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1514 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1515 | if (ret < 0) { |
| 1516 | err = ret; |
| 1517 | goto out; |
| 1518 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1519 | |
| 1520 | /* |
| 1521 | * We may be a newly converted file system which still has the old fat |
| 1522 | * extent entries for metadata, so try and see if we have one of those. |
| 1523 | */ |
| 1524 | if (ret > 0 && skinny_metadata) { |
| 1525 | skinny_metadata = false; |
| 1526 | if (path->slots[0]) { |
| 1527 | path->slots[0]--; |
| 1528 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1529 | path->slots[0]); |
| 1530 | if (key.objectid == bytenr && |
| 1531 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1532 | key.offset == num_bytes) |
| 1533 | ret = 0; |
| 1534 | } |
| 1535 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1536 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1537 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1538 | key.offset = num_bytes; |
| 1539 | btrfs_release_path(path); |
| 1540 | goto again; |
| 1541 | } |
| 1542 | } |
| 1543 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1544 | if (ret && !insert) { |
| 1545 | err = -ENOENT; |
| 1546 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1547 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1548 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1549 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1550 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1551 | |
| 1552 | leaf = path->nodes[0]; |
| 1553 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1554 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1555 | if (item_size < sizeof(*ei)) { |
| 1556 | if (!insert) { |
| 1557 | err = -ENOENT; |
| 1558 | goto out; |
| 1559 | } |
| 1560 | ret = convert_extent_item_v0(trans, root, path, owner, |
| 1561 | extra_size); |
| 1562 | if (ret < 0) { |
| 1563 | err = ret; |
| 1564 | goto out; |
| 1565 | } |
| 1566 | leaf = path->nodes[0]; |
| 1567 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1568 | } |
| 1569 | #endif |
| 1570 | BUG_ON(item_size < sizeof(*ei)); |
| 1571 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1572 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1573 | flags = btrfs_extent_flags(leaf, ei); |
| 1574 | |
| 1575 | ptr = (unsigned long)(ei + 1); |
| 1576 | end = (unsigned long)ei + item_size; |
| 1577 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1578 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1579 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1580 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1581 | } |
| 1582 | |
| 1583 | err = -ENOENT; |
| 1584 | while (1) { |
| 1585 | if (ptr >= end) { |
| 1586 | WARN_ON(ptr > end); |
| 1587 | break; |
| 1588 | } |
| 1589 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1590 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1591 | if (want < type) |
| 1592 | break; |
| 1593 | if (want > type) { |
| 1594 | ptr += btrfs_extent_inline_ref_size(type); |
| 1595 | continue; |
| 1596 | } |
| 1597 | |
| 1598 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1599 | struct btrfs_extent_data_ref *dref; |
| 1600 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1601 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1602 | owner, offset)) { |
| 1603 | err = 0; |
| 1604 | break; |
| 1605 | } |
| 1606 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1607 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1608 | break; |
| 1609 | } else { |
| 1610 | u64 ref_offset; |
| 1611 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1612 | if (parent > 0) { |
| 1613 | if (parent == ref_offset) { |
| 1614 | err = 0; |
| 1615 | break; |
| 1616 | } |
| 1617 | if (ref_offset < parent) |
| 1618 | break; |
| 1619 | } else { |
| 1620 | if (root_objectid == ref_offset) { |
| 1621 | err = 0; |
| 1622 | break; |
| 1623 | } |
| 1624 | if (ref_offset < root_objectid) |
| 1625 | break; |
| 1626 | } |
| 1627 | } |
| 1628 | ptr += btrfs_extent_inline_ref_size(type); |
| 1629 | } |
| 1630 | if (err == -ENOENT && insert) { |
| 1631 | if (item_size + extra_size >= |
| 1632 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1633 | err = -EAGAIN; |
| 1634 | goto out; |
| 1635 | } |
| 1636 | /* |
| 1637 | * To add new inline back ref, we have to make sure |
| 1638 | * there is no corresponding back ref item. |
| 1639 | * For simplicity, we just do not add new inline back |
| 1640 | * ref if there is any kind of item for this block |
| 1641 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1642 | if (find_next_key(path, 0, &key) == 0 && |
| 1643 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1644 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1645 | err = -EAGAIN; |
| 1646 | goto out; |
| 1647 | } |
| 1648 | } |
| 1649 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1650 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1651 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1652 | path->keep_locks = 0; |
| 1653 | btrfs_unlock_up_safe(path, 1); |
| 1654 | } |
| 1655 | return err; |
| 1656 | } |
| 1657 | |
| 1658 | /* |
| 1659 | * helper to add new inline back ref |
| 1660 | */ |
| 1661 | static noinline_for_stack |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1662 | void setup_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1663 | struct btrfs_path *path, |
| 1664 | struct btrfs_extent_inline_ref *iref, |
| 1665 | u64 parent, u64 root_objectid, |
| 1666 | u64 owner, u64 offset, int refs_to_add, |
| 1667 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1668 | { |
| 1669 | struct extent_buffer *leaf; |
| 1670 | struct btrfs_extent_item *ei; |
| 1671 | unsigned long ptr; |
| 1672 | unsigned long end; |
| 1673 | unsigned long item_offset; |
| 1674 | u64 refs; |
| 1675 | int size; |
| 1676 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1677 | |
| 1678 | leaf = path->nodes[0]; |
| 1679 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1680 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1681 | |
| 1682 | type = extent_ref_type(parent, owner); |
| 1683 | size = btrfs_extent_inline_ref_size(type); |
| 1684 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1685 | btrfs_extend_item(root, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1686 | |
| 1687 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1688 | refs = btrfs_extent_refs(leaf, ei); |
| 1689 | refs += refs_to_add; |
| 1690 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1691 | if (extent_op) |
| 1692 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1693 | |
| 1694 | ptr = (unsigned long)ei + item_offset; |
| 1695 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1696 | if (ptr < end - size) |
| 1697 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1698 | end - size - ptr); |
| 1699 | |
| 1700 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1701 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1702 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1703 | struct btrfs_extent_data_ref *dref; |
| 1704 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1705 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1706 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1707 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1708 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1709 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1710 | struct btrfs_shared_data_ref *sref; |
| 1711 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1712 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1713 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1714 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1715 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1716 | } else { |
| 1717 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1718 | } |
| 1719 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1720 | } |
| 1721 | |
| 1722 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
| 1723 | struct btrfs_root *root, |
| 1724 | struct btrfs_path *path, |
| 1725 | struct btrfs_extent_inline_ref **ref_ret, |
| 1726 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1727 | u64 root_objectid, u64 owner, u64 offset) |
| 1728 | { |
| 1729 | int ret; |
| 1730 | |
| 1731 | ret = lookup_inline_extent_backref(trans, root, path, ref_ret, |
| 1732 | bytenr, num_bytes, parent, |
| 1733 | root_objectid, owner, offset, 0); |
| 1734 | if (ret != -ENOENT) |
| 1735 | return ret; |
| 1736 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1737 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1738 | *ref_ret = NULL; |
| 1739 | |
| 1740 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1741 | ret = lookup_tree_block_ref(trans, root, path, bytenr, parent, |
| 1742 | root_objectid); |
| 1743 | } else { |
| 1744 | ret = lookup_extent_data_ref(trans, root, path, bytenr, parent, |
| 1745 | root_objectid, owner, offset); |
| 1746 | } |
| 1747 | return ret; |
| 1748 | } |
| 1749 | |
| 1750 | /* |
| 1751 | * helper to update/remove inline back ref |
| 1752 | */ |
| 1753 | static noinline_for_stack |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1754 | void update_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1755 | struct btrfs_path *path, |
| 1756 | struct btrfs_extent_inline_ref *iref, |
| 1757 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1758 | struct btrfs_delayed_extent_op *extent_op, |
| 1759 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1760 | { |
| 1761 | struct extent_buffer *leaf; |
| 1762 | struct btrfs_extent_item *ei; |
| 1763 | struct btrfs_extent_data_ref *dref = NULL; |
| 1764 | struct btrfs_shared_data_ref *sref = NULL; |
| 1765 | unsigned long ptr; |
| 1766 | unsigned long end; |
| 1767 | u32 item_size; |
| 1768 | int size; |
| 1769 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1770 | u64 refs; |
| 1771 | |
| 1772 | leaf = path->nodes[0]; |
| 1773 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1774 | refs = btrfs_extent_refs(leaf, ei); |
| 1775 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1776 | refs += refs_to_mod; |
| 1777 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1778 | if (extent_op) |
| 1779 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1780 | |
| 1781 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1782 | |
| 1783 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1784 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1785 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1786 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1787 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1788 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1789 | } else { |
| 1790 | refs = 1; |
| 1791 | BUG_ON(refs_to_mod != -1); |
| 1792 | } |
| 1793 | |
| 1794 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1795 | refs += refs_to_mod; |
| 1796 | |
| 1797 | if (refs > 0) { |
| 1798 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1799 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1800 | else |
| 1801 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1802 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1803 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1804 | size = btrfs_extent_inline_ref_size(type); |
| 1805 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1806 | ptr = (unsigned long)iref; |
| 1807 | end = (unsigned long)ei + item_size; |
| 1808 | if (ptr + size < end) |
| 1809 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1810 | end - ptr - size); |
| 1811 | item_size -= size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1812 | btrfs_truncate_item(root, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1813 | } |
| 1814 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | static noinline_for_stack |
| 1818 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1819 | struct btrfs_root *root, |
| 1820 | struct btrfs_path *path, |
| 1821 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1822 | u64 root_objectid, u64 owner, |
| 1823 | u64 offset, int refs_to_add, |
| 1824 | struct btrfs_delayed_extent_op *extent_op) |
| 1825 | { |
| 1826 | struct btrfs_extent_inline_ref *iref; |
| 1827 | int ret; |
| 1828 | |
| 1829 | ret = lookup_inline_extent_backref(trans, root, path, &iref, |
| 1830 | bytenr, num_bytes, parent, |
| 1831 | root_objectid, owner, offset, 1); |
| 1832 | if (ret == 0) { |
| 1833 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1834 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1835 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1836 | } else if (ret == -ENOENT) { |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1837 | setup_inline_extent_backref(root, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1838 | root_objectid, owner, offset, |
| 1839 | refs_to_add, extent_op); |
| 1840 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1841 | } |
| 1842 | return ret; |
| 1843 | } |
| 1844 | |
| 1845 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
| 1846 | struct btrfs_root *root, |
| 1847 | struct btrfs_path *path, |
| 1848 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1849 | u64 owner, u64 offset, int refs_to_add) |
| 1850 | { |
| 1851 | int ret; |
| 1852 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1853 | BUG_ON(refs_to_add != 1); |
| 1854 | ret = insert_tree_block_ref(trans, root, path, bytenr, |
| 1855 | parent, root_objectid); |
| 1856 | } else { |
| 1857 | ret = insert_extent_data_ref(trans, root, path, bytenr, |
| 1858 | parent, root_objectid, |
| 1859 | owner, offset, refs_to_add); |
| 1860 | } |
| 1861 | return ret; |
| 1862 | } |
| 1863 | |
| 1864 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
| 1865 | struct btrfs_root *root, |
| 1866 | struct btrfs_path *path, |
| 1867 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1868 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1869 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1870 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1871 | |
| 1872 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1873 | if (iref) { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1874 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1875 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1876 | } else if (is_data) { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1877 | ret = remove_extent_data_ref(trans, root, path, refs_to_drop, |
| 1878 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1879 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1880 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1881 | ret = btrfs_del_item(trans, root, path); |
| 1882 | } |
| 1883 | return ret; |
| 1884 | } |
| 1885 | |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1886 | #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1887 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1888 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1889 | { |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1890 | int j, ret = 0; |
| 1891 | u64 bytes_left, end; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1892 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1893 | |
| 1894 | if (WARN_ON(start != aligned_start)) { |
| 1895 | len -= aligned_start - start; |
| 1896 | len = round_down(len, 1 << 9); |
| 1897 | start = aligned_start; |
| 1898 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1899 | |
| 1900 | *discarded_bytes = 0; |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1901 | |
| 1902 | if (!len) |
| 1903 | return 0; |
| 1904 | |
| 1905 | end = start + len; |
| 1906 | bytes_left = len; |
| 1907 | |
| 1908 | /* Skip any superblocks on this device. */ |
| 1909 | for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) { |
| 1910 | u64 sb_start = btrfs_sb_offset(j); |
| 1911 | u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE; |
| 1912 | u64 size = sb_start - start; |
| 1913 | |
| 1914 | if (!in_range(sb_start, start, bytes_left) && |
| 1915 | !in_range(sb_end, start, bytes_left) && |
| 1916 | !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE)) |
| 1917 | continue; |
| 1918 | |
| 1919 | /* |
| 1920 | * Superblock spans beginning of range. Adjust start and |
| 1921 | * try again. |
| 1922 | */ |
| 1923 | if (sb_start <= start) { |
| 1924 | start += sb_end - start; |
| 1925 | if (start > end) { |
| 1926 | bytes_left = 0; |
| 1927 | break; |
| 1928 | } |
| 1929 | bytes_left = end - start; |
| 1930 | continue; |
| 1931 | } |
| 1932 | |
| 1933 | if (size) { |
| 1934 | ret = blkdev_issue_discard(bdev, start >> 9, size >> 9, |
| 1935 | GFP_NOFS, 0); |
| 1936 | if (!ret) |
| 1937 | *discarded_bytes += size; |
| 1938 | else if (ret != -EOPNOTSUPP) |
| 1939 | return ret; |
| 1940 | } |
| 1941 | |
| 1942 | start = sb_end; |
| 1943 | if (start > end) { |
| 1944 | bytes_left = 0; |
| 1945 | break; |
| 1946 | } |
| 1947 | bytes_left = end - start; |
| 1948 | } |
| 1949 | |
| 1950 | if (bytes_left) { |
| 1951 | ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9, |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1952 | GFP_NOFS, 0); |
| 1953 | if (!ret) |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1954 | *discarded_bytes += bytes_left; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1955 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1956 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1957 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1958 | |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 1959 | int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
| 1960 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1961 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1962 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1963 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1964 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1965 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 1966 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1967 | /* Tell the block device(s) that the sectors can be discarded */ |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 1968 | ret = btrfs_map_block(root->fs_info, REQ_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1969 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1970 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1971 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1972 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1973 | int i; |
| 1974 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1975 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1976 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1977 | u64 bytes; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1978 | if (!stripe->dev->can_discard) |
| 1979 | continue; |
| 1980 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1981 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 1982 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1983 | stripe->length, |
| 1984 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1985 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1986 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1987 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1988 | break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */ |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1989 | |
| 1990 | /* |
| 1991 | * Just in case we get back EOPNOTSUPP for some reason, |
| 1992 | * just ignore the return value so we don't screw up |
| 1993 | * people calling discard_extent. |
| 1994 | */ |
| 1995 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1996 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 1997 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1998 | } |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1999 | |
| 2000 | if (actual_bytes) |
| 2001 | *actual_bytes = discarded_bytes; |
| 2002 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2003 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2004 | if (ret == -EOPNOTSUPP) |
| 2005 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2006 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2007 | } |
| 2008 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2009 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2010 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 2011 | struct btrfs_root *root, |
| 2012 | u64 bytenr, u64 num_bytes, u64 parent, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2013 | u64 root_objectid, u64 owner, u64 offset, |
| 2014 | int no_quota) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2015 | { |
| 2016 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2017 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2018 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2019 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 2020 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2021 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2022 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2023 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 2024 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2025 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2026 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2027 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2028 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 2029 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2030 | parent, root_objectid, owner, offset, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2031 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2032 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2033 | return ret; |
| 2034 | } |
| 2035 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2036 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2037 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2038 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2039 | u64 parent, u64 root_objectid, |
| 2040 | u64 owner, u64 offset, int refs_to_add, |
| 2041 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2042 | { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2043 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2044 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2045 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2046 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2047 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2048 | u64 bytenr = node->bytenr; |
| 2049 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2050 | u64 refs; |
| 2051 | int ret; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2052 | int no_quota = node->no_quota; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2053 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2054 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2055 | if (!path) |
| 2056 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2057 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2058 | if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled) |
| 2059 | no_quota = 1; |
| 2060 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2061 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2062 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2063 | /* this will setup the path even if it fails to insert the back ref */ |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2064 | ret = insert_inline_extent_backref(trans, fs_info->extent_root, path, |
| 2065 | bytenr, num_bytes, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2066 | root_objectid, owner, offset, |
| 2067 | refs_to_add, extent_op); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 2068 | if ((ret < 0 && ret != -EAGAIN) || !ret) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2069 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2070 | |
| 2071 | /* |
| 2072 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2073 | * inline extent ref, so just update the reference count and add a |
| 2074 | * normal backref. |
| 2075 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2076 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2077 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2078 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2079 | refs = btrfs_extent_refs(leaf, item); |
| 2080 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2081 | if (extent_op) |
| 2082 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2083 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2084 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2085 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2086 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2087 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2088 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2089 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2090 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2091 | path, bytenr, parent, root_objectid, |
| 2092 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2093 | if (ret) |
| 2094 | btrfs_abort_transaction(trans, root, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2095 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2096 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2097 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2098 | } |
| 2099 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2100 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2101 | struct btrfs_root *root, |
| 2102 | struct btrfs_delayed_ref_node *node, |
| 2103 | struct btrfs_delayed_extent_op *extent_op, |
| 2104 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2105 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2106 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2107 | struct btrfs_delayed_data_ref *ref; |
| 2108 | struct btrfs_key ins; |
| 2109 | u64 parent = 0; |
| 2110 | u64 ref_root = 0; |
| 2111 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2112 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2113 | ins.objectid = node->bytenr; |
| 2114 | ins.offset = node->num_bytes; |
| 2115 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2116 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2117 | ref = btrfs_delayed_node_to_data_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2118 | trace_run_delayed_data_ref(node, ref, node->action); |
| 2119 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2120 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2121 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2122 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2123 | |
| 2124 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2125 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2126 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2127 | ret = alloc_reserved_file_extent(trans, root, |
| 2128 | parent, ref_root, flags, |
| 2129 | ref->objectid, ref->offset, |
| 2130 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2131 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2132 | ret = __btrfs_inc_extent_ref(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2133 | ref_root, ref->objectid, |
| 2134 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2135 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2136 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2137 | ret = __btrfs_free_extent(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2138 | ref_root, ref->objectid, |
| 2139 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2140 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2141 | } else { |
| 2142 | BUG(); |
| 2143 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2144 | return ret; |
| 2145 | } |
| 2146 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2147 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2148 | struct extent_buffer *leaf, |
| 2149 | struct btrfs_extent_item *ei) |
| 2150 | { |
| 2151 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2152 | if (extent_op->update_flags) { |
| 2153 | flags |= extent_op->flags_to_set; |
| 2154 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2155 | } |
| 2156 | |
| 2157 | if (extent_op->update_key) { |
| 2158 | struct btrfs_tree_block_info *bi; |
| 2159 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2160 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2161 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2162 | } |
| 2163 | } |
| 2164 | |
| 2165 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2166 | struct btrfs_root *root, |
| 2167 | struct btrfs_delayed_ref_node *node, |
| 2168 | struct btrfs_delayed_extent_op *extent_op) |
| 2169 | { |
| 2170 | struct btrfs_key key; |
| 2171 | struct btrfs_path *path; |
| 2172 | struct btrfs_extent_item *ei; |
| 2173 | struct extent_buffer *leaf; |
| 2174 | u32 item_size; |
| 2175 | int ret; |
| 2176 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2177 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2178 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2179 | if (trans->aborted) |
| 2180 | return 0; |
| 2181 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2182 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2183 | metadata = 0; |
| 2184 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2185 | path = btrfs_alloc_path(); |
| 2186 | if (!path) |
| 2187 | return -ENOMEM; |
| 2188 | |
| 2189 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2190 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2191 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2192 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2193 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2194 | } else { |
| 2195 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2196 | key.offset = node->num_bytes; |
| 2197 | } |
| 2198 | |
| 2199 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2200 | path->reada = 1; |
| 2201 | path->leave_spinning = 1; |
| 2202 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2203 | path, 0, 1); |
| 2204 | if (ret < 0) { |
| 2205 | err = ret; |
| 2206 | goto out; |
| 2207 | } |
| 2208 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2209 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2210 | if (path->slots[0] > 0) { |
| 2211 | path->slots[0]--; |
| 2212 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2213 | path->slots[0]); |
| 2214 | if (key.objectid == node->bytenr && |
| 2215 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2216 | key.offset == node->num_bytes) |
| 2217 | ret = 0; |
| 2218 | } |
| 2219 | if (ret > 0) { |
| 2220 | btrfs_release_path(path); |
| 2221 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2222 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2223 | key.objectid = node->bytenr; |
| 2224 | key.offset = node->num_bytes; |
| 2225 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2226 | goto again; |
| 2227 | } |
| 2228 | } else { |
| 2229 | err = -EIO; |
| 2230 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2231 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2232 | } |
| 2233 | |
| 2234 | leaf = path->nodes[0]; |
| 2235 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2236 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2237 | if (item_size < sizeof(*ei)) { |
| 2238 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2239 | path, (u64)-1, 0); |
| 2240 | if (ret < 0) { |
| 2241 | err = ret; |
| 2242 | goto out; |
| 2243 | } |
| 2244 | leaf = path->nodes[0]; |
| 2245 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2246 | } |
| 2247 | #endif |
| 2248 | BUG_ON(item_size < sizeof(*ei)); |
| 2249 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2250 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2251 | |
| 2252 | btrfs_mark_buffer_dirty(leaf); |
| 2253 | out: |
| 2254 | btrfs_free_path(path); |
| 2255 | return err; |
| 2256 | } |
| 2257 | |
| 2258 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2259 | struct btrfs_root *root, |
| 2260 | struct btrfs_delayed_ref_node *node, |
| 2261 | struct btrfs_delayed_extent_op *extent_op, |
| 2262 | int insert_reserved) |
| 2263 | { |
| 2264 | int ret = 0; |
| 2265 | struct btrfs_delayed_tree_ref *ref; |
| 2266 | struct btrfs_key ins; |
| 2267 | u64 parent = 0; |
| 2268 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2269 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2270 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2271 | |
| 2272 | ref = btrfs_delayed_node_to_tree_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2273 | trace_run_delayed_tree_ref(node, ref, node->action); |
| 2274 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2275 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2276 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2277 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2278 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2279 | ins.objectid = node->bytenr; |
| 2280 | if (skinny_metadata) { |
| 2281 | ins.offset = ref->level; |
| 2282 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2283 | } else { |
| 2284 | ins.offset = node->num_bytes; |
| 2285 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2286 | } |
| 2287 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2288 | BUG_ON(node->ref_mod != 1); |
| 2289 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2290 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2291 | ret = alloc_reserved_tree_block(trans, root, |
| 2292 | parent, ref_root, |
| 2293 | extent_op->flags_to_set, |
| 2294 | &extent_op->key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2295 | ref->level, &ins, |
| 2296 | node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2297 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2298 | ret = __btrfs_inc_extent_ref(trans, root, node, |
| 2299 | parent, ref_root, |
| 2300 | ref->level, 0, 1, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2301 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2302 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2303 | ret = __btrfs_free_extent(trans, root, node, |
| 2304 | parent, ref_root, |
| 2305 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2306 | } else { |
| 2307 | BUG(); |
| 2308 | } |
| 2309 | return ret; |
| 2310 | } |
| 2311 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2312 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2313 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2314 | struct btrfs_root *root, |
| 2315 | struct btrfs_delayed_ref_node *node, |
| 2316 | struct btrfs_delayed_extent_op *extent_op, |
| 2317 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2318 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2319 | int ret = 0; |
| 2320 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2321 | if (trans->aborted) { |
| 2322 | if (insert_reserved) |
| 2323 | btrfs_pin_extent(root, node->bytenr, |
| 2324 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2325 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2326 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2327 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2328 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2329 | struct btrfs_delayed_ref_head *head; |
| 2330 | /* |
| 2331 | * we've hit the end of the chain and we were supposed |
| 2332 | * to insert this extent into the tree. But, it got |
| 2333 | * deleted before we ever needed to insert it, so all |
| 2334 | * we have to do is clean up the accounting |
| 2335 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2336 | BUG_ON(extent_op); |
| 2337 | head = btrfs_delayed_node_to_head(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2338 | trace_run_delayed_ref_head(node, head, node->action); |
| 2339 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2340 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2341 | btrfs_pin_extent(root, node->bytenr, |
| 2342 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2343 | if (head->is_data) { |
| 2344 | ret = btrfs_del_csums(trans, root, |
| 2345 | node->bytenr, |
| 2346 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2347 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2348 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2349 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2350 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2351 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2352 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2353 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2354 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2355 | insert_reserved); |
| 2356 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2357 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2358 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2359 | insert_reserved); |
| 2360 | else |
| 2361 | BUG(); |
| 2362 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2363 | } |
| 2364 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2365 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2366 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2367 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2368 | struct btrfs_delayed_ref_node *ref; |
| 2369 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2370 | if (list_empty(&head->ref_list)) |
| 2371 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2372 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2373 | /* |
| 2374 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2375 | * This is to prevent a ref count from going down to zero, which deletes |
| 2376 | * the extent item from the extent tree, when there still are references |
| 2377 | * to add, which would fail because they would not find the extent item. |
| 2378 | */ |
| 2379 | list_for_each_entry(ref, &head->ref_list, list) { |
| 2380 | if (ref->action == BTRFS_ADD_DELAYED_REF) |
| 2381 | return ref; |
| 2382 | } |
| 2383 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2384 | return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node, |
| 2385 | list); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2386 | } |
| 2387 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2388 | /* |
| 2389 | * Returns 0 on success or if called with an already aborted transaction. |
| 2390 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2391 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2392 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2393 | struct btrfs_root *root, |
| 2394 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2395 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2396 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2397 | struct btrfs_delayed_ref_node *ref; |
| 2398 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2399 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2400 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2401 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2402 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2403 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2404 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2405 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2406 | |
| 2407 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2408 | while (1) { |
| 2409 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2410 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2411 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2412 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2413 | spin_lock(&delayed_refs->lock); |
| 2414 | locked_ref = btrfs_select_ref_head(trans); |
| 2415 | if (!locked_ref) { |
| 2416 | spin_unlock(&delayed_refs->lock); |
| 2417 | break; |
| 2418 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2419 | |
| 2420 | /* grab the lock that says we are going to process |
| 2421 | * all the refs for this head */ |
| 2422 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2423 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2424 | /* |
| 2425 | * we may have dropped the spin lock to get the head |
| 2426 | * mutex lock, and that might have given someone else |
| 2427 | * time to free the head. If that's true, it has been |
| 2428 | * removed from our list and we can move on. |
| 2429 | */ |
| 2430 | if (ret == -EAGAIN) { |
| 2431 | locked_ref = NULL; |
| 2432 | count++; |
| 2433 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2434 | } |
| 2435 | } |
| 2436 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2437 | spin_lock(&locked_ref->lock); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2438 | |
| 2439 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2440 | * locked_ref is the head node, so we have to go one |
| 2441 | * node back for any delayed ref updates |
| 2442 | */ |
| 2443 | ref = select_delayed_ref(locked_ref); |
| 2444 | |
| 2445 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2446 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2447 | spin_unlock(&locked_ref->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2448 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2449 | spin_lock(&delayed_refs->lock); |
| 2450 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2451 | delayed_refs->num_heads_ready++; |
| 2452 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2453 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2454 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2455 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2456 | continue; |
| 2457 | } |
| 2458 | |
| 2459 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2460 | * record the must insert reserved flag before we |
| 2461 | * drop the spin lock. |
| 2462 | */ |
| 2463 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2464 | locked_ref->must_insert_reserved = 0; |
| 2465 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2466 | extent_op = locked_ref->extent_op; |
| 2467 | locked_ref->extent_op = NULL; |
| 2468 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2469 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2470 | |
| 2471 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2472 | /* All delayed refs have been processed, Go ahead |
| 2473 | * and send the head node to run_one_delayed_ref, |
| 2474 | * so that any accounting fixes can happen |
| 2475 | */ |
| 2476 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2477 | |
| 2478 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2479 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2480 | extent_op = NULL; |
| 2481 | } |
| 2482 | |
| 2483 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2484 | spin_unlock(&locked_ref->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2485 | ret = run_delayed_extent_op(trans, root, |
| 2486 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2487 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2488 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2489 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2490 | /* |
| 2491 | * Need to reset must_insert_reserved if |
| 2492 | * there was an error so the abort stuff |
| 2493 | * can cleanup the reserved space |
| 2494 | * properly. |
| 2495 | */ |
| 2496 | if (must_insert_reserved) |
| 2497 | locked_ref->must_insert_reserved = 1; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2498 | locked_ref->processing = 0; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2499 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2500 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2501 | return ret; |
| 2502 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2503 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2504 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2505 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2506 | /* |
| 2507 | * Need to drop our head ref lock and re-aqcuire the |
| 2508 | * delayed ref lock and then re-check to make sure |
| 2509 | * nobody got added. |
| 2510 | */ |
| 2511 | spin_unlock(&locked_ref->lock); |
| 2512 | spin_lock(&delayed_refs->lock); |
| 2513 | spin_lock(&locked_ref->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2514 | if (!list_empty(&locked_ref->ref_list) || |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2515 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2516 | spin_unlock(&locked_ref->lock); |
| 2517 | spin_unlock(&delayed_refs->lock); |
| 2518 | continue; |
| 2519 | } |
| 2520 | ref->in_tree = 0; |
| 2521 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2522 | rb_erase(&locked_ref->href_node, |
| 2523 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2524 | spin_unlock(&delayed_refs->lock); |
| 2525 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2526 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2527 | ref->in_tree = 0; |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2528 | list_del(&ref->list); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2529 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2530 | atomic_dec(&delayed_refs->num_entries); |
| 2531 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2532 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2533 | /* |
| 2534 | * when we play the delayed ref, also correct the |
| 2535 | * ref_mod on head |
| 2536 | */ |
| 2537 | switch (ref->action) { |
| 2538 | case BTRFS_ADD_DELAYED_REF: |
| 2539 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2540 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2541 | break; |
| 2542 | case BTRFS_DROP_DELAYED_REF: |
| 2543 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2544 | break; |
| 2545 | default: |
| 2546 | WARN_ON(1); |
| 2547 | } |
| 2548 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2549 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2550 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2551 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2552 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2553 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2554 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2555 | if (ret) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2556 | locked_ref->processing = 0; |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2557 | btrfs_delayed_ref_unlock(locked_ref); |
| 2558 | btrfs_put_delayed_ref(ref); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2559 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2560 | return ret; |
| 2561 | } |
| 2562 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2563 | /* |
| 2564 | * If this node is a head, that means all the refs in this head |
| 2565 | * have been dealt with, and we will pick the next head to deal |
| 2566 | * with, so we must unlock the head and drop it from the cluster |
| 2567 | * list before we release it. |
| 2568 | */ |
| 2569 | if (btrfs_delayed_ref_is_head(ref)) { |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2570 | if (locked_ref->is_data && |
| 2571 | locked_ref->total_ref_mod < 0) { |
| 2572 | spin_lock(&delayed_refs->lock); |
| 2573 | delayed_refs->pending_csums -= ref->num_bytes; |
| 2574 | spin_unlock(&delayed_refs->lock); |
| 2575 | } |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2576 | btrfs_delayed_ref_unlock(locked_ref); |
| 2577 | locked_ref = NULL; |
| 2578 | } |
| 2579 | btrfs_put_delayed_ref(ref); |
| 2580 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2581 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2582 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2583 | |
| 2584 | /* |
| 2585 | * We don't want to include ref heads since we can have empty ref heads |
| 2586 | * and those will drastically skew our runtime down since we just do |
| 2587 | * accounting, no actual extent tree updates. |
| 2588 | */ |
| 2589 | if (actual_count > 0) { |
| 2590 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2591 | u64 avg; |
| 2592 | |
| 2593 | /* |
| 2594 | * We weigh the current average higher than our current runtime |
| 2595 | * to avoid large swings in the average. |
| 2596 | */ |
| 2597 | spin_lock(&delayed_refs->lock); |
| 2598 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2599 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2600 | spin_unlock(&delayed_refs->lock); |
| 2601 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2602 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2603 | } |
| 2604 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2605 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2606 | /* |
| 2607 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2608 | * correlates in most cases to the order added. To expose dependencies on this |
| 2609 | * order, we start to process the tree in the middle instead of the beginning |
| 2610 | */ |
| 2611 | static u64 find_middle(struct rb_root *root) |
| 2612 | { |
| 2613 | struct rb_node *n = root->rb_node; |
| 2614 | struct btrfs_delayed_ref_node *entry; |
| 2615 | int alt = 1; |
| 2616 | u64 middle; |
| 2617 | u64 first = 0, last = 0; |
| 2618 | |
| 2619 | n = rb_first(root); |
| 2620 | if (n) { |
| 2621 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2622 | first = entry->bytenr; |
| 2623 | } |
| 2624 | n = rb_last(root); |
| 2625 | if (n) { |
| 2626 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2627 | last = entry->bytenr; |
| 2628 | } |
| 2629 | n = root->rb_node; |
| 2630 | |
| 2631 | while (n) { |
| 2632 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2633 | WARN_ON(!entry->in_tree); |
| 2634 | |
| 2635 | middle = entry->bytenr; |
| 2636 | |
| 2637 | if (alt) |
| 2638 | n = n->rb_left; |
| 2639 | else |
| 2640 | n = n->rb_right; |
| 2641 | |
| 2642 | alt = 1 - alt; |
| 2643 | } |
| 2644 | return middle; |
| 2645 | } |
| 2646 | #endif |
| 2647 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2648 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2649 | { |
| 2650 | u64 num_bytes; |
| 2651 | |
| 2652 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2653 | sizeof(struct btrfs_extent_inline_ref)); |
| 2654 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2655 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2656 | |
| 2657 | /* |
| 2658 | * We don't ever fill up leaves all the way so multiply by 2 just to be |
| 2659 | * closer to what we're really going to want to ouse. |
| 2660 | */ |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2661 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2662 | } |
| 2663 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2664 | /* |
| 2665 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2666 | * would require to store the csums for that many bytes. |
| 2667 | */ |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 2668 | u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes) |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2669 | { |
| 2670 | u64 csum_size; |
| 2671 | u64 num_csums_per_leaf; |
| 2672 | u64 num_csums; |
| 2673 | |
| 2674 | csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item); |
| 2675 | num_csums_per_leaf = div64_u64(csum_size, |
| 2676 | (u64)btrfs_super_csum_size(root->fs_info->super_copy)); |
| 2677 | num_csums = div64_u64(csum_bytes, root->sectorsize); |
| 2678 | num_csums += num_csums_per_leaf - 1; |
| 2679 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2680 | return num_csums; |
| 2681 | } |
| 2682 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2683 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2684 | struct btrfs_root *root) |
| 2685 | { |
| 2686 | struct btrfs_block_rsv *global_rsv; |
| 2687 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2688 | u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2689 | u64 num_dirty_bgs = trans->transaction->num_dirty_bgs; |
| 2690 | u64 num_bytes, num_dirty_bgs_bytes; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2691 | int ret = 0; |
| 2692 | |
| 2693 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 2694 | num_heads = heads_to_leaves(root, num_heads); |
| 2695 | if (num_heads > 1) |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 2696 | num_bytes += (num_heads - 1) * root->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2697 | num_bytes <<= 1; |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 2698 | num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2699 | num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root, |
| 2700 | num_dirty_bgs); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2701 | global_rsv = &root->fs_info->global_block_rsv; |
| 2702 | |
| 2703 | /* |
| 2704 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2705 | * wiggle room since running delayed refs can create more delayed refs. |
| 2706 | */ |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2707 | if (global_rsv->space_info->full) { |
| 2708 | num_dirty_bgs_bytes <<= 1; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2709 | num_bytes <<= 1; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2710 | } |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2711 | |
| 2712 | spin_lock(&global_rsv->lock); |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2713 | if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2714 | ret = 1; |
| 2715 | spin_unlock(&global_rsv->lock); |
| 2716 | return ret; |
| 2717 | } |
| 2718 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2719 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2720 | struct btrfs_root *root) |
| 2721 | { |
| 2722 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2723 | u64 num_entries = |
| 2724 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2725 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2726 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2727 | |
| 2728 | smp_mb(); |
| 2729 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2730 | val = num_entries * avg_runtime; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2731 | if (num_entries * avg_runtime >= NSEC_PER_SEC) |
| 2732 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2733 | if (val >= NSEC_PER_SEC / 2) |
| 2734 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2735 | |
| 2736 | return btrfs_check_space_for_delayed_refs(trans, root); |
| 2737 | } |
| 2738 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2739 | struct async_delayed_refs { |
| 2740 | struct btrfs_root *root; |
| 2741 | int count; |
| 2742 | int error; |
| 2743 | int sync; |
| 2744 | struct completion wait; |
| 2745 | struct btrfs_work work; |
| 2746 | }; |
| 2747 | |
| 2748 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2749 | { |
| 2750 | struct async_delayed_refs *async; |
| 2751 | struct btrfs_trans_handle *trans; |
| 2752 | int ret; |
| 2753 | |
| 2754 | async = container_of(work, struct async_delayed_refs, work); |
| 2755 | |
| 2756 | trans = btrfs_join_transaction(async->root); |
| 2757 | if (IS_ERR(trans)) { |
| 2758 | async->error = PTR_ERR(trans); |
| 2759 | goto done; |
| 2760 | } |
| 2761 | |
| 2762 | /* |
| 2763 | * trans->sync means that when we call end_transaciton, we won't |
| 2764 | * wait on delayed refs |
| 2765 | */ |
| 2766 | trans->sync = true; |
| 2767 | ret = btrfs_run_delayed_refs(trans, async->root, async->count); |
| 2768 | if (ret) |
| 2769 | async->error = ret; |
| 2770 | |
| 2771 | ret = btrfs_end_transaction(trans, async->root); |
| 2772 | if (ret && !async->error) |
| 2773 | async->error = ret; |
| 2774 | done: |
| 2775 | if (async->sync) |
| 2776 | complete(&async->wait); |
| 2777 | else |
| 2778 | kfree(async); |
| 2779 | } |
| 2780 | |
| 2781 | int btrfs_async_run_delayed_refs(struct btrfs_root *root, |
| 2782 | unsigned long count, int wait) |
| 2783 | { |
| 2784 | struct async_delayed_refs *async; |
| 2785 | int ret; |
| 2786 | |
| 2787 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2788 | if (!async) |
| 2789 | return -ENOMEM; |
| 2790 | |
| 2791 | async->root = root->fs_info->tree_root; |
| 2792 | async->count = count; |
| 2793 | async->error = 0; |
| 2794 | if (wait) |
| 2795 | async->sync = 1; |
| 2796 | else |
| 2797 | async->sync = 0; |
| 2798 | init_completion(&async->wait); |
| 2799 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2800 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2801 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2802 | |
| 2803 | btrfs_queue_work(root->fs_info->extent_workers, &async->work); |
| 2804 | |
| 2805 | if (wait) { |
| 2806 | wait_for_completion(&async->wait); |
| 2807 | ret = async->error; |
| 2808 | kfree(async); |
| 2809 | return ret; |
| 2810 | } |
| 2811 | return 0; |
| 2812 | } |
| 2813 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2814 | /* |
| 2815 | * this starts processing the delayed reference count updates and |
| 2816 | * extent insertions we have queued up so far. count can be |
| 2817 | * 0, which means to process everything in the tree at the start |
| 2818 | * of the run (but not newly added entries), or it can be some target |
| 2819 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2820 | * |
| 2821 | * Returns 0 on success or if called with an aborted transaction |
| 2822 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2823 | */ |
| 2824 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2825 | struct btrfs_root *root, unsigned long count) |
| 2826 | { |
| 2827 | struct rb_node *node; |
| 2828 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2829 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2830 | int ret; |
| 2831 | int run_all = count == (unsigned long)-1; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2832 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2833 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2834 | if (trans->aborted) |
| 2835 | return 0; |
| 2836 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2837 | if (root == root->fs_info->extent_root) |
| 2838 | root = root->fs_info->tree_root; |
| 2839 | |
| 2840 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2841 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2842 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2843 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2844 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2845 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2846 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2847 | #endif |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2848 | ret = __btrfs_run_delayed_refs(trans, root, count); |
| 2849 | if (ret < 0) { |
| 2850 | btrfs_abort_transaction(trans, root, ret); |
| 2851 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2852 | } |
| 2853 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2854 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2855 | if (!list_empty(&trans->new_bgs)) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2856 | btrfs_create_pending_block_groups(trans, root); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2857 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2858 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2859 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2860 | if (!node) { |
| 2861 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2862 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2863 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2864 | count = (unsigned long)-1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2865 | |
| 2866 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2867 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2868 | href_node); |
| 2869 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2870 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2871 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2872 | ref = &head->node; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2873 | atomic_inc(&ref->refs); |
| 2874 | |
| 2875 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2876 | /* |
| 2877 | * Mutex was contended, block until it's |
| 2878 | * released and try again |
| 2879 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2880 | mutex_lock(&head->mutex); |
| 2881 | mutex_unlock(&head->mutex); |
| 2882 | |
| 2883 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2884 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2885 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2886 | } else { |
| 2887 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2888 | } |
| 2889 | node = rb_next(node); |
| 2890 | } |
| 2891 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2892 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2893 | goto again; |
| 2894 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2895 | out: |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2896 | assert_qgroups_uptodate(trans); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2897 | return 0; |
| 2898 | } |
| 2899 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2900 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 2901 | struct btrfs_root *root, |
| 2902 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2903 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2904 | { |
| 2905 | struct btrfs_delayed_extent_op *extent_op; |
| 2906 | int ret; |
| 2907 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2908 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2909 | if (!extent_op) |
| 2910 | return -ENOMEM; |
| 2911 | |
| 2912 | extent_op->flags_to_set = flags; |
| 2913 | extent_op->update_flags = 1; |
| 2914 | extent_op->update_key = 0; |
| 2915 | extent_op->is_data = is_data ? 1 : 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2916 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2917 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2918 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 2919 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2920 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2921 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2922 | return ret; |
| 2923 | } |
| 2924 | |
| 2925 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 2926 | struct btrfs_root *root, |
| 2927 | struct btrfs_path *path, |
| 2928 | u64 objectid, u64 offset, u64 bytenr) |
| 2929 | { |
| 2930 | struct btrfs_delayed_ref_head *head; |
| 2931 | struct btrfs_delayed_ref_node *ref; |
| 2932 | struct btrfs_delayed_data_ref *data_ref; |
| 2933 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2934 | int ret = 0; |
| 2935 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2936 | delayed_refs = &trans->transaction->delayed_refs; |
| 2937 | spin_lock(&delayed_refs->lock); |
| 2938 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2939 | if (!head) { |
| 2940 | spin_unlock(&delayed_refs->lock); |
| 2941 | return 0; |
| 2942 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2943 | |
| 2944 | if (!mutex_trylock(&head->mutex)) { |
| 2945 | atomic_inc(&head->node.refs); |
| 2946 | spin_unlock(&delayed_refs->lock); |
| 2947 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2948 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2949 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2950 | /* |
| 2951 | * Mutex was contended, block until it's released and let |
| 2952 | * caller try again |
| 2953 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2954 | mutex_lock(&head->mutex); |
| 2955 | mutex_unlock(&head->mutex); |
| 2956 | btrfs_put_delayed_ref(&head->node); |
| 2957 | return -EAGAIN; |
| 2958 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2959 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2960 | |
| 2961 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2962 | list_for_each_entry(ref, &head->ref_list, list) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2963 | /* If it's a shared ref we know a cross reference exists */ |
| 2964 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 2965 | ret = 1; |
| 2966 | break; |
| 2967 | } |
| 2968 | |
| 2969 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 2970 | |
| 2971 | /* |
| 2972 | * If our ref doesn't match the one we're currently looking at |
| 2973 | * then we have a cross reference. |
| 2974 | */ |
| 2975 | if (data_ref->root != root->root_key.objectid || |
| 2976 | data_ref->objectid != objectid || |
| 2977 | data_ref->offset != offset) { |
| 2978 | ret = 1; |
| 2979 | break; |
| 2980 | } |
| 2981 | } |
| 2982 | spin_unlock(&head->lock); |
| 2983 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2984 | return ret; |
| 2985 | } |
| 2986 | |
| 2987 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 2988 | struct btrfs_root *root, |
| 2989 | struct btrfs_path *path, |
| 2990 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2991 | { |
| 2992 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2993 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2994 | struct btrfs_extent_data_ref *ref; |
| 2995 | struct btrfs_extent_inline_ref *iref; |
| 2996 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2997 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2998 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2999 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3000 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3001 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3002 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3003 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3004 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3005 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 3006 | if (ret < 0) |
| 3007 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3008 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 3009 | |
| 3010 | ret = -ENOENT; |
| 3011 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3012 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3013 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3014 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3015 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3016 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3017 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3018 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3019 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3020 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3021 | ret = 1; |
| 3022 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 3023 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 3024 | if (item_size < sizeof(*ei)) { |
| 3025 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 3026 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3027 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3028 | #endif |
| 3029 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 3030 | |
| 3031 | if (item_size != sizeof(*ei) + |
| 3032 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 3033 | goto out; |
| 3034 | |
| 3035 | if (btrfs_extent_generation(leaf, ei) <= |
| 3036 | btrfs_root_last_snapshot(&root->root_item)) |
| 3037 | goto out; |
| 3038 | |
| 3039 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 3040 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 3041 | BTRFS_EXTENT_DATA_REF_KEY) |
| 3042 | goto out; |
| 3043 | |
| 3044 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3045 | if (btrfs_extent_refs(leaf, ei) != |
| 3046 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3047 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3048 | root->root_key.objectid || |
| 3049 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3050 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3051 | goto out; |
| 3052 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3053 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3054 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3055 | return ret; |
| 3056 | } |
| 3057 | |
| 3058 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 3059 | struct btrfs_root *root, |
| 3060 | u64 objectid, u64 offset, u64 bytenr) |
| 3061 | { |
| 3062 | struct btrfs_path *path; |
| 3063 | int ret; |
| 3064 | int ret2; |
| 3065 | |
| 3066 | path = btrfs_alloc_path(); |
| 3067 | if (!path) |
| 3068 | return -ENOENT; |
| 3069 | |
| 3070 | do { |
| 3071 | ret = check_committed_ref(trans, root, path, objectid, |
| 3072 | offset, bytenr); |
| 3073 | if (ret && ret != -ENOENT) |
| 3074 | goto out; |
| 3075 | |
| 3076 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3077 | offset, bytenr); |
| 3078 | } while (ret2 == -EAGAIN); |
| 3079 | |
| 3080 | if (ret2 && ret2 != -ENOENT) { |
| 3081 | ret = ret2; |
| 3082 | goto out; |
| 3083 | } |
| 3084 | |
| 3085 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3086 | ret = 0; |
| 3087 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3088 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3089 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3090 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3091 | return ret; |
| 3092 | } |
| 3093 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3094 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3095 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3096 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3097 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3098 | { |
| 3099 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3100 | u64 num_bytes; |
| 3101 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3102 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3103 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3104 | struct btrfs_key key; |
| 3105 | struct btrfs_file_extent_item *fi; |
| 3106 | int i; |
| 3107 | int level; |
| 3108 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3109 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3110 | u64, u64, u64, u64, u64, u64, int); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3111 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3112 | |
| 3113 | if (btrfs_test_is_dummy_root(root)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3114 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3115 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3116 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3117 | nritems = btrfs_header_nritems(buf); |
| 3118 | level = btrfs_header_level(buf); |
| 3119 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3120 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3121 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3122 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3123 | if (inc) |
| 3124 | process_func = btrfs_inc_extent_ref; |
| 3125 | else |
| 3126 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3127 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3128 | if (full_backref) |
| 3129 | parent = buf->start; |
| 3130 | else |
| 3131 | parent = 0; |
| 3132 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3133 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3134 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3135 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3136 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3137 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3138 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3139 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3140 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3141 | BTRFS_FILE_EXTENT_INLINE) |
| 3142 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3143 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3144 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3145 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3146 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3147 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3148 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3149 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3150 | parent, ref_root, key.objectid, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3151 | key.offset, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3152 | if (ret) |
| 3153 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3154 | } else { |
| 3155 | bytenr = btrfs_node_blockptr(buf, i); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 3156 | num_bytes = root->nodesize; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3157 | ret = process_func(trans, root, bytenr, num_bytes, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3158 | parent, ref_root, level - 1, 0, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3159 | 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3160 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3161 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3162 | } |
| 3163 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3164 | return 0; |
| 3165 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3166 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3167 | } |
| 3168 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3169 | int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3170 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3171 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3172 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3173 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3174 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3175 | int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3176 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3177 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3178 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3179 | } |
| 3180 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3181 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3182 | struct btrfs_root *root, |
| 3183 | struct btrfs_path *path, |
| 3184 | struct btrfs_block_group_cache *cache) |
| 3185 | { |
| 3186 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3187 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3188 | unsigned long bi; |
| 3189 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3190 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3191 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3192 | if (ret) { |
| 3193 | if (ret > 0) |
| 3194 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3195 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3196 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3197 | |
| 3198 | leaf = path->nodes[0]; |
| 3199 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3200 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3201 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3202 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3203 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3204 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3205 | |
| 3206 | } |
| 3207 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3208 | static struct btrfs_block_group_cache * |
| 3209 | next_block_group(struct btrfs_root *root, |
| 3210 | struct btrfs_block_group_cache *cache) |
| 3211 | { |
| 3212 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3213 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3214 | spin_lock(&root->fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3215 | |
| 3216 | /* If our block group was removed, we need a full search. */ |
| 3217 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3218 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3219 | |
| 3220 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3221 | btrfs_put_block_group(cache); |
| 3222 | cache = btrfs_lookup_first_block_group(root->fs_info, |
| 3223 | next_bytenr); |
| 3224 | return cache; |
| 3225 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3226 | node = rb_next(&cache->cache_node); |
| 3227 | btrfs_put_block_group(cache); |
| 3228 | if (node) { |
| 3229 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3230 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3231 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3232 | } else |
| 3233 | cache = NULL; |
| 3234 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3235 | return cache; |
| 3236 | } |
| 3237 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3238 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3239 | struct btrfs_trans_handle *trans, |
| 3240 | struct btrfs_path *path) |
| 3241 | { |
| 3242 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3243 | struct inode *inode = NULL; |
| 3244 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3245 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3246 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3247 | int retries = 0; |
| 3248 | int ret = 0; |
| 3249 | |
| 3250 | /* |
| 3251 | * If this block group is smaller than 100 megs don't bother caching the |
| 3252 | * block group. |
| 3253 | */ |
| 3254 | if (block_group->key.offset < (100 * 1024 * 1024)) { |
| 3255 | spin_lock(&block_group->lock); |
| 3256 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3257 | spin_unlock(&block_group->lock); |
| 3258 | return 0; |
| 3259 | } |
| 3260 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3261 | if (trans->aborted) |
| 3262 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3263 | again: |
| 3264 | inode = lookup_free_space_inode(root, block_group, path); |
| 3265 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3266 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3267 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3268 | goto out; |
| 3269 | } |
| 3270 | |
| 3271 | if (IS_ERR(inode)) { |
| 3272 | BUG_ON(retries); |
| 3273 | retries++; |
| 3274 | |
| 3275 | if (block_group->ro) |
| 3276 | goto out_free; |
| 3277 | |
| 3278 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3279 | if (ret) |
| 3280 | goto out_free; |
| 3281 | goto again; |
| 3282 | } |
| 3283 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3284 | /* We've already setup this transaction, go ahead and exit */ |
| 3285 | if (block_group->cache_generation == trans->transid && |
| 3286 | i_size_read(inode)) { |
| 3287 | dcs = BTRFS_DC_SETUP; |
| 3288 | goto out_put; |
| 3289 | } |
| 3290 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3291 | /* |
| 3292 | * We want to set the generation to 0, that way if anything goes wrong |
| 3293 | * from here on out we know not to trust this cache when we load up next |
| 3294 | * time. |
| 3295 | */ |
| 3296 | BTRFS_I(inode)->generation = 0; |
| 3297 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3298 | if (ret) { |
| 3299 | /* |
| 3300 | * So theoretically we could recover from this, simply set the |
| 3301 | * super cache generation to 0 so we know to invalidate the |
| 3302 | * cache, but then we'd have to keep track of the block groups |
| 3303 | * that fail this way so we know we _have_ to reset this cache |
| 3304 | * before the next commit or risk reading stale cache. So to |
| 3305 | * limit our exposure to horrible edge cases lets just abort the |
| 3306 | * transaction, this only happens in really bad situations |
| 3307 | * anyway. |
| 3308 | */ |
| 3309 | btrfs_abort_transaction(trans, root, ret); |
| 3310 | goto out_put; |
| 3311 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3312 | WARN_ON(ret); |
| 3313 | |
| 3314 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3315 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3316 | &root->fs_info->global_block_rsv); |
| 3317 | if (ret) |
| 3318 | goto out_put; |
| 3319 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3320 | ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3321 | if (ret) |
| 3322 | goto out_put; |
| 3323 | } |
| 3324 | |
| 3325 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3326 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Chris Mason | e4c88f0 | 2015-04-18 05:22:48 -0700 | [diff] [blame] | 3327 | !btrfs_test_opt(root, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3328 | /* |
| 3329 | * don't bother trying to write stuff out _if_ |
| 3330 | * a) we're not cached, |
| 3331 | * b) we're with nospace_cache mount option. |
| 3332 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3333 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3334 | spin_unlock(&block_group->lock); |
| 3335 | goto out_put; |
| 3336 | } |
| 3337 | spin_unlock(&block_group->lock); |
| 3338 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3339 | /* |
| 3340 | * Try to preallocate enough space based on how big the block group is. |
| 3341 | * Keep in mind this has to include any pinned space which could end up |
| 3342 | * taking up quite a bit since it's not folded into the other space |
| 3343 | * cache. |
| 3344 | */ |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3345 | num_pages = div_u64(block_group->key.offset, 256 * 1024 * 1024); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3346 | if (!num_pages) |
| 3347 | num_pages = 1; |
| 3348 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3349 | num_pages *= 16; |
| 3350 | num_pages *= PAGE_CACHE_SIZE; |
| 3351 | |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 3352 | ret = btrfs_check_data_free_space(inode, num_pages, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3353 | if (ret) |
| 3354 | goto out_put; |
| 3355 | |
| 3356 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3357 | num_pages, num_pages, |
| 3358 | &alloc_hint); |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3359 | if (!ret) |
| 3360 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3361 | btrfs_free_reserved_data_space(inode, num_pages); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3362 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3363 | out_put: |
| 3364 | iput(inode); |
| 3365 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3366 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3367 | out: |
| 3368 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3369 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3370 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3371 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3372 | spin_unlock(&block_group->lock); |
| 3373 | |
| 3374 | return ret; |
| 3375 | } |
| 3376 | |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3377 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans, |
| 3378 | struct btrfs_root *root) |
| 3379 | { |
| 3380 | struct btrfs_block_group_cache *cache, *tmp; |
| 3381 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3382 | struct btrfs_path *path; |
| 3383 | |
| 3384 | if (list_empty(&cur_trans->dirty_bgs) || |
| 3385 | !btrfs_test_opt(root, SPACE_CACHE)) |
| 3386 | return 0; |
| 3387 | |
| 3388 | path = btrfs_alloc_path(); |
| 3389 | if (!path) |
| 3390 | return -ENOMEM; |
| 3391 | |
| 3392 | /* Could add new block groups, use _safe just in case */ |
| 3393 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3394 | dirty_list) { |
| 3395 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3396 | cache_save_setup(cache, trans, path); |
| 3397 | } |
| 3398 | |
| 3399 | btrfs_free_path(path); |
| 3400 | return 0; |
| 3401 | } |
| 3402 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3403 | /* |
| 3404 | * transaction commit does final block group cache writeback during a |
| 3405 | * critical section where nothing is allowed to change the FS. This is |
| 3406 | * required in order for the cache to actually match the block group, |
| 3407 | * but can introduce a lot of latency into the commit. |
| 3408 | * |
| 3409 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3410 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3411 | * block group changes again during the commit, but it greatly reduces |
| 3412 | * the commit latency by getting rid of the easy block groups while |
| 3413 | * we're still allowing others to join the commit. |
| 3414 | */ |
| 3415 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3416 | struct btrfs_root *root) |
| 3417 | { |
| 3418 | struct btrfs_block_group_cache *cache; |
| 3419 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3420 | int ret = 0; |
| 3421 | int should_put; |
| 3422 | struct btrfs_path *path = NULL; |
| 3423 | LIST_HEAD(dirty); |
| 3424 | struct list_head *io = &cur_trans->io_bgs; |
| 3425 | int num_started = 0; |
| 3426 | int loops = 0; |
| 3427 | |
| 3428 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3429 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3430 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3431 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3432 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3433 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3434 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3435 | |
| 3436 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3437 | /* |
| 3438 | * make sure all the block groups on our dirty list actually |
| 3439 | * exist |
| 3440 | */ |
| 3441 | btrfs_create_pending_block_groups(trans, root); |
| 3442 | |
| 3443 | if (!path) { |
| 3444 | path = btrfs_alloc_path(); |
| 3445 | if (!path) |
| 3446 | return -ENOMEM; |
| 3447 | } |
| 3448 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3449 | /* |
| 3450 | * cache_write_mutex is here only to save us from balance or automatic |
| 3451 | * removal of empty block groups deleting this block group while we are |
| 3452 | * writing out the cache |
| 3453 | */ |
| 3454 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3455 | while (!list_empty(&dirty)) { |
| 3456 | cache = list_first_entry(&dirty, |
| 3457 | struct btrfs_block_group_cache, |
| 3458 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3459 | /* |
| 3460 | * this can happen if something re-dirties a block |
| 3461 | * group that is already under IO. Just wait for it to |
| 3462 | * finish and then do it all again |
| 3463 | */ |
| 3464 | if (!list_empty(&cache->io_list)) { |
| 3465 | list_del_init(&cache->io_list); |
| 3466 | btrfs_wait_cache_io(root, trans, cache, |
| 3467 | &cache->io_ctl, path, |
| 3468 | cache->key.objectid); |
| 3469 | btrfs_put_block_group(cache); |
| 3470 | } |
| 3471 | |
| 3472 | |
| 3473 | /* |
| 3474 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3475 | * if it should update the cache_state. Don't delete |
| 3476 | * until after we wait. |
| 3477 | * |
| 3478 | * Since we're not running in the commit critical section |
| 3479 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3480 | */ |
| 3481 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3482 | list_del_init(&cache->dirty_list); |
| 3483 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3484 | |
| 3485 | should_put = 1; |
| 3486 | |
| 3487 | cache_save_setup(cache, trans, path); |
| 3488 | |
| 3489 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3490 | cache->io_ctl.inode = NULL; |
| 3491 | ret = btrfs_write_out_cache(root, trans, cache, path); |
| 3492 | if (ret == 0 && cache->io_ctl.inode) { |
| 3493 | num_started++; |
| 3494 | should_put = 0; |
| 3495 | |
| 3496 | /* |
| 3497 | * the cache_write_mutex is protecting |
| 3498 | * the io_list |
| 3499 | */ |
| 3500 | list_add_tail(&cache->io_list, io); |
| 3501 | } else { |
| 3502 | /* |
| 3503 | * if we failed to write the cache, the |
| 3504 | * generation will be bad and life goes on |
| 3505 | */ |
| 3506 | ret = 0; |
| 3507 | } |
| 3508 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3509 | if (!ret) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3510 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3511 | /* |
| 3512 | * Our block group might still be attached to the list |
| 3513 | * of new block groups in the transaction handle of some |
| 3514 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3515 | * means its block group item isn't yet in the extent |
| 3516 | * tree. If this happens ignore the error, as we will |
| 3517 | * try again later in the critical section of the |
| 3518 | * transaction commit. |
| 3519 | */ |
| 3520 | if (ret == -ENOENT) { |
| 3521 | ret = 0; |
| 3522 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3523 | if (list_empty(&cache->dirty_list)) { |
| 3524 | list_add_tail(&cache->dirty_list, |
| 3525 | &cur_trans->dirty_bgs); |
| 3526 | btrfs_get_block_group(cache); |
| 3527 | } |
| 3528 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3529 | } else if (ret) { |
| 3530 | btrfs_abort_transaction(trans, root, ret); |
| 3531 | } |
| 3532 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3533 | |
| 3534 | /* if its not on the io list, we need to put the block group */ |
| 3535 | if (should_put) |
| 3536 | btrfs_put_block_group(cache); |
| 3537 | |
| 3538 | if (ret) |
| 3539 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3540 | |
| 3541 | /* |
| 3542 | * Avoid blocking other tasks for too long. It might even save |
| 3543 | * us from writing caches for block groups that are going to be |
| 3544 | * removed. |
| 3545 | */ |
| 3546 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3547 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3548 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3549 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3550 | |
| 3551 | /* |
| 3552 | * go through delayed refs for all the stuff we've just kicked off |
| 3553 | * and then loop back (just once) |
| 3554 | */ |
| 3555 | ret = btrfs_run_delayed_refs(trans, root, 0); |
| 3556 | if (!ret && loops == 0) { |
| 3557 | loops++; |
| 3558 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3559 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3560 | /* |
| 3561 | * dirty_bgs_lock protects us from concurrent block group |
| 3562 | * deletes too (not just cache_write_mutex). |
| 3563 | */ |
| 3564 | if (!list_empty(&dirty)) { |
| 3565 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3566 | goto again; |
| 3567 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3568 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3569 | } |
| 3570 | |
| 3571 | btrfs_free_path(path); |
| 3572 | return ret; |
| 3573 | } |
| 3574 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3575 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3576 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3577 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3578 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3579 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3580 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3581 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3582 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3583 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3584 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3585 | |
| 3586 | path = btrfs_alloc_path(); |
| 3587 | if (!path) |
| 3588 | return -ENOMEM; |
| 3589 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3590 | /* |
| 3591 | * We don't need the lock here since we are protected by the transaction |
| 3592 | * commit. We want to do the cache_save_setup first and then run the |
| 3593 | * delayed refs to make sure we have the best chance at doing this all |
| 3594 | * in one shot. |
| 3595 | */ |
| 3596 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3597 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3598 | struct btrfs_block_group_cache, |
| 3599 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3600 | |
| 3601 | /* |
| 3602 | * this can happen if cache_save_setup re-dirties a block |
| 3603 | * group that is already under IO. Just wait for it to |
| 3604 | * finish and then do it all again |
| 3605 | */ |
| 3606 | if (!list_empty(&cache->io_list)) { |
| 3607 | list_del_init(&cache->io_list); |
| 3608 | btrfs_wait_cache_io(root, trans, cache, |
| 3609 | &cache->io_ctl, path, |
| 3610 | cache->key.objectid); |
| 3611 | btrfs_put_block_group(cache); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3612 | } |
| 3613 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3614 | /* |
| 3615 | * don't remove from the dirty list until after we've waited |
| 3616 | * on any pending IO |
| 3617 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3618 | list_del_init(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3619 | should_put = 1; |
| 3620 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3621 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3622 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3623 | if (!ret) |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3624 | ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1); |
| 3625 | |
| 3626 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3627 | cache->io_ctl.inode = NULL; |
| 3628 | ret = btrfs_write_out_cache(root, trans, cache, path); |
| 3629 | if (ret == 0 && cache->io_ctl.inode) { |
| 3630 | num_started++; |
| 3631 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3632 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3633 | } else { |
| 3634 | /* |
| 3635 | * if we failed to write the cache, the |
| 3636 | * generation will be bad and life goes on |
| 3637 | */ |
| 3638 | ret = 0; |
| 3639 | } |
| 3640 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3641 | if (!ret) { |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3642 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3643 | if (ret) |
| 3644 | btrfs_abort_transaction(trans, root, ret); |
| 3645 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3646 | |
| 3647 | /* if its not on the io list, we need to put the block group */ |
| 3648 | if (should_put) |
| 3649 | btrfs_put_block_group(cache); |
| 3650 | } |
| 3651 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3652 | while (!list_empty(io)) { |
| 3653 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3654 | io_list); |
| 3655 | list_del_init(&cache->io_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3656 | btrfs_wait_cache_io(root, trans, cache, |
| 3657 | &cache->io_ctl, path, cache->key.objectid); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3658 | btrfs_put_block_group(cache); |
| 3659 | } |
| 3660 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3661 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3662 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3663 | } |
| 3664 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3665 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3666 | { |
| 3667 | struct btrfs_block_group_cache *block_group; |
| 3668 | int readonly = 0; |
| 3669 | |
| 3670 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3671 | if (!block_group || block_group->ro) |
| 3672 | readonly = 1; |
| 3673 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3674 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3675 | return readonly; |
| 3676 | } |
| 3677 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3678 | static const char *alloc_name(u64 flags) |
| 3679 | { |
| 3680 | switch (flags) { |
| 3681 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3682 | return "mixed"; |
| 3683 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3684 | return "metadata"; |
| 3685 | case BTRFS_BLOCK_GROUP_DATA: |
| 3686 | return "data"; |
| 3687 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3688 | return "system"; |
| 3689 | default: |
| 3690 | WARN_ON(1); |
| 3691 | return "invalid-combination"; |
| 3692 | }; |
| 3693 | } |
| 3694 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3695 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3696 | u64 total_bytes, u64 bytes_used, |
| 3697 | struct btrfs_space_info **space_info) |
| 3698 | { |
| 3699 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3700 | int i; |
| 3701 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3702 | int ret; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3703 | |
| 3704 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3705 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3706 | factor = 2; |
| 3707 | else |
| 3708 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3709 | |
| 3710 | found = __find_space_info(info, flags); |
| 3711 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3712 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3713 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3714 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3715 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3716 | found->disk_used += bytes_used * factor; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3717 | if (total_bytes > 0) |
| 3718 | found->full = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3719 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3720 | *space_info = found; |
| 3721 | return 0; |
| 3722 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3723 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3724 | if (!found) |
| 3725 | return -ENOMEM; |
| 3726 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 3727 | ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3728 | if (ret) { |
| 3729 | kfree(found); |
| 3730 | return ret; |
| 3731 | } |
| 3732 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3733 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3734 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3735 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3736 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3737 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3738 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3739 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3740 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3741 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3742 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3743 | found->bytes_reserved = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3744 | found->bytes_readonly = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3745 | found->bytes_may_use = 0; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3746 | if (total_bytes > 0) |
| 3747 | found->full = 0; |
| 3748 | else |
| 3749 | found->full = 1; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3750 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3751 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3752 | found->flush = 0; |
| 3753 | init_waitqueue_head(&found->wait); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 3754 | INIT_LIST_HEAD(&found->ro_bgs); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3755 | |
| 3756 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3757 | info->space_info_kobj, "%s", |
| 3758 | alloc_name(found->flags)); |
| 3759 | if (ret) { |
| 3760 | kfree(found); |
| 3761 | return ret; |
| 3762 | } |
| 3763 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3764 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3765 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3766 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3767 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3768 | |
| 3769 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3770 | } |
| 3771 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3772 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 3773 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3774 | u64 extra_flags = chunk_to_extended(flags) & |
| 3775 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3776 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3777 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3778 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3779 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 3780 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3781 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 3782 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3783 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3784 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3785 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3786 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3787 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3788 | * returns target flags in extended format or 0 if restripe for this |
| 3789 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 3790 | * |
| 3791 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3792 | */ |
| 3793 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 3794 | { |
| 3795 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3796 | u64 target = 0; |
| 3797 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3798 | if (!bctl) |
| 3799 | return 0; |
| 3800 | |
| 3801 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 3802 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3803 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 3804 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 3805 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3806 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 3807 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 3808 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3809 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 3810 | } |
| 3811 | |
| 3812 | return target; |
| 3813 | } |
| 3814 | |
| 3815 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3816 | * @flags: available profiles in extended format (see ctree.h) |
| 3817 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3818 | * Returns reduced profile in chunk format. If profile changing is in |
| 3819 | * progress (either running or paused) picks the target profile (if it's |
| 3820 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3821 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 3822 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3823 | { |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 3824 | u64 num_devices = root->fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3825 | u64 target; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3826 | u64 tmp; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3827 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3828 | /* |
| 3829 | * see if restripe for this chunk_type is in progress, if so |
| 3830 | * try to reduce to the target profile |
| 3831 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3832 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3833 | target = get_restripe_target(root->fs_info, flags); |
| 3834 | if (target) { |
| 3835 | /* pick target profile only if it's already available */ |
| 3836 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3837 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3838 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3839 | } |
| 3840 | } |
| 3841 | spin_unlock(&root->fs_info->balance_lock); |
| 3842 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3843 | /* First, mask out the RAID levels which aren't possible */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3844 | if (num_devices == 1) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3845 | flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3846 | BTRFS_BLOCK_GROUP_RAID5); |
| 3847 | if (num_devices < 3) |
| 3848 | flags &= ~BTRFS_BLOCK_GROUP_RAID6; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3849 | if (num_devices < 4) |
| 3850 | flags &= ~BTRFS_BLOCK_GROUP_RAID10; |
| 3851 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3852 | tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 | |
| 3853 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3854 | BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10); |
| 3855 | flags &= ~tmp; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3856 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3857 | if (tmp & BTRFS_BLOCK_GROUP_RAID6) |
| 3858 | tmp = BTRFS_BLOCK_GROUP_RAID6; |
| 3859 | else if (tmp & BTRFS_BLOCK_GROUP_RAID5) |
| 3860 | tmp = BTRFS_BLOCK_GROUP_RAID5; |
| 3861 | else if (tmp & BTRFS_BLOCK_GROUP_RAID10) |
| 3862 | tmp = BTRFS_BLOCK_GROUP_RAID10; |
| 3863 | else if (tmp & BTRFS_BLOCK_GROUP_RAID1) |
| 3864 | tmp = BTRFS_BLOCK_GROUP_RAID1; |
| 3865 | else if (tmp & BTRFS_BLOCK_GROUP_RAID0) |
| 3866 | tmp = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3867 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3868 | return extended_to_chunk(flags | tmp); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3869 | } |
| 3870 | |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3871 | static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3872 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3873 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3874 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3875 | |
| 3876 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3877 | flags = orig_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3878 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 3879 | |
| 3880 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3881 | flags |= root->fs_info->avail_data_alloc_bits; |
| 3882 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3883 | flags |= root->fs_info->avail_system_alloc_bits; |
| 3884 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3885 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 3886 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3887 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3888 | return btrfs_reduce_alloc_profile(root, flags); |
| 3889 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3890 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 3891 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3892 | { |
| 3893 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3894 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3895 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3896 | if (data) |
| 3897 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 3898 | else if (root == root->fs_info->chunk_root) |
| 3899 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 3900 | else |
| 3901 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 3902 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3903 | ret = get_alloc_profile(root, flags); |
| 3904 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3905 | } |
| 3906 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3907 | /* |
| 3908 | * This will check the space that the inode allocates from to make sure we have |
| 3909 | * enough space for bytes. |
| 3910 | */ |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 3911 | int btrfs_check_data_free_space(struct inode *inode, u64 bytes, u64 write_bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3912 | { |
| 3913 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3914 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3915 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3916 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 3917 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3918 | int need_commit = 2; |
| 3919 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3920 | |
| 3921 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3922 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3923 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3924 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3925 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3926 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3927 | } |
| 3928 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3929 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3930 | if (!data_sinfo) |
| 3931 | goto alloc; |
| 3932 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3933 | again: |
| 3934 | /* make sure we have enough space to handle the data first */ |
| 3935 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3936 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 3937 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 3938 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3939 | |
| 3940 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3941 | struct btrfs_trans_handle *trans; |
| 3942 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3943 | /* |
| 3944 | * if we don't have enough free bytes in this space then we need |
| 3945 | * to alloc a new chunk. |
| 3946 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 3947 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3948 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3949 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3950 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3951 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3952 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3953 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3954 | /* |
| 3955 | * It is ugly that we don't call nolock join |
| 3956 | * transaction for the free space inode case here. |
| 3957 | * But it is safe because we only do the data space |
| 3958 | * reservation for the free space cache in the |
| 3959 | * transaction context, the common join transaction |
| 3960 | * just increase the counter of the current transaction |
| 3961 | * handler, doesn't try to acquire the trans_lock of |
| 3962 | * the fs. |
| 3963 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3964 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3965 | if (IS_ERR(trans)) |
| 3966 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3967 | |
| 3968 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3969 | alloc_target, |
| 3970 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3971 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3972 | if (ret < 0) { |
| 3973 | if (ret != -ENOSPC) |
| 3974 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3975 | else { |
| 3976 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3977 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3978 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3979 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3980 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3981 | if (!data_sinfo) |
| 3982 | data_sinfo = fs_info->data_sinfo; |
| 3983 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3984 | goto again; |
| 3985 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3986 | |
| 3987 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3988 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 3989 | * allocation, and no removed chunk in current transaction, |
| 3990 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3991 | */ |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3992 | have_pinned_space = percpu_counter_compare( |
| 3993 | &data_sinfo->total_bytes_pinned, |
| 3994 | used + bytes - data_sinfo->total_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3995 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3996 | |
| 3997 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3998 | commit_trans: |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3999 | if (need_commit && |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 4000 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4001 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4002 | |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 4003 | if (need_commit > 0) |
| 4004 | btrfs_wait_ordered_roots(fs_info, -1); |
| 4005 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4006 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4007 | if (IS_ERR(trans)) |
| 4008 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4009 | if (have_pinned_space >= 0 || |
| 4010 | trans->transaction->have_free_bgs || |
| 4011 | need_commit > 0) { |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4012 | ret = btrfs_commit_transaction(trans, root); |
| 4013 | if (ret) |
| 4014 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4015 | /* |
| 4016 | * make sure that all running delayed iput are |
| 4017 | * done |
| 4018 | */ |
| 4019 | down_write(&root->fs_info->delayed_iput_sem); |
| 4020 | up_write(&root->fs_info->delayed_iput_sem); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4021 | goto again; |
| 4022 | } else { |
| 4023 | btrfs_end_transaction(trans, root); |
| 4024 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4025 | } |
| 4026 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4027 | trace_btrfs_space_reservation(root->fs_info, |
| 4028 | "space_info:enospc", |
| 4029 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4030 | return -ENOSPC; |
| 4031 | } |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 4032 | ret = btrfs_qgroup_reserve(root, write_bytes); |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4033 | if (ret) |
| 4034 | goto out; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4035 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4036 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4037 | data_sinfo->flags, bytes, 1); |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4038 | out: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4039 | spin_unlock(&data_sinfo->lock); |
| 4040 | |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4041 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4042 | } |
| 4043 | |
| 4044 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4045 | * Called if we need to clear a data reservation for this inode. |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4046 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4047 | void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4048 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4049 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4050 | struct btrfs_space_info *data_sinfo; |
| 4051 | |
| 4052 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 4053 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4054 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4055 | data_sinfo = root->fs_info->data_sinfo; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4056 | spin_lock(&data_sinfo->lock); |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 4057 | WARN_ON(data_sinfo->bytes_may_use < bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4058 | data_sinfo->bytes_may_use -= bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4059 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4060 | data_sinfo->flags, bytes, 0); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4061 | spin_unlock(&data_sinfo->lock); |
| 4062 | } |
| 4063 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4064 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4065 | { |
| 4066 | struct list_head *head = &info->space_info; |
| 4067 | struct btrfs_space_info *found; |
| 4068 | |
| 4069 | rcu_read_lock(); |
| 4070 | list_for_each_entry_rcu(found, head, list) { |
| 4071 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4072 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4073 | } |
| 4074 | rcu_read_unlock(); |
| 4075 | } |
| 4076 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4077 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4078 | { |
| 4079 | return (global->size << 1); |
| 4080 | } |
| 4081 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4082 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4083 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4084 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4085 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4086 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4087 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4088 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4089 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4090 | if (force == CHUNK_ALLOC_FORCE) |
| 4091 | return 1; |
| 4092 | |
| 4093 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4094 | * We need to take into account the global rsv because for all intents |
| 4095 | * and purposes it's used space. Don't worry about locking the |
| 4096 | * global_rsv, it doesn't change except when the transaction commits. |
| 4097 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 4098 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4099 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4100 | |
| 4101 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4102 | * in limited mode, we want to have some free space up to |
| 4103 | * about 1% of the FS size. |
| 4104 | */ |
| 4105 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4106 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4107 | thresh = max_t(u64, 64 * 1024 * 1024, |
| 4108 | div_factor_fine(thresh, 1)); |
| 4109 | |
| 4110 | if (num_bytes - num_allocated < thresh) |
| 4111 | return 1; |
| 4112 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4113 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4114 | if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4115 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4116 | return 1; |
| 4117 | } |
| 4118 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4119 | static u64 get_profile_num_devs(struct btrfs_root *root, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4120 | { |
| 4121 | u64 num_dev; |
| 4122 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4123 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4124 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4125 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4126 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4127 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 4128 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4129 | num_dev = 2; |
| 4130 | else |
| 4131 | num_dev = 1; /* DUP or single */ |
| 4132 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4133 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4134 | } |
| 4135 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4136 | /* |
| 4137 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4138 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4139 | * removing a chunk. |
| 4140 | */ |
| 4141 | void check_system_chunk(struct btrfs_trans_handle *trans, |
| 4142 | struct btrfs_root *root, |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4143 | u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4144 | { |
| 4145 | struct btrfs_space_info *info; |
| 4146 | u64 left; |
| 4147 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4148 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4149 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4150 | |
| 4151 | /* |
| 4152 | * Needed because we can end up allocating a system chunk and for an |
| 4153 | * atomic and race free space reservation in the chunk block reserve. |
| 4154 | */ |
| 4155 | ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex)); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4156 | |
| 4157 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4158 | spin_lock(&info->lock); |
| 4159 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4160 | info->bytes_reserved - info->bytes_readonly - |
| 4161 | info->bytes_may_use; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4162 | spin_unlock(&info->lock); |
| 4163 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4164 | num_devs = get_profile_num_devs(root, type); |
| 4165 | |
| 4166 | /* num_devs device items to update and 1 chunk item to add or remove */ |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4167 | thresh = btrfs_calc_trunc_metadata_size(root, num_devs) + |
| 4168 | btrfs_calc_trans_metadata_size(root, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4169 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4170 | if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 4171 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4172 | left, thresh, type); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4173 | dump_space_info(info, 0, 0); |
| 4174 | } |
| 4175 | |
| 4176 | if (left < thresh) { |
| 4177 | u64 flags; |
| 4178 | |
| 4179 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4180 | /* |
| 4181 | * Ignore failure to create system chunk. We might end up not |
| 4182 | * needing it, as we might not need to COW all nodes/leafs from |
| 4183 | * the paths we visit in the chunk tree (they were already COWed |
| 4184 | * or created in the current transaction for example). |
| 4185 | */ |
| 4186 | ret = btrfs_alloc_chunk(trans, root, flags); |
| 4187 | } |
| 4188 | |
| 4189 | if (!ret) { |
| 4190 | ret = btrfs_block_rsv_add(root->fs_info->chunk_root, |
| 4191 | &root->fs_info->chunk_block_rsv, |
| 4192 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4193 | if (!ret) |
| 4194 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4195 | } |
| 4196 | } |
| 4197 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4198 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4199 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4200 | { |
| 4201 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4202 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4203 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4204 | int ret = 0; |
| 4205 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4206 | /* Don't re-enter if we're already allocating a chunk */ |
| 4207 | if (trans->allocating_chunk) |
| 4208 | return -ENOSPC; |
| 4209 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4210 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4211 | if (!space_info) { |
| 4212 | ret = update_space_info(extent_root->fs_info, flags, |
| 4213 | 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4214 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4215 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4216 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4217 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4218 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4219 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 4220 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4221 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4222 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4223 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 4224 | ret = -ENOSPC; |
| 4225 | else |
| 4226 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4227 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4228 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4229 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4230 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4231 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4232 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4233 | return 0; |
| 4234 | } else if (space_info->chunk_alloc) { |
| 4235 | wait_for_alloc = 1; |
| 4236 | } else { |
| 4237 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4238 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4239 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4240 | spin_unlock(&space_info->lock); |
| 4241 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4242 | mutex_lock(&fs_info->chunk_mutex); |
| 4243 | |
| 4244 | /* |
| 4245 | * The chunk_mutex is held throughout the entirety of a chunk |
| 4246 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 4247 | * other guy is done and we need to recheck and see if we should |
| 4248 | * allocate. |
| 4249 | */ |
| 4250 | if (wait_for_alloc) { |
| 4251 | mutex_unlock(&fs_info->chunk_mutex); |
| 4252 | wait_for_alloc = 0; |
| 4253 | goto again; |
| 4254 | } |
| 4255 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4256 | trans->allocating_chunk = true; |
| 4257 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4258 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4259 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4260 | * allocating mixed chunks instead of individual chunks. |
| 4261 | */ |
| 4262 | if (btrfs_mixed_space_info(space_info)) |
| 4263 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4264 | |
| 4265 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4266 | * if we're doing a data chunk, go ahead and make sure that |
| 4267 | * we keep a reasonable number of metadata chunks allocated in the |
| 4268 | * FS as well. |
| 4269 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4270 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4271 | fs_info->data_chunk_allocations++; |
| 4272 | if (!(fs_info->data_chunk_allocations % |
| 4273 | fs_info->metadata_ratio)) |
| 4274 | force_metadata_allocation(fs_info); |
| 4275 | } |
| 4276 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4277 | /* |
| 4278 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4279 | * to update devices. |
| 4280 | */ |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4281 | check_system_chunk(trans, extent_root, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4282 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4283 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4284 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4285 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4286 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4287 | if (ret < 0 && ret != -ENOSPC) |
| 4288 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4289 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4290 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4291 | else |
| 4292 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4293 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4294 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4295 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4296 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4297 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4298 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4299 | /* |
| 4300 | * When we allocate a new chunk we reserve space in the chunk block |
| 4301 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4302 | * add new nodes/leafs to it if we end up needing to do it when |
| 4303 | * inserting the chunk item and updating device items as part of the |
| 4304 | * second phase of chunk allocation, performed by |
| 4305 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4306 | * large number of new block groups to create in our transaction |
| 4307 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4308 | * in extreme cases - like having a single transaction create many new |
| 4309 | * block groups when starting to write out the free space caches of all |
| 4310 | * the block groups that were made dirty during the lifetime of the |
| 4311 | * transaction. |
| 4312 | */ |
| 4313 | if (trans->chunk_bytes_reserved >= (2 * 1024 * 1024ull)) { |
| 4314 | btrfs_create_pending_block_groups(trans, trans->root); |
| 4315 | btrfs_trans_release_chunk_metadata(trans); |
| 4316 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4317 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4318 | } |
| 4319 | |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4320 | static int can_overcommit(struct btrfs_root *root, |
| 4321 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4322 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4323 | { |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4324 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4325 | u64 profile = btrfs_get_alloc_profile(root, 0); |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4326 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4327 | u64 avail; |
| 4328 | u64 used; |
| 4329 | |
| 4330 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4331 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 4332 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4333 | /* |
| 4334 | * We only want to allow over committing if we have lots of actual space |
| 4335 | * free, but if we don't have enough space to handle the global reserve |
| 4336 | * space then we could end up having a real enospc problem when trying |
| 4337 | * to allocate a chunk or some other such important allocation. |
| 4338 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4339 | spin_lock(&global_rsv->lock); |
| 4340 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4341 | spin_unlock(&global_rsv->lock); |
| 4342 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4343 | return 0; |
| 4344 | |
| 4345 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4346 | |
| 4347 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4348 | avail = root->fs_info->free_chunk_space; |
| 4349 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4350 | |
| 4351 | /* |
| 4352 | * If we have dup, raid1 or raid10 then only half of the free |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4353 | * space is actually useable. For raid56, the space info used |
| 4354 | * doesn't include the parity drive, so we don't have to |
| 4355 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4356 | */ |
| 4357 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4358 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4359 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4360 | avail >>= 1; |
| 4361 | |
| 4362 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4363 | * If we aren't flushing all things, let us overcommit up to |
| 4364 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4365 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4366 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4367 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4368 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4369 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4370 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4371 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4372 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4373 | return 1; |
| 4374 | return 0; |
| 4375 | } |
| 4376 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4377 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4378 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4379 | { |
| 4380 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4381 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4382 | if (down_read_trylock(&sb->s_umount)) { |
| 4383 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4384 | up_read(&sb->s_umount); |
| 4385 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4386 | /* |
| 4387 | * We needn't worry the filesystem going from r/w to r/o though |
| 4388 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4389 | * should guarantee the delalloc inodes list be empty after |
| 4390 | * the filesystem is readonly(all dirty pages are written to |
| 4391 | * the disk). |
| 4392 | */ |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4393 | btrfs_start_delalloc_roots(root->fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4394 | if (!current->journal_info) |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4395 | btrfs_wait_ordered_roots(root->fs_info, nr_items); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4396 | } |
| 4397 | } |
| 4398 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4399 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4400 | { |
| 4401 | u64 bytes; |
| 4402 | int nr; |
| 4403 | |
| 4404 | bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 4405 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4406 | if (!nr) |
| 4407 | nr = 1; |
| 4408 | return nr; |
| 4409 | } |
| 4410 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4411 | #define EXTENT_SIZE_PER_ITEM (256 * 1024) |
| 4412 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4413 | /* |
| 4414 | * shrink metadata reservation for delalloc |
| 4415 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4416 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4417 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4418 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4419 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4420 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4421 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4422 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4423 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4424 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4425 | unsigned long nr_pages; |
| 4426 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4427 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4428 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4429 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4430 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4431 | items = calc_reclaim_items_nr(root, to_reclaim); |
| 4432 | to_reclaim = items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4433 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4434 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4435 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4436 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4437 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4438 | delalloc_bytes = percpu_counter_sum_positive( |
| 4439 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4440 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4441 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4442 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4443 | if (wait_ordered) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4444 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4445 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4446 | } |
| 4447 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4448 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4449 | while (delalloc_bytes && loops < 3) { |
| 4450 | max_reclaim = min(delalloc_bytes, to_reclaim); |
| 4451 | nr_pages = max_reclaim >> PAGE_CACHE_SHIFT; |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4452 | btrfs_writeback_inodes_sb_nr(root, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4453 | /* |
| 4454 | * We need to wait for the async pages to actually start before |
| 4455 | * we do anything. |
| 4456 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4457 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4458 | if (!max_reclaim) |
| 4459 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4460 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4461 | if (max_reclaim <= nr_pages) |
| 4462 | max_reclaim = 0; |
| 4463 | else |
| 4464 | max_reclaim -= nr_pages; |
| 4465 | |
| 4466 | wait_event(root->fs_info->async_submit_wait, |
| 4467 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4468 | (int)max_reclaim); |
| 4469 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4470 | if (!trans) |
| 4471 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4472 | else |
| 4473 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4474 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4475 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4476 | spin_unlock(&space_info->lock); |
| 4477 | break; |
| 4478 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4479 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4480 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4481 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4482 | if (wait_ordered && !trans) { |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4483 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4484 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4485 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4486 | if (time_left) |
| 4487 | break; |
| 4488 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4489 | delalloc_bytes = percpu_counter_sum_positive( |
| 4490 | &root->fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4491 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4492 | } |
| 4493 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4494 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4495 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4496 | * @root - the root we're allocating for |
| 4497 | * @bytes - the number of bytes we want to reserve |
| 4498 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4499 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4500 | * This will check to make sure that committing the transaction will actually |
| 4501 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4502 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4503 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4504 | static int may_commit_transaction(struct btrfs_root *root, |
| 4505 | struct btrfs_space_info *space_info, |
| 4506 | u64 bytes, int force) |
| 4507 | { |
| 4508 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4509 | struct btrfs_trans_handle *trans; |
| 4510 | |
| 4511 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4512 | if (trans) |
| 4513 | return -EAGAIN; |
| 4514 | |
| 4515 | if (force) |
| 4516 | goto commit; |
| 4517 | |
| 4518 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4519 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4520 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4521 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4522 | |
| 4523 | /* |
| 4524 | * See if there is some space in the delayed insertion reservation for |
| 4525 | * this reservation. |
| 4526 | */ |
| 4527 | if (space_info != delayed_rsv->space_info) |
| 4528 | return -ENOSPC; |
| 4529 | |
| 4530 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4531 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4532 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4533 | spin_unlock(&delayed_rsv->lock); |
| 4534 | return -ENOSPC; |
| 4535 | } |
| 4536 | spin_unlock(&delayed_rsv->lock); |
| 4537 | |
| 4538 | commit: |
| 4539 | trans = btrfs_join_transaction(root); |
| 4540 | if (IS_ERR(trans)) |
| 4541 | return -ENOSPC; |
| 4542 | |
| 4543 | return btrfs_commit_transaction(trans, root); |
| 4544 | } |
| 4545 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4546 | enum flush_state { |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4547 | FLUSH_DELAYED_ITEMS_NR = 1, |
| 4548 | FLUSH_DELAYED_ITEMS = 2, |
| 4549 | FLUSH_DELALLOC = 3, |
| 4550 | FLUSH_DELALLOC_WAIT = 4, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4551 | ALLOC_CHUNK = 5, |
| 4552 | COMMIT_TRANS = 6, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4553 | }; |
| 4554 | |
| 4555 | static int flush_space(struct btrfs_root *root, |
| 4556 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4557 | u64 orig_bytes, int state) |
| 4558 | { |
| 4559 | struct btrfs_trans_handle *trans; |
| 4560 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4561 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4562 | |
| 4563 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4564 | case FLUSH_DELAYED_ITEMS_NR: |
| 4565 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4566 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4567 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4568 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4569 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4570 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4571 | trans = btrfs_join_transaction(root); |
| 4572 | if (IS_ERR(trans)) { |
| 4573 | ret = PTR_ERR(trans); |
| 4574 | break; |
| 4575 | } |
| 4576 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4577 | btrfs_end_transaction(trans, root); |
| 4578 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4579 | case FLUSH_DELALLOC: |
| 4580 | case FLUSH_DELALLOC_WAIT: |
Miao Xie | 24af7dd | 2014-03-06 13:55:00 +0800 | [diff] [blame] | 4581 | shrink_delalloc(root, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4582 | state == FLUSH_DELALLOC_WAIT); |
| 4583 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4584 | case ALLOC_CHUNK: |
| 4585 | trans = btrfs_join_transaction(root); |
| 4586 | if (IS_ERR(trans)) { |
| 4587 | ret = PTR_ERR(trans); |
| 4588 | break; |
| 4589 | } |
| 4590 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4591 | btrfs_get_alloc_profile(root, 0), |
| 4592 | CHUNK_ALLOC_NO_FORCE); |
| 4593 | btrfs_end_transaction(trans, root); |
| 4594 | if (ret == -ENOSPC) |
| 4595 | ret = 0; |
| 4596 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4597 | case COMMIT_TRANS: |
| 4598 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4599 | break; |
| 4600 | default: |
| 4601 | ret = -ENOSPC; |
| 4602 | break; |
| 4603 | } |
| 4604 | |
| 4605 | return ret; |
| 4606 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4607 | |
| 4608 | static inline u64 |
| 4609 | btrfs_calc_reclaim_metadata_size(struct btrfs_root *root, |
| 4610 | struct btrfs_space_info *space_info) |
| 4611 | { |
| 4612 | u64 used; |
| 4613 | u64 expected; |
| 4614 | u64 to_reclaim; |
| 4615 | |
| 4616 | to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024, |
| 4617 | 16 * 1024 * 1024); |
| 4618 | spin_lock(&space_info->lock); |
| 4619 | if (can_overcommit(root, space_info, to_reclaim, |
| 4620 | BTRFS_RESERVE_FLUSH_ALL)) { |
| 4621 | to_reclaim = 0; |
| 4622 | goto out; |
| 4623 | } |
| 4624 | |
| 4625 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4626 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4627 | space_info->bytes_may_use; |
| 4628 | if (can_overcommit(root, space_info, 1024 * 1024, |
| 4629 | BTRFS_RESERVE_FLUSH_ALL)) |
| 4630 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4631 | else |
| 4632 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4633 | |
| 4634 | if (used > expected) |
| 4635 | to_reclaim = used - expected; |
| 4636 | else |
| 4637 | to_reclaim = 0; |
| 4638 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4639 | space_info->bytes_reserved); |
| 4640 | out: |
| 4641 | spin_unlock(&space_info->lock); |
| 4642 | |
| 4643 | return to_reclaim; |
| 4644 | } |
| 4645 | |
| 4646 | static inline int need_do_async_reclaim(struct btrfs_space_info *space_info, |
| 4647 | struct btrfs_fs_info *fs_info, u64 used) |
| 4648 | { |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4649 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4650 | |
| 4651 | /* If we're just plain full then async reclaim just slows us down. */ |
| 4652 | if (space_info->bytes_used >= thresh) |
| 4653 | return 0; |
| 4654 | |
| 4655 | return (used >= thresh && !btrfs_fs_closing(fs_info) && |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4656 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
| 4657 | } |
| 4658 | |
| 4659 | static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info, |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4660 | struct btrfs_fs_info *fs_info, |
| 4661 | int flush_state) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4662 | { |
| 4663 | u64 used; |
| 4664 | |
| 4665 | spin_lock(&space_info->lock); |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4666 | /* |
| 4667 | * We run out of space and have not got any free space via flush_space, |
| 4668 | * so don't bother doing async reclaim. |
| 4669 | */ |
| 4670 | if (flush_state > COMMIT_TRANS && space_info->full) { |
| 4671 | spin_unlock(&space_info->lock); |
| 4672 | return 0; |
| 4673 | } |
| 4674 | |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4675 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4676 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4677 | space_info->bytes_may_use; |
| 4678 | if (need_do_async_reclaim(space_info, fs_info, used)) { |
| 4679 | spin_unlock(&space_info->lock); |
| 4680 | return 1; |
| 4681 | } |
| 4682 | spin_unlock(&space_info->lock); |
| 4683 | |
| 4684 | return 0; |
| 4685 | } |
| 4686 | |
| 4687 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4688 | { |
| 4689 | struct btrfs_fs_info *fs_info; |
| 4690 | struct btrfs_space_info *space_info; |
| 4691 | u64 to_reclaim; |
| 4692 | int flush_state; |
| 4693 | |
| 4694 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 4695 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4696 | |
| 4697 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 4698 | space_info); |
| 4699 | if (!to_reclaim) |
| 4700 | return; |
| 4701 | |
| 4702 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 4703 | do { |
| 4704 | flush_space(fs_info->fs_root, space_info, to_reclaim, |
| 4705 | to_reclaim, flush_state); |
| 4706 | flush_state++; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4707 | if (!btrfs_need_do_async_reclaim(space_info, fs_info, |
| 4708 | flush_state)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4709 | return; |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4710 | } while (flush_state < COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4711 | } |
| 4712 | |
| 4713 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 4714 | { |
| 4715 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 4716 | } |
| 4717 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4718 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4719 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 4720 | * @root - the root we're allocating for |
| 4721 | * @block_rsv - the block_rsv we're allocating for |
| 4722 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 4723 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4724 | * |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4725 | * This will reserve orgi_bytes number of bytes from the space info associated |
| 4726 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 4727 | * flush out space to make room. It will do this by flushing delalloc if |
| 4728 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 4729 | * regain reservations will be made and this will fail if there is not enough |
| 4730 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4731 | */ |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4732 | static int reserve_metadata_bytes(struct btrfs_root *root, |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4733 | struct btrfs_block_rsv *block_rsv, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4734 | u64 orig_bytes, |
| 4735 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4736 | { |
| 4737 | struct btrfs_space_info *space_info = block_rsv->space_info; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4738 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4739 | u64 num_bytes = orig_bytes; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4740 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4741 | int ret = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4742 | bool flushing = false; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4743 | |
| 4744 | again: |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4745 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4746 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4747 | /* |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4748 | * We only want to wait if somebody other than us is flushing and we |
| 4749 | * are actually allowed to flush all things. |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4750 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4751 | while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing && |
| 4752 | space_info->flush) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4753 | spin_unlock(&space_info->lock); |
| 4754 | /* |
| 4755 | * If we have a trans handle we can't wait because the flusher |
| 4756 | * may have to commit the transaction, which would mean we would |
| 4757 | * deadlock since we are waiting for the flusher to finish, but |
| 4758 | * hold the current transaction open. |
| 4759 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4760 | if (current->journal_info) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4761 | return -EAGAIN; |
Arne Jansen | b9688bb | 2012-04-18 10:27:16 +0200 | [diff] [blame] | 4762 | ret = wait_event_killable(space_info->wait, !space_info->flush); |
| 4763 | /* Must have been killed, return */ |
| 4764 | if (ret) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4765 | return -EINTR; |
| 4766 | |
| 4767 | spin_lock(&space_info->lock); |
| 4768 | } |
| 4769 | |
| 4770 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4771 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4772 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4773 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4774 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4775 | /* |
| 4776 | * The idea here is that we've not already over-reserved the block group |
| 4777 | * then we can go ahead and save our reservation first and then start |
| 4778 | * flushing if we need to. Otherwise if we've already overcommitted |
| 4779 | * lets start flushing stuff first and then come back and try to make |
| 4780 | * our reservation. |
| 4781 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4782 | if (used <= space_info->total_bytes) { |
| 4783 | if (used + orig_bytes <= space_info->total_bytes) { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4784 | space_info->bytes_may_use += orig_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4785 | trace_btrfs_space_reservation(root->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4786 | "space_info", space_info->flags, orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4787 | ret = 0; |
| 4788 | } else { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4789 | /* |
| 4790 | * Ok set num_bytes to orig_bytes since we aren't |
| 4791 | * overocmmitted, this way we only try and reclaim what |
| 4792 | * we need. |
| 4793 | */ |
| 4794 | num_bytes = orig_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4795 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4796 | } else { |
| 4797 | /* |
| 4798 | * Ok we're over committed, set num_bytes to the overcommitted |
| 4799 | * amount plus the amount of bytes that we need for this |
| 4800 | * reservation. |
| 4801 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4802 | num_bytes = used - space_info->total_bytes + |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4803 | (orig_bytes * 2); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4804 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4805 | |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 4806 | if (ret && can_overcommit(root, space_info, orig_bytes, flush)) { |
| 4807 | space_info->bytes_may_use += orig_bytes; |
| 4808 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4809 | space_info->flags, orig_bytes, |
| 4810 | 1); |
| 4811 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4812 | } |
| 4813 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4814 | /* |
| 4815 | * Couldn't make our reservation, save our place so while we're trying |
| 4816 | * to reclaim space we can actually use it instead of somebody else |
| 4817 | * stealing it from us. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4818 | * |
| 4819 | * We make the other tasks wait for the flush only when we can flush |
| 4820 | * all things. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4821 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 4822 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4823 | flushing = true; |
| 4824 | space_info->flush = 1; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4825 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 4826 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 4827 | /* |
| 4828 | * We will do the space reservation dance during log replay, |
| 4829 | * which means we won't have fs_info->fs_root set, so don't do |
| 4830 | * the async reclaim as we will panic. |
| 4831 | */ |
| 4832 | if (!root->fs_info->log_root_recovering && |
| 4833 | need_do_async_reclaim(space_info, root->fs_info, used) && |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4834 | !work_busy(&root->fs_info->async_reclaim_work)) |
| 4835 | queue_work(system_unbound_wq, |
| 4836 | &root->fs_info->async_reclaim_work); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4837 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4838 | spin_unlock(&space_info->lock); |
| 4839 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4840 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4841 | goto out; |
| 4842 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4843 | ret = flush_space(root, space_info, num_bytes, orig_bytes, |
| 4844 | flush_state); |
| 4845 | flush_state++; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4846 | |
| 4847 | /* |
| 4848 | * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock |
| 4849 | * would happen. So skip delalloc flush. |
| 4850 | */ |
| 4851 | if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4852 | (flush_state == FLUSH_DELALLOC || |
| 4853 | flush_state == FLUSH_DELALLOC_WAIT)) |
| 4854 | flush_state = ALLOC_CHUNK; |
| 4855 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4856 | if (!ret) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4857 | goto again; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4858 | else if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4859 | flush_state < COMMIT_TRANS) |
| 4860 | goto again; |
| 4861 | else if (flush == BTRFS_RESERVE_FLUSH_ALL && |
| 4862 | flush_state <= COMMIT_TRANS) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4863 | goto again; |
| 4864 | |
| 4865 | out: |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 4866 | if (ret == -ENOSPC && |
| 4867 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 4868 | struct btrfs_block_rsv *global_rsv = |
| 4869 | &root->fs_info->global_block_rsv; |
| 4870 | |
| 4871 | if (block_rsv != global_rsv && |
| 4872 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 4873 | ret = 0; |
| 4874 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4875 | if (ret == -ENOSPC) |
| 4876 | trace_btrfs_space_reservation(root->fs_info, |
| 4877 | "space_info:enospc", |
| 4878 | space_info->flags, orig_bytes, 1); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4879 | if (flushing) { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4880 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4881 | space_info->flush = 0; |
| 4882 | wake_up_all(&space_info->wait); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4883 | spin_unlock(&space_info->lock); |
| 4884 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4885 | return ret; |
| 4886 | } |
| 4887 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4888 | static struct btrfs_block_rsv *get_block_rsv( |
| 4889 | const struct btrfs_trans_handle *trans, |
| 4890 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4891 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4892 | struct btrfs_block_rsv *block_rsv = NULL; |
| 4893 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4894 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4895 | block_rsv = trans->block_rsv; |
| 4896 | |
| 4897 | if (root == root->fs_info->csum_root && trans->adding_csums) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4898 | block_rsv = trans->block_rsv; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4899 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4900 | if (root == root->fs_info->uuid_root) |
| 4901 | block_rsv = trans->block_rsv; |
| 4902 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4903 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4904 | block_rsv = root->block_rsv; |
| 4905 | |
| 4906 | if (!block_rsv) |
| 4907 | block_rsv = &root->fs_info->empty_block_rsv; |
| 4908 | |
| 4909 | return block_rsv; |
| 4910 | } |
| 4911 | |
| 4912 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 4913 | u64 num_bytes) |
| 4914 | { |
| 4915 | int ret = -ENOSPC; |
| 4916 | spin_lock(&block_rsv->lock); |
| 4917 | if (block_rsv->reserved >= num_bytes) { |
| 4918 | block_rsv->reserved -= num_bytes; |
| 4919 | if (block_rsv->reserved < block_rsv->size) |
| 4920 | block_rsv->full = 0; |
| 4921 | ret = 0; |
| 4922 | } |
| 4923 | spin_unlock(&block_rsv->lock); |
| 4924 | return ret; |
| 4925 | } |
| 4926 | |
| 4927 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 4928 | u64 num_bytes, int update_size) |
| 4929 | { |
| 4930 | spin_lock(&block_rsv->lock); |
| 4931 | block_rsv->reserved += num_bytes; |
| 4932 | if (update_size) |
| 4933 | block_rsv->size += num_bytes; |
| 4934 | else if (block_rsv->reserved >= block_rsv->size) |
| 4935 | block_rsv->full = 1; |
| 4936 | spin_unlock(&block_rsv->lock); |
| 4937 | } |
| 4938 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 4939 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 4940 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 4941 | int min_factor) |
| 4942 | { |
| 4943 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 4944 | u64 min_bytes; |
| 4945 | |
| 4946 | if (global_rsv->space_info != dest->space_info) |
| 4947 | return -ENOSPC; |
| 4948 | |
| 4949 | spin_lock(&global_rsv->lock); |
| 4950 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 4951 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 4952 | spin_unlock(&global_rsv->lock); |
| 4953 | return -ENOSPC; |
| 4954 | } |
| 4955 | global_rsv->reserved -= num_bytes; |
| 4956 | if (global_rsv->reserved < global_rsv->size) |
| 4957 | global_rsv->full = 0; |
| 4958 | spin_unlock(&global_rsv->lock); |
| 4959 | |
| 4960 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 4961 | return 0; |
| 4962 | } |
| 4963 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4964 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 4965 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 4966 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4967 | { |
| 4968 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 4969 | |
| 4970 | spin_lock(&block_rsv->lock); |
| 4971 | if (num_bytes == (u64)-1) |
| 4972 | num_bytes = block_rsv->size; |
| 4973 | block_rsv->size -= num_bytes; |
| 4974 | if (block_rsv->reserved >= block_rsv->size) { |
| 4975 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 4976 | block_rsv->reserved = block_rsv->size; |
| 4977 | block_rsv->full = 1; |
| 4978 | } else { |
| 4979 | num_bytes = 0; |
| 4980 | } |
| 4981 | spin_unlock(&block_rsv->lock); |
| 4982 | |
| 4983 | if (num_bytes > 0) { |
| 4984 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 4985 | spin_lock(&dest->lock); |
| 4986 | if (!dest->full) { |
| 4987 | u64 bytes_to_add; |
| 4988 | |
| 4989 | bytes_to_add = dest->size - dest->reserved; |
| 4990 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 4991 | dest->reserved += bytes_to_add; |
| 4992 | if (dest->reserved >= dest->size) |
| 4993 | dest->full = 1; |
| 4994 | num_bytes -= bytes_to_add; |
| 4995 | } |
| 4996 | spin_unlock(&dest->lock); |
| 4997 | } |
| 4998 | if (num_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4999 | spin_lock(&space_info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5000 | space_info->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5001 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5002 | space_info->flags, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5003 | spin_unlock(&space_info->lock); |
| 5004 | } |
| 5005 | } |
| 5006 | } |
| 5007 | |
| 5008 | static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src, |
| 5009 | struct btrfs_block_rsv *dst, u64 num_bytes) |
| 5010 | { |
| 5011 | int ret; |
| 5012 | |
| 5013 | ret = block_rsv_use_bytes(src, num_bytes); |
| 5014 | if (ret) |
| 5015 | return ret; |
| 5016 | |
| 5017 | block_rsv_add_bytes(dst, num_bytes, 1); |
| 5018 | return 0; |
| 5019 | } |
| 5020 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5021 | void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5022 | { |
| 5023 | memset(rsv, 0, sizeof(*rsv)); |
| 5024 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5025 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5026 | } |
| 5027 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5028 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 5029 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5030 | { |
| 5031 | struct btrfs_block_rsv *block_rsv; |
| 5032 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5033 | |
| 5034 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 5035 | if (!block_rsv) |
| 5036 | return NULL; |
| 5037 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5038 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5039 | block_rsv->space_info = __find_space_info(fs_info, |
| 5040 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5041 | return block_rsv; |
| 5042 | } |
| 5043 | |
| 5044 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 5045 | struct btrfs_block_rsv *rsv) |
| 5046 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 5047 | if (!rsv) |
| 5048 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5049 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 5050 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5051 | } |
| 5052 | |
Chris Mason | cdfb080 | 2015-04-06 18:17:00 -0700 | [diff] [blame] | 5053 | void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv) |
| 5054 | { |
| 5055 | kfree(rsv); |
| 5056 | } |
| 5057 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5058 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5059 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5060 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5061 | { |
| 5062 | int ret; |
| 5063 | |
| 5064 | if (num_bytes == 0) |
| 5065 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5066 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5067 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5068 | if (!ret) { |
| 5069 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 5070 | return 0; |
| 5071 | } |
| 5072 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5073 | return ret; |
| 5074 | } |
| 5075 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5076 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5077 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5078 | { |
| 5079 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5080 | int ret = -ENOSPC; |
| 5081 | |
| 5082 | if (!block_rsv) |
| 5083 | return 0; |
| 5084 | |
| 5085 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5086 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5087 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5088 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5089 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5090 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5091 | return ret; |
| 5092 | } |
| 5093 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5094 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5095 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5096 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5097 | { |
| 5098 | u64 num_bytes = 0; |
| 5099 | int ret = -ENOSPC; |
| 5100 | |
| 5101 | if (!block_rsv) |
| 5102 | return 0; |
| 5103 | |
| 5104 | spin_lock(&block_rsv->lock); |
| 5105 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5106 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5107 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5108 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5109 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5110 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5111 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5112 | if (!ret) |
| 5113 | return 0; |
| 5114 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5115 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5116 | if (!ret) { |
| 5117 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5118 | return 0; |
| 5119 | } |
| 5120 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5121 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5122 | } |
| 5123 | |
| 5124 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv, |
| 5125 | struct btrfs_block_rsv *dst_rsv, |
| 5126 | u64 num_bytes) |
| 5127 | { |
| 5128 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 5129 | } |
| 5130 | |
| 5131 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 5132 | struct btrfs_block_rsv *block_rsv, |
| 5133 | u64 num_bytes) |
| 5134 | { |
| 5135 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 5136 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5137 | block_rsv->space_info != global_rsv->space_info) |
| 5138 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5139 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 5140 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5141 | } |
| 5142 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5143 | /* |
| 5144 | * helper to calculate size of global block reservation. |
| 5145 | * the desired value is sum of space used by extent tree, |
| 5146 | * checksum tree and root tree |
| 5147 | */ |
| 5148 | static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info) |
| 5149 | { |
| 5150 | struct btrfs_space_info *sinfo; |
| 5151 | u64 num_bytes; |
| 5152 | u64 meta_used; |
| 5153 | u64 data_used; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5154 | int csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5155 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5156 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 5157 | spin_lock(&sinfo->lock); |
| 5158 | data_used = sinfo->bytes_used; |
| 5159 | spin_unlock(&sinfo->lock); |
| 5160 | |
| 5161 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 5162 | spin_lock(&sinfo->lock); |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 5163 | if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA) |
| 5164 | data_used = 0; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5165 | meta_used = sinfo->bytes_used; |
| 5166 | spin_unlock(&sinfo->lock); |
| 5167 | |
| 5168 | num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) * |
| 5169 | csum_size * 2; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 5170 | num_bytes += div_u64(data_used + meta_used, 50); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5171 | |
| 5172 | if (num_bytes * 3 > meta_used) |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 5173 | num_bytes = div_u64(meta_used, 3); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5174 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5175 | return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5176 | } |
| 5177 | |
| 5178 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5179 | { |
| 5180 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5181 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5182 | u64 num_bytes; |
| 5183 | |
| 5184 | num_bytes = calc_global_metadata_size(fs_info); |
| 5185 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5186 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5187 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5188 | |
Josef Bacik | fdf30d1 | 2013-03-26 15:31:45 -0400 | [diff] [blame] | 5189 | block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5190 | |
| 5191 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 5192 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 5193 | sinfo->bytes_may_use; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5194 | |
| 5195 | if (sinfo->total_bytes > num_bytes) { |
| 5196 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5197 | block_rsv->reserved += num_bytes; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5198 | sinfo->bytes_may_use += num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5199 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5200 | sinfo->flags, num_bytes, 1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5201 | } |
| 5202 | |
| 5203 | if (block_rsv->reserved >= block_rsv->size) { |
| 5204 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5205 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5206 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5207 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5208 | block_rsv->reserved = block_rsv->size; |
| 5209 | block_rsv->full = 1; |
| 5210 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5211 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5212 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5213 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5214 | } |
| 5215 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5216 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5217 | { |
| 5218 | struct btrfs_space_info *space_info; |
| 5219 | |
| 5220 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5221 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5222 | |
| 5223 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5224 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5225 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5226 | fs_info->trans_block_rsv.space_info = space_info; |
| 5227 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5228 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5229 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5230 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 5231 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 5232 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5233 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5234 | if (fs_info->quota_root) |
| 5235 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5236 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5237 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5238 | update_global_block_rsv(fs_info); |
| 5239 | } |
| 5240 | |
| 5241 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5242 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5243 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 5244 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5245 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 5246 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 5247 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5248 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5249 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5250 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5251 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5252 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5253 | } |
| 5254 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5255 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 5256 | struct btrfs_root *root) |
| 5257 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 5258 | if (!trans->block_rsv) |
| 5259 | return; |
| 5260 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5261 | if (!trans->bytes_reserved) |
| 5262 | return; |
| 5263 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 5264 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5265 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 5266 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5267 | trans->bytes_reserved = 0; |
| 5268 | } |
| 5269 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5270 | /* |
| 5271 | * To be called after all the new block groups attached to the transaction |
| 5272 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5273 | */ |
| 5274 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5275 | { |
| 5276 | struct btrfs_fs_info *fs_info = trans->root->fs_info; |
| 5277 | |
| 5278 | if (!trans->chunk_bytes_reserved) |
| 5279 | return; |
| 5280 | |
| 5281 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5282 | |
| 5283 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
| 5284 | trans->chunk_bytes_reserved); |
| 5285 | trans->chunk_bytes_reserved = 0; |
| 5286 | } |
| 5287 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5288 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5289 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 5290 | struct inode *inode) |
| 5291 | { |
| 5292 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5293 | struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root); |
| 5294 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 5295 | |
| 5296 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5297 | * We need to hold space in order to delete our orphan item once we've |
| 5298 | * added it, so this takes the reservation so we can release it later |
| 5299 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5300 | */ |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5301 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5302 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5303 | btrfs_ino(inode), num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5304 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 5305 | } |
| 5306 | |
| 5307 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 5308 | { |
| 5309 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5310 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5311 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5312 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5313 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 5314 | } |
| 5315 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5316 | /* |
| 5317 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 5318 | * root: the root of the parent directory |
| 5319 | * rsv: block reservation |
| 5320 | * items: the number of items that we need do reservation |
| 5321 | * qgroup_reserved: used to return the reserved size in qgroup |
| 5322 | * |
| 5323 | * This function is used to reserve the space for snapshot/subvolume |
| 5324 | * creation and deletion. Those operations are different with the |
| 5325 | * common file/directory operations, they change two fs/file trees |
| 5326 | * and root tree, the number of items that the qgroup reserves is |
| 5327 | * different with the free space reservation. So we can not use |
| 5328 | * the space reseravtion mechanism in start_transaction(). |
| 5329 | */ |
| 5330 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 5331 | struct btrfs_block_rsv *rsv, |
| 5332 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5333 | u64 *qgroup_reserved, |
| 5334 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5335 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5336 | u64 num_bytes; |
| 5337 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5338 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5339 | |
| 5340 | if (root->fs_info->quota_enabled) { |
| 5341 | /* One for parent inode, two for dir entries */ |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5342 | num_bytes = 3 * root->nodesize; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5343 | ret = btrfs_qgroup_reserve(root, num_bytes); |
| 5344 | if (ret) |
| 5345 | return ret; |
| 5346 | } else { |
| 5347 | num_bytes = 0; |
| 5348 | } |
| 5349 | |
| 5350 | *qgroup_reserved = num_bytes; |
| 5351 | |
| 5352 | num_bytes = btrfs_calc_trans_metadata_size(root, items); |
| 5353 | rsv->space_info = __find_space_info(root->fs_info, |
| 5354 | BTRFS_BLOCK_GROUP_METADATA); |
| 5355 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5356 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5357 | |
| 5358 | if (ret == -ENOSPC && use_global_rsv) |
| 5359 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes); |
| 5360 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5361 | if (ret) { |
| 5362 | if (*qgroup_reserved) |
| 5363 | btrfs_qgroup_free(root, *qgroup_reserved); |
| 5364 | } |
| 5365 | |
| 5366 | return ret; |
| 5367 | } |
| 5368 | |
| 5369 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 5370 | struct btrfs_block_rsv *rsv, |
| 5371 | u64 qgroup_reserved) |
| 5372 | { |
| 5373 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5374 | } |
| 5375 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5376 | /** |
| 5377 | * drop_outstanding_extent - drop an outstanding extent |
| 5378 | * @inode: the inode we're dropping the extent for |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5379 | * @num_bytes: the number of bytes we're relaseing. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5380 | * |
| 5381 | * This is called when we are freeing up an outstanding extent, either called |
| 5382 | * after an error or after an extent is written. This will return the number of |
| 5383 | * reserved extents that need to be freed. This must be called with |
| 5384 | * BTRFS_I(inode)->lock held. |
| 5385 | */ |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5386 | static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5387 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5388 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5389 | unsigned dropped_extents = 0; |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5390 | unsigned num_extents = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5391 | |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5392 | num_extents = (unsigned)div64_u64(num_bytes + |
| 5393 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5394 | BTRFS_MAX_EXTENT_SIZE); |
| 5395 | ASSERT(num_extents); |
| 5396 | ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents); |
| 5397 | BTRFS_I(inode)->outstanding_extents -= num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5398 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5399 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5400 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5401 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5402 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5403 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5404 | /* |
| 5405 | * If we have more or the same amount of outsanding extents than we have |
| 5406 | * reserved then we need to leave the reserved extents count alone. |
| 5407 | */ |
| 5408 | if (BTRFS_I(inode)->outstanding_extents >= |
| 5409 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5410 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5411 | |
| 5412 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 5413 | BTRFS_I(inode)->outstanding_extents; |
| 5414 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5415 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5416 | } |
| 5417 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5418 | /** |
| 5419 | * calc_csum_metadata_size - return the amount of metada space that must be |
| 5420 | * reserved/free'd for the given bytes. |
| 5421 | * @inode: the inode we're manipulating |
| 5422 | * @num_bytes: the number of bytes in question |
| 5423 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5424 | * |
| 5425 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5426 | * correct amount of metadata that must either be reserved or freed. We |
| 5427 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5428 | * number of bytes that will need to be checksumed by this value to figure out |
| 5429 | * how many checksums will be required. If we are adding bytes then the number |
| 5430 | * may go up and we will return the number of additional bytes that must be |
| 5431 | * reserved. If it is going down we will return the number of bytes that must |
| 5432 | * be freed. |
| 5433 | * |
| 5434 | * This must be called with BTRFS_I(inode)->lock held. |
| 5435 | */ |
| 5436 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 5437 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5438 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5439 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 5440 | u64 old_csums, num_csums; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5441 | |
| 5442 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 5443 | BTRFS_I(inode)->csum_bytes == 0) |
| 5444 | return 0; |
| 5445 | |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5446 | old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5447 | if (reserve) |
| 5448 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 5449 | else |
| 5450 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5451 | num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5452 | |
| 5453 | /* No change, no need to reserve more */ |
| 5454 | if (old_csums == num_csums) |
| 5455 | return 0; |
| 5456 | |
| 5457 | if (reserve) |
| 5458 | return btrfs_calc_trans_metadata_size(root, |
| 5459 | num_csums - old_csums); |
| 5460 | |
| 5461 | return btrfs_calc_trans_metadata_size(root, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5462 | } |
| 5463 | |
| 5464 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 5465 | { |
| 5466 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5467 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5468 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5469 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5470 | unsigned nr_extents = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5471 | int extra_reserve = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5472 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5473 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5474 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5475 | u64 to_free = 0; |
| 5476 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5477 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5478 | /* If we are a free space inode we need to not flush since we will be in |
| 5479 | * the middle of a transaction commit. We also don't need the delalloc |
| 5480 | * mutex since we won't race with anybody. We need this mostly to make |
| 5481 | * lockdep shut its filthy mouth. |
| 5482 | */ |
| 5483 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5484 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5485 | delalloc_lock = false; |
| 5486 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5487 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5488 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 5489 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5490 | schedule_timeout(1); |
| 5491 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5492 | if (delalloc_lock) |
| 5493 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 5494 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5495 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5496 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5497 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 6a41dd0 | 2015-03-13 15:12:23 -0400 | [diff] [blame] | 5498 | nr_extents = (unsigned)div64_u64(num_bytes + |
| 5499 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5500 | BTRFS_MAX_EXTENT_SIZE); |
| 5501 | BTRFS_I(inode)->outstanding_extents += nr_extents; |
| 5502 | nr_extents = 0; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5503 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5504 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5505 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5506 | nr_extents = BTRFS_I(inode)->outstanding_extents - |
| 5507 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5508 | |
| 5509 | /* |
| 5510 | * Add an item to reserve for updating the inode when we complete the |
| 5511 | * delalloc io. |
| 5512 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5513 | if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5514 | &BTRFS_I(inode)->runtime_flags)) { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5515 | nr_extents++; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5516 | extra_reserve = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5517 | } |
| 5518 | |
| 5519 | to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5520 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5521 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5522 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5523 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5524 | if (root->fs_info->quota_enabled) { |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 5525 | ret = btrfs_qgroup_reserve(root, nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5526 | if (ret) |
| 5527 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5528 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5529 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5530 | ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush); |
| 5531 | if (unlikely(ret)) { |
| 5532 | if (root->fs_info->quota_enabled) |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 5533 | btrfs_qgroup_free(root, nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5534 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5535 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5536 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5537 | spin_lock(&BTRFS_I(inode)->lock); |
| 5538 | if (extra_reserve) { |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5539 | set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5540 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5541 | nr_extents--; |
| 5542 | } |
| 5543 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 5544 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5545 | |
| 5546 | if (delalloc_lock) |
| 5547 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5548 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5549 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 5550 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5551 | btrfs_ino(inode), to_reserve, 1); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5552 | block_rsv_add_bytes(block_rsv, to_reserve, 1); |
| 5553 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5554 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5555 | |
| 5556 | out_fail: |
| 5557 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5558 | dropped = drop_outstanding_extent(inode, num_bytes); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5559 | /* |
| 5560 | * If the inodes csum_bytes is the same as the original |
| 5561 | * csum_bytes then we know we haven't raced with any free()ers |
| 5562 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5563 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5564 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5565 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5566 | } else { |
| 5567 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 5568 | u64 bytes; |
| 5569 | |
| 5570 | /* |
| 5571 | * This is tricky, but first we need to figure out how much we |
| 5572 | * free'd from any free-ers that occured during this |
| 5573 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 5574 | * before we dropped our lock, and then call the free for the |
| 5575 | * number of bytes that were freed while we were trying our |
| 5576 | * reservation. |
| 5577 | */ |
| 5578 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 5579 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 5580 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 5581 | |
| 5582 | |
| 5583 | /* |
| 5584 | * Now we need to see how much we would have freed had we not |
| 5585 | * been making this reservation and our ->csum_bytes were not |
| 5586 | * artificially inflated. |
| 5587 | */ |
| 5588 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 5589 | bytes = csum_bytes - orig_csum_bytes; |
| 5590 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 5591 | |
| 5592 | /* |
| 5593 | * Now reset ->csum_bytes to what it should be. If bytes is |
| 5594 | * more than to_free then we would have free'd more space had we |
| 5595 | * not had an artificially high ->csum_bytes, so we need to free |
| 5596 | * the remainder. If bytes is the same or less then we don't |
| 5597 | * need to do anything, the other free-ers did the correct |
| 5598 | * thing. |
| 5599 | */ |
| 5600 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 5601 | if (bytes > to_free) |
| 5602 | to_free = bytes - to_free; |
| 5603 | else |
| 5604 | to_free = 0; |
| 5605 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5606 | spin_unlock(&BTRFS_I(inode)->lock); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 5607 | if (dropped) |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5608 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
| 5609 | |
| 5610 | if (to_free) { |
| 5611 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 5612 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5613 | btrfs_ino(inode), to_free, 0); |
| 5614 | } |
| 5615 | if (delalloc_lock) |
| 5616 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 5617 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5618 | } |
| 5619 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5620 | /** |
| 5621 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 5622 | * @inode: the inode to release the reservation for |
| 5623 | * @num_bytes: the number of bytes we're releasing |
| 5624 | * |
| 5625 | * This will release the metadata reservation for an inode. This can be called |
| 5626 | * once we complete IO for a given set of bytes to release their metadata |
| 5627 | * reservations. |
| 5628 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5629 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 5630 | { |
| 5631 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5632 | u64 to_free = 0; |
| 5633 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5634 | |
| 5635 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5636 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5637 | dropped = drop_outstanding_extent(inode, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5638 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 5639 | if (num_bytes) |
| 5640 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5641 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5642 | if (dropped > 0) |
| 5643 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5644 | |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 5645 | if (btrfs_test_is_dummy_root(root)) |
| 5646 | return; |
| 5647 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5648 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5649 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5650 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5651 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 5652 | to_free); |
| 5653 | } |
| 5654 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5655 | /** |
| 5656 | * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc |
| 5657 | * @inode: inode we're writing to |
| 5658 | * @num_bytes: the number of bytes we want to allocate |
| 5659 | * |
| 5660 | * This will do the following things |
| 5661 | * |
| 5662 | * o reserve space in the data space info for num_bytes |
| 5663 | * o reserve space in the metadata space info based on number of outstanding |
| 5664 | * extents and how much csums will be needed |
| 5665 | * o add to the inodes ->delalloc_bytes |
| 5666 | * o add it to the fs_info's delalloc inodes list. |
| 5667 | * |
| 5668 | * This will return 0 for success and -ENOSPC if there is no space left. |
| 5669 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5670 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes) |
| 5671 | { |
| 5672 | int ret; |
| 5673 | |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 5674 | ret = btrfs_check_data_free_space(inode, num_bytes, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5675 | if (ret) |
| 5676 | return ret; |
| 5677 | |
| 5678 | ret = btrfs_delalloc_reserve_metadata(inode, num_bytes); |
| 5679 | if (ret) { |
| 5680 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5681 | return ret; |
| 5682 | } |
| 5683 | |
| 5684 | return 0; |
| 5685 | } |
| 5686 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5687 | /** |
| 5688 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
| 5689 | * @inode: inode we're releasing space for |
| 5690 | * @num_bytes: the number of bytes we want to free up |
| 5691 | * |
| 5692 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 5693 | * called in the case that we don't need the metadata AND data reservations |
| 5694 | * anymore. So if there is an error or we insert an inline extent. |
| 5695 | * |
| 5696 | * This function will release the metadata space that was not used and will |
| 5697 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 5698 | * list if there are no delalloc bytes left. |
| 5699 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5700 | void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes) |
| 5701 | { |
| 5702 | btrfs_delalloc_release_metadata(inode, num_bytes); |
| 5703 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5704 | } |
| 5705 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 5706 | static int update_block_group(struct btrfs_trans_handle *trans, |
| 5707 | struct btrfs_root *root, u64 bytenr, |
| 5708 | u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5709 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5710 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5711 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5712 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5713 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5714 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5715 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 5716 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5717 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5718 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5719 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5720 | if (alloc) |
| 5721 | old_val += num_bytes; |
| 5722 | else |
| 5723 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5724 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5725 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5726 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5727 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5728 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5729 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5730 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5731 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 5732 | BTRFS_BLOCK_GROUP_RAID1 | |
| 5733 | BTRFS_BLOCK_GROUP_RAID10)) |
| 5734 | factor = 2; |
| 5735 | else |
| 5736 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 5737 | /* |
| 5738 | * If this block group has free space cache written out, we |
| 5739 | * need to make sure to load it if we are removing space. This |
| 5740 | * is because we need the unpinning stage to actually add the |
| 5741 | * space back to the block group, otherwise we will leak space. |
| 5742 | */ |
| 5743 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5744 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5745 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5746 | byte_in_group = bytenr - cache->key.objectid; |
| 5747 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5748 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5749 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5750 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5751 | |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 5752 | if (btrfs_test_opt(root, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5753 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 5754 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 5755 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5756 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5757 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5758 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5759 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5760 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5761 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5762 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5763 | cache->space_info->bytes_used += num_bytes; |
| 5764 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5765 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5766 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5767 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5768 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 5769 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5770 | cache->pinned += num_bytes; |
| 5771 | cache->space_info->bytes_pinned += num_bytes; |
| 5772 | cache->space_info->bytes_used -= num_bytes; |
| 5773 | cache->space_info->disk_used -= num_bytes * factor; |
| 5774 | spin_unlock(&cache->lock); |
| 5775 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 5776 | |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 5777 | set_extent_dirty(info->pinned_extents, |
| 5778 | bytenr, bytenr + num_bytes - 1, |
| 5779 | GFP_NOFS | __GFP_NOFAIL); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 5780 | /* |
| 5781 | * No longer have used bytes in this block group, queue |
| 5782 | * it for deletion. |
| 5783 | */ |
| 5784 | if (old_val == 0) { |
| 5785 | spin_lock(&info->unused_bgs_lock); |
| 5786 | if (list_empty(&cache->bg_list)) { |
| 5787 | btrfs_get_block_group(cache); |
| 5788 | list_add_tail(&cache->bg_list, |
| 5789 | &info->unused_bgs); |
| 5790 | } |
| 5791 | spin_unlock(&info->unused_bgs_lock); |
| 5792 | } |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5793 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 5794 | |
| 5795 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 5796 | if (list_empty(&cache->dirty_list)) { |
| 5797 | list_add_tail(&cache->dirty_list, |
| 5798 | &trans->transaction->dirty_bgs); |
| 5799 | trans->transaction->num_dirty_bgs++; |
| 5800 | btrfs_get_block_group(cache); |
| 5801 | } |
| 5802 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 5803 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5804 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5805 | total -= num_bytes; |
| 5806 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5807 | } |
| 5808 | return 0; |
| 5809 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 5810 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5811 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 5812 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5813 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5814 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5815 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 5816 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 5817 | bytenr = root->fs_info->first_logical_byte; |
| 5818 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 5819 | |
| 5820 | if (bytenr < (u64)-1) |
| 5821 | return bytenr; |
| 5822 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5823 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 5824 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5825 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5826 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5827 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5828 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5829 | |
| 5830 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5831 | } |
| 5832 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5833 | static int pin_down_extent(struct btrfs_root *root, |
| 5834 | struct btrfs_block_group_cache *cache, |
| 5835 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5836 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5837 | spin_lock(&cache->space_info->lock); |
| 5838 | spin_lock(&cache->lock); |
| 5839 | cache->pinned += num_bytes; |
| 5840 | cache->space_info->bytes_pinned += num_bytes; |
| 5841 | if (reserved) { |
| 5842 | cache->reserved -= num_bytes; |
| 5843 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5844 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5845 | spin_unlock(&cache->lock); |
| 5846 | spin_unlock(&cache->space_info->lock); |
| 5847 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5848 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 5849 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 5850 | if (reserved) |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 5851 | trace_btrfs_reserved_extent_free(root, bytenr, num_bytes); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5852 | return 0; |
| 5853 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5854 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5855 | /* |
| 5856 | * this function must be called within transaction |
| 5857 | */ |
| 5858 | int btrfs_pin_extent(struct btrfs_root *root, |
| 5859 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5860 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5861 | struct btrfs_block_group_cache *cache; |
| 5862 | |
| 5863 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5864 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5865 | |
| 5866 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 5867 | |
| 5868 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5869 | return 0; |
| 5870 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5871 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5872 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5873 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5874 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 5875 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5876 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5877 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5878 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5879 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5880 | |
| 5881 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5882 | if (!cache) |
| 5883 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5884 | |
| 5885 | /* |
| 5886 | * pull in the free space cache (if any) so that our pin |
| 5887 | * removes the free space from the cache. We have load_only set |
| 5888 | * to one because the slow code to read in the free extents does check |
| 5889 | * the pinned extents. |
| 5890 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5891 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5892 | |
| 5893 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 5894 | |
| 5895 | /* remove us from the free space cache (if we're there at all) */ |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5896 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5897 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5898 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5899 | } |
| 5900 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 5901 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 5902 | { |
| 5903 | int ret; |
| 5904 | struct btrfs_block_group_cache *block_group; |
| 5905 | struct btrfs_caching_control *caching_ctl; |
| 5906 | |
| 5907 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 5908 | if (!block_group) |
| 5909 | return -EINVAL; |
| 5910 | |
| 5911 | cache_block_group(block_group, 0); |
| 5912 | caching_ctl = get_caching_control(block_group); |
| 5913 | |
| 5914 | if (!caching_ctl) { |
| 5915 | /* Logic error */ |
| 5916 | BUG_ON(!block_group_cache_done(block_group)); |
| 5917 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 5918 | } else { |
| 5919 | mutex_lock(&caching_ctl->mutex); |
| 5920 | |
| 5921 | if (start >= caching_ctl->progress) { |
| 5922 | ret = add_excluded_extent(root, start, num_bytes); |
| 5923 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 5924 | ret = btrfs_remove_free_space(block_group, |
| 5925 | start, num_bytes); |
| 5926 | } else { |
| 5927 | num_bytes = caching_ctl->progress - start; |
| 5928 | ret = btrfs_remove_free_space(block_group, |
| 5929 | start, num_bytes); |
| 5930 | if (ret) |
| 5931 | goto out_lock; |
| 5932 | |
| 5933 | num_bytes = (start + num_bytes) - |
| 5934 | caching_ctl->progress; |
| 5935 | start = caching_ctl->progress; |
| 5936 | ret = add_excluded_extent(root, start, num_bytes); |
| 5937 | } |
| 5938 | out_lock: |
| 5939 | mutex_unlock(&caching_ctl->mutex); |
| 5940 | put_caching_control(caching_ctl); |
| 5941 | } |
| 5942 | btrfs_put_block_group(block_group); |
| 5943 | return ret; |
| 5944 | } |
| 5945 | |
| 5946 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 5947 | struct extent_buffer *eb) |
| 5948 | { |
| 5949 | struct btrfs_file_extent_item *item; |
| 5950 | struct btrfs_key key; |
| 5951 | int found_type; |
| 5952 | int i; |
| 5953 | |
| 5954 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 5955 | return 0; |
| 5956 | |
| 5957 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 5958 | btrfs_item_key_to_cpu(eb, &key, i); |
| 5959 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 5960 | continue; |
| 5961 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 5962 | found_type = btrfs_file_extent_type(eb, item); |
| 5963 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 5964 | continue; |
| 5965 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 5966 | continue; |
| 5967 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 5968 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 5969 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 5970 | } |
| 5971 | |
| 5972 | return 0; |
| 5973 | } |
| 5974 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5975 | /** |
| 5976 | * btrfs_update_reserved_bytes - update the block_group and space info counters |
| 5977 | * @cache: The cache we are manipulating |
| 5978 | * @num_bytes: The number of bytes in question |
| 5979 | * @reserve: One of the reservation enums |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5980 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5981 | * |
| 5982 | * This is called by the allocator when it reserves space, or by somebody who is |
| 5983 | * freeing space that was never actually used on disk. For example if you |
| 5984 | * reserve some space for a new leaf in transaction A and before transaction A |
| 5985 | * commits you free that leaf, you call this with reserve set to 0 in order to |
| 5986 | * clear the reservation. |
| 5987 | * |
| 5988 | * Metadata reservations should be called with RESERVE_ALLOC so we do the proper |
| 5989 | * ENOSPC accounting. For data we handle the reservation through clearing the |
| 5990 | * delalloc bits in the io_tree. We have to do this since we could end up |
| 5991 | * allocating less disk space for the amount of data we have reserved in the |
| 5992 | * case of compression. |
| 5993 | * |
| 5994 | * If this is a reservation and the block group has become read only we cannot |
| 5995 | * make the reservation and return -EAGAIN, otherwise this function always |
| 5996 | * succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5997 | */ |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5998 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5999 | u64 num_bytes, int reserve, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6000 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6001 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6002 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6003 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6004 | spin_lock(&space_info->lock); |
| 6005 | spin_lock(&cache->lock); |
| 6006 | if (reserve != RESERVE_FREE) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6007 | if (cache->ro) { |
| 6008 | ret = -EAGAIN; |
| 6009 | } else { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6010 | cache->reserved += num_bytes; |
| 6011 | space_info->bytes_reserved += num_bytes; |
| 6012 | if (reserve == RESERVE_ALLOC) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6013 | trace_btrfs_space_reservation(cache->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 6014 | "space_info", space_info->flags, |
| 6015 | num_bytes, 0); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6016 | space_info->bytes_may_use -= num_bytes; |
| 6017 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6018 | |
| 6019 | if (delalloc) |
| 6020 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6021 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6022 | } else { |
| 6023 | if (cache->ro) |
| 6024 | space_info->bytes_readonly += num_bytes; |
| 6025 | cache->reserved -= num_bytes; |
| 6026 | space_info->bytes_reserved -= num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6027 | |
| 6028 | if (delalloc) |
| 6029 | cache->delalloc_bytes -= num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6030 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6031 | spin_unlock(&cache->lock); |
| 6032 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6033 | return ret; |
| 6034 | } |
| 6035 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6036 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6037 | struct btrfs_root *root) |
| 6038 | { |
| 6039 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6040 | struct btrfs_caching_control *next; |
| 6041 | struct btrfs_caching_control *caching_ctl; |
| 6042 | struct btrfs_block_group_cache *cache; |
| 6043 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6044 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6045 | |
| 6046 | list_for_each_entry_safe(caching_ctl, next, |
| 6047 | &fs_info->caching_block_groups, list) { |
| 6048 | cache = caching_ctl->block_group; |
| 6049 | if (block_group_cache_done(cache)) { |
| 6050 | cache->last_byte_to_unpin = (u64)-1; |
| 6051 | list_del_init(&caching_ctl->list); |
| 6052 | put_caching_control(caching_ctl); |
| 6053 | } else { |
| 6054 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6055 | } |
| 6056 | } |
| 6057 | |
| 6058 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6059 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6060 | else |
| 6061 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6062 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6063 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6064 | |
| 6065 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6066 | } |
| 6067 | |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6068 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end, |
| 6069 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6070 | { |
| 6071 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6072 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6073 | struct btrfs_space_info *space_info; |
| 6074 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6075 | u64 len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6076 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6077 | |
| 6078 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6079 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6080 | if (!cache || |
| 6081 | start >= cache->key.objectid + cache->key.offset) { |
| 6082 | if (cache) |
| 6083 | btrfs_put_block_group(cache); |
| 6084 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6085 | BUG_ON(!cache); /* Logic error */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6086 | } |
| 6087 | |
| 6088 | len = cache->key.objectid + cache->key.offset - start; |
| 6089 | len = min(len, end + 1 - start); |
| 6090 | |
| 6091 | if (start < cache->last_byte_to_unpin) { |
| 6092 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6093 | if (return_free_space) |
| 6094 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6095 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6096 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6097 | start += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6098 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6099 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6100 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6101 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6102 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6103 | space_info->bytes_pinned -= len; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 6104 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6105 | if (cache->ro) { |
| 6106 | space_info->bytes_readonly += len; |
| 6107 | readonly = true; |
| 6108 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6109 | spin_unlock(&cache->lock); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6110 | if (!readonly && global_rsv->space_info == space_info) { |
| 6111 | spin_lock(&global_rsv->lock); |
| 6112 | if (!global_rsv->full) { |
| 6113 | len = min(len, global_rsv->size - |
| 6114 | global_rsv->reserved); |
| 6115 | global_rsv->reserved += len; |
| 6116 | space_info->bytes_may_use += len; |
| 6117 | if (global_rsv->reserved >= global_rsv->size) |
| 6118 | global_rsv->full = 1; |
| 6119 | } |
| 6120 | spin_unlock(&global_rsv->lock); |
| 6121 | } |
| 6122 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6123 | } |
| 6124 | |
| 6125 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6126 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6127 | return 0; |
| 6128 | } |
| 6129 | |
| 6130 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6131 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6132 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6133 | struct btrfs_fs_info *fs_info = root->fs_info; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame^] | 6134 | struct btrfs_block_group_cache *block_group, *tmp; |
| 6135 | struct list_head *deleted_bgs; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6136 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6137 | u64 start; |
| 6138 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6139 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6140 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6141 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6142 | unpin = &fs_info->freed_extents[1]; |
| 6143 | else |
| 6144 | unpin = &fs_info->freed_extents[0]; |
| 6145 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame^] | 6146 | while (!trans->aborted) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6147 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6148 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 6149 | EXTENT_DIRTY, NULL); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6150 | if (ret) { |
| 6151 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6152 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6153 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6154 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6155 | if (btrfs_test_opt(root, DISCARD)) |
| 6156 | ret = btrfs_discard_extent(root, start, |
| 6157 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6158 | |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6159 | clear_extent_dirty(unpin, start, end, GFP_NOFS); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6160 | unpin_extent_range(root, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6161 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6162 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6163 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6164 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame^] | 6165 | /* |
| 6166 | * Transaction is finished. We don't need the lock anymore. We |
| 6167 | * do need to clean up the block groups in case of a transaction |
| 6168 | * abort. |
| 6169 | */ |
| 6170 | deleted_bgs = &trans->transaction->deleted_bgs; |
| 6171 | list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) { |
| 6172 | u64 trimmed = 0; |
| 6173 | |
| 6174 | ret = -EROFS; |
| 6175 | if (!trans->aborted) |
| 6176 | ret = btrfs_discard_extent(root, |
| 6177 | block_group->key.objectid, |
| 6178 | block_group->key.offset, |
| 6179 | &trimmed); |
| 6180 | |
| 6181 | list_del_init(&block_group->bg_list); |
| 6182 | btrfs_put_block_group_trimming(block_group); |
| 6183 | btrfs_put_block_group(block_group); |
| 6184 | |
| 6185 | if (ret) { |
| 6186 | const char *errstr = btrfs_decode_error(ret); |
| 6187 | btrfs_warn(fs_info, |
| 6188 | "Discard failed while removing blockgroup: errno=%d %s\n", |
| 6189 | ret, errstr); |
| 6190 | } |
| 6191 | } |
| 6192 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6193 | return 0; |
| 6194 | } |
| 6195 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6196 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 6197 | u64 owner, u64 root_objectid) |
| 6198 | { |
| 6199 | struct btrfs_space_info *space_info; |
| 6200 | u64 flags; |
| 6201 | |
| 6202 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 6203 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 6204 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 6205 | else |
| 6206 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 6207 | } else { |
| 6208 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 6209 | } |
| 6210 | |
| 6211 | space_info = __find_space_info(fs_info, flags); |
| 6212 | BUG_ON(!space_info); /* Logic bug */ |
| 6213 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 6214 | } |
| 6215 | |
| 6216 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6217 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 6218 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6219 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6220 | u64 root_objectid, u64 owner_objectid, |
| 6221 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6222 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6223 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6224 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6225 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6226 | struct btrfs_fs_info *info = root->fs_info; |
| 6227 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6228 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6229 | struct btrfs_extent_item *ei; |
| 6230 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6231 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6232 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6233 | int extent_slot = 0; |
| 6234 | int found_extent = 0; |
| 6235 | int num_to_del = 1; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6236 | int no_quota = node->no_quota; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6237 | u32 item_size; |
| 6238 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6239 | u64 bytenr = node->bytenr; |
| 6240 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6241 | int last_ref = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6242 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 6243 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6244 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6245 | if (!info->quota_enabled || !is_fstree(root_objectid)) |
| 6246 | no_quota = 1; |
| 6247 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6248 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6249 | if (!path) |
| 6250 | return -ENOMEM; |
| 6251 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 6252 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6253 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6254 | |
| 6255 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6256 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6257 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6258 | if (is_data) |
| 6259 | skinny_metadata = 0; |
| 6260 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6261 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 6262 | bytenr, num_bytes, parent, |
| 6263 | root_objectid, owner_objectid, |
| 6264 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6265 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6266 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6267 | while (extent_slot >= 0) { |
| 6268 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6269 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6270 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6271 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6272 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6273 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6274 | found_extent = 1; |
| 6275 | break; |
| 6276 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6277 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6278 | key.offset == owner_objectid) { |
| 6279 | found_extent = 1; |
| 6280 | break; |
| 6281 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6282 | if (path->slots[0] - extent_slot > 5) |
| 6283 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6284 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6285 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6286 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6287 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 6288 | if (found_extent && item_size < sizeof(*ei)) |
| 6289 | found_extent = 0; |
| 6290 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6291 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6292 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6293 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6294 | NULL, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6295 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6296 | if (ret) { |
| 6297 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6298 | goto out; |
| 6299 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6300 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6301 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6302 | |
| 6303 | key.objectid = bytenr; |
| 6304 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6305 | key.offset = num_bytes; |
| 6306 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6307 | if (!is_data && skinny_metadata) { |
| 6308 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6309 | key.offset = owner_objectid; |
| 6310 | } |
| 6311 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6312 | ret = btrfs_search_slot(trans, extent_root, |
| 6313 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6314 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6315 | /* |
| 6316 | * Couldn't find our skinny metadata item, |
| 6317 | * see if we have ye olde extent item. |
| 6318 | */ |
| 6319 | path->slots[0]--; |
| 6320 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6321 | path->slots[0]); |
| 6322 | if (key.objectid == bytenr && |
| 6323 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6324 | key.offset == num_bytes) |
| 6325 | ret = 0; |
| 6326 | } |
| 6327 | |
| 6328 | if (ret > 0 && skinny_metadata) { |
| 6329 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6330 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6331 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6332 | key.offset = num_bytes; |
| 6333 | btrfs_release_path(path); |
| 6334 | ret = btrfs_search_slot(trans, extent_root, |
| 6335 | &key, path, -1, 1); |
| 6336 | } |
| 6337 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6338 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6339 | btrfs_err(info, "umm, got %d back from search, was looking for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6340 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6341 | if (ret > 0) |
| 6342 | btrfs_print_leaf(extent_root, |
| 6343 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6344 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6345 | if (ret < 0) { |
| 6346 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6347 | goto out; |
| 6348 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6349 | extent_slot = path->slots[0]; |
| 6350 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6351 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6352 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6353 | btrfs_err(info, |
| 6354 | "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6355 | bytenr, parent, root_objectid, owner_objectid, |
| 6356 | owner_offset); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 6357 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6358 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6359 | } else { |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6360 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6361 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6362 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6363 | |
| 6364 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6365 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6366 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6367 | if (item_size < sizeof(*ei)) { |
| 6368 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 6369 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 6370 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6371 | if (ret < 0) { |
| 6372 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6373 | goto out; |
| 6374 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6375 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6376 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6377 | path->leave_spinning = 1; |
| 6378 | |
| 6379 | key.objectid = bytenr; |
| 6380 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6381 | key.offset = num_bytes; |
| 6382 | |
| 6383 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 6384 | -1, 1); |
| 6385 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6386 | btrfs_err(info, "umm, got %d back from search, was looking for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6387 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6388 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 6389 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6390 | if (ret < 0) { |
| 6391 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6392 | goto out; |
| 6393 | } |
| 6394 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6395 | extent_slot = path->slots[0]; |
| 6396 | leaf = path->nodes[0]; |
| 6397 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6398 | } |
| 6399 | #endif |
| 6400 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6401 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 6402 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6403 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 6404 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6405 | struct btrfs_tree_block_info *bi; |
| 6406 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 6407 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 6408 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6409 | } |
| 6410 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6411 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6412 | if (refs < refs_to_drop) { |
| 6413 | btrfs_err(info, "trying to drop %d refs but we only have %Lu " |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 6414 | "for bytenr %Lu", refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6415 | ret = -EINVAL; |
| 6416 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6417 | goto out; |
| 6418 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6419 | refs -= refs_to_drop; |
| 6420 | |
| 6421 | if (refs > 0) { |
| 6422 | if (extent_op) |
| 6423 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 6424 | /* |
| 6425 | * In the case of inline back ref, reference count will |
| 6426 | * be updated by remove_extent_backref |
| 6427 | */ |
| 6428 | if (iref) { |
| 6429 | BUG_ON(!found_extent); |
| 6430 | } else { |
| 6431 | btrfs_set_extent_refs(leaf, ei, refs); |
| 6432 | btrfs_mark_buffer_dirty(leaf); |
| 6433 | } |
| 6434 | if (found_extent) { |
| 6435 | ret = remove_extent_backref(trans, extent_root, path, |
| 6436 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6437 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6438 | if (ret) { |
| 6439 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6440 | goto out; |
| 6441 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6442 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6443 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 6444 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6445 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6446 | if (found_extent) { |
| 6447 | BUG_ON(is_data && refs_to_drop != |
| 6448 | extent_data_ref_count(root, path, iref)); |
| 6449 | if (iref) { |
| 6450 | BUG_ON(path->slots[0] != extent_slot); |
| 6451 | } else { |
| 6452 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 6453 | path->slots[0] = extent_slot; |
| 6454 | num_to_del = 2; |
| 6455 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 6456 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6457 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6458 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6459 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 6460 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6461 | if (ret) { |
| 6462 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6463 | goto out; |
| 6464 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6465 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 6466 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6467 | if (is_data) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6468 | ret = btrfs_del_csums(trans, root, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6469 | if (ret) { |
| 6470 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6471 | goto out; |
| 6472 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6473 | } |
| 6474 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6475 | ret = update_block_group(trans, root, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6476 | if (ret) { |
| 6477 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6478 | goto out; |
| 6479 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6480 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6481 | btrfs_release_path(path); |
| 6482 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6483 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6484 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6485 | return ret; |
| 6486 | } |
| 6487 | |
| 6488 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6489 | * when we free an block, it is possible (and likely) that we free the last |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6490 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 6491 | * a given extent, and if there are no other delayed refs to be processed, it |
| 6492 | * removes it from the tree. |
| 6493 | */ |
| 6494 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 6495 | struct btrfs_root *root, u64 bytenr) |
| 6496 | { |
| 6497 | struct btrfs_delayed_ref_head *head; |
| 6498 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6499 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6500 | |
| 6501 | delayed_refs = &trans->transaction->delayed_refs; |
| 6502 | spin_lock(&delayed_refs->lock); |
| 6503 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 6504 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6505 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6506 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6507 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 6508 | if (!list_empty(&head->ref_list)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6509 | goto out; |
| 6510 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6511 | if (head->extent_op) { |
| 6512 | if (!head->must_insert_reserved) |
| 6513 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 6514 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6515 | head->extent_op = NULL; |
| 6516 | } |
| 6517 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6518 | /* |
| 6519 | * waiting for the lock here would deadlock. If someone else has it |
| 6520 | * locked they are already in the process of dropping it anyway |
| 6521 | */ |
| 6522 | if (!mutex_trylock(&head->mutex)) |
| 6523 | goto out; |
| 6524 | |
| 6525 | /* |
| 6526 | * at this point we have a head with no other entries. Go |
| 6527 | * ahead and process it. |
| 6528 | */ |
| 6529 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 6530 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6531 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6532 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6533 | |
| 6534 | /* |
| 6535 | * we don't take a ref on the node because we're removing it from the |
| 6536 | * tree, so we just steal the ref the tree was holding. |
| 6537 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6538 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6539 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6540 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6541 | head->processing = 0; |
| 6542 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6543 | spin_unlock(&delayed_refs->lock); |
| 6544 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6545 | BUG_ON(head->extent_op); |
| 6546 | if (head->must_insert_reserved) |
| 6547 | ret = 1; |
| 6548 | |
| 6549 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6550 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6551 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6552 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6553 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6554 | |
| 6555 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6556 | spin_unlock(&delayed_refs->lock); |
| 6557 | return 0; |
| 6558 | } |
| 6559 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6560 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 6561 | struct btrfs_root *root, |
| 6562 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6563 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6564 | { |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6565 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6566 | int ret; |
| 6567 | |
| 6568 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6569 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 6570 | buf->start, buf->len, |
| 6571 | parent, root->root_key.objectid, |
| 6572 | btrfs_header_level(buf), |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6573 | BTRFS_DROP_DELAYED_REF, NULL, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6574 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6575 | } |
| 6576 | |
| 6577 | if (!last_ref) |
| 6578 | return; |
| 6579 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6580 | if (btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6581 | struct btrfs_block_group_cache *cache; |
| 6582 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6583 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 6584 | ret = check_ref_cleanup(trans, root, buf->start); |
| 6585 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6586 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6587 | } |
| 6588 | |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6589 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
| 6590 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6591 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 6592 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6593 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6594 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6595 | } |
| 6596 | |
| 6597 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 6598 | |
| 6599 | btrfs_add_free_space(cache, buf->start, buf->len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6600 | btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6601 | btrfs_put_block_group(cache); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6602 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6603 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6604 | } |
| 6605 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6606 | if (pin) |
| 6607 | add_pinned_bytes(root->fs_info, buf->len, |
| 6608 | btrfs_header_level(buf), |
| 6609 | root->root_key.objectid); |
| 6610 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 6611 | /* |
| 6612 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 6613 | * anymore. |
| 6614 | */ |
| 6615 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6616 | } |
| 6617 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6618 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6619 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6620 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6621 | u64 owner, u64 offset, int no_quota) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6622 | { |
| 6623 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6624 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6625 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 6626 | if (btrfs_test_is_dummy_root(root)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 6627 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 6628 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6629 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 6630 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6631 | /* |
| 6632 | * tree log blocks never actually go into the extent allocation |
| 6633 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6634 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6635 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 6636 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6637 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6638 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6639 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6640 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6641 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 6642 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6643 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6644 | BTRFS_DROP_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6645 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6646 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 6647 | num_bytes, |
| 6648 | parent, root_objectid, owner, |
| 6649 | offset, BTRFS_DROP_DELAYED_REF, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6650 | NULL, no_quota); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6651 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6652 | return ret; |
| 6653 | } |
| 6654 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6655 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6656 | * when we wait for progress in the block group caching, its because |
| 6657 | * our allocation attempt failed at least once. So, we must sleep |
| 6658 | * and let some progress happen before we try again. |
| 6659 | * |
| 6660 | * This function will sleep at least once waiting for new free space to |
| 6661 | * show up, and then it will check the block group free space numbers |
| 6662 | * for our min num_bytes. Another option is to have it go ahead |
| 6663 | * and look in the rbtree for a free extent of a given size, but this |
| 6664 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6665 | * |
| 6666 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 6667 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6668 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6669 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6670 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 6671 | u64 num_bytes) |
| 6672 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6673 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6674 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6675 | caching_ctl = get_caching_control(cache); |
| 6676 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6677 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6678 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6679 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 6680 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6681 | |
| 6682 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6683 | } |
| 6684 | |
| 6685 | static noinline int |
| 6686 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 6687 | { |
| 6688 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6689 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6690 | |
| 6691 | caching_ctl = get_caching_control(cache); |
| 6692 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6693 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6694 | |
| 6695 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6696 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 6697 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6698 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6699 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6700 | } |
| 6701 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6702 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6703 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6704 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6705 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6706 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6707 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6708 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6709 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6710 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6711 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6712 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6713 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6714 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6715 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6716 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6717 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6718 | } |
| 6719 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6720 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6721 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6722 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6723 | } |
| 6724 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6725 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 6726 | [BTRFS_RAID_RAID10] = "raid10", |
| 6727 | [BTRFS_RAID_RAID1] = "raid1", |
| 6728 | [BTRFS_RAID_DUP] = "dup", |
| 6729 | [BTRFS_RAID_RAID0] = "raid0", |
| 6730 | [BTRFS_RAID_SINGLE] = "single", |
| 6731 | [BTRFS_RAID_RAID5] = "raid5", |
| 6732 | [BTRFS_RAID_RAID6] = "raid6", |
| 6733 | }; |
| 6734 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 6735 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6736 | { |
| 6737 | if (type >= BTRFS_NR_RAID_TYPES) |
| 6738 | return NULL; |
| 6739 | |
| 6740 | return btrfs_raid_type_names[type]; |
| 6741 | } |
| 6742 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6743 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6744 | LOOP_CACHING_NOWAIT = 0, |
| 6745 | LOOP_CACHING_WAIT = 1, |
| 6746 | LOOP_ALLOC_CHUNK = 2, |
| 6747 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6748 | }; |
| 6749 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6750 | static inline void |
| 6751 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 6752 | int delalloc) |
| 6753 | { |
| 6754 | if (delalloc) |
| 6755 | down_read(&cache->data_rwsem); |
| 6756 | } |
| 6757 | |
| 6758 | static inline void |
| 6759 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 6760 | int delalloc) |
| 6761 | { |
| 6762 | btrfs_get_block_group(cache); |
| 6763 | if (delalloc) |
| 6764 | down_read(&cache->data_rwsem); |
| 6765 | } |
| 6766 | |
| 6767 | static struct btrfs_block_group_cache * |
| 6768 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 6769 | struct btrfs_free_cluster *cluster, |
| 6770 | int delalloc) |
| 6771 | { |
| 6772 | struct btrfs_block_group_cache *used_bg; |
| 6773 | bool locked = false; |
| 6774 | again: |
| 6775 | spin_lock(&cluster->refill_lock); |
| 6776 | if (locked) { |
| 6777 | if (used_bg == cluster->block_group) |
| 6778 | return used_bg; |
| 6779 | |
| 6780 | up_read(&used_bg->data_rwsem); |
| 6781 | btrfs_put_block_group(used_bg); |
| 6782 | } |
| 6783 | |
| 6784 | used_bg = cluster->block_group; |
| 6785 | if (!used_bg) |
| 6786 | return NULL; |
| 6787 | |
| 6788 | if (used_bg == block_group) |
| 6789 | return used_bg; |
| 6790 | |
| 6791 | btrfs_get_block_group(used_bg); |
| 6792 | |
| 6793 | if (!delalloc) |
| 6794 | return used_bg; |
| 6795 | |
| 6796 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 6797 | return used_bg; |
| 6798 | |
| 6799 | spin_unlock(&cluster->refill_lock); |
| 6800 | down_read(&used_bg->data_rwsem); |
| 6801 | locked = true; |
| 6802 | goto again; |
| 6803 | } |
| 6804 | |
| 6805 | static inline void |
| 6806 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 6807 | int delalloc) |
| 6808 | { |
| 6809 | if (delalloc) |
| 6810 | up_read(&cache->data_rwsem); |
| 6811 | btrfs_put_block_group(cache); |
| 6812 | } |
| 6813 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6814 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6815 | * walks the btree of allocated extents and find a hole of a given size. |
| 6816 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6817 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 6818 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6819 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6820 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6821 | * |
| 6822 | * If there is no suitable free space, we will record the max size of |
| 6823 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6824 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6825 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6826 | u64 num_bytes, u64 empty_size, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6827 | u64 hint_byte, struct btrfs_key *ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6828 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6829 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6830 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6831 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6832 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6833 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 6834 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6835 | u64 max_extent_size = 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6836 | int empty_cluster = 2 * 1024 * 1024; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6837 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6838 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6839 | int index = __get_raid_index(flags); |
| 6840 | int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ? |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6841 | RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC; |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6842 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6843 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6844 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6845 | bool have_caching_bg = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6846 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6847 | WARN_ON(num_bytes < root->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 6848 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6849 | ins->objectid = 0; |
| 6850 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6851 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6852 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6853 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6854 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6855 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6856 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6857 | return -ENOSPC; |
| 6858 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6859 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6860 | /* |
| 6861 | * If the space info is for both data and metadata it means we have a |
| 6862 | * small filesystem and we can't use the clustering stuff. |
| 6863 | */ |
| 6864 | if (btrfs_mixed_space_info(space_info)) |
| 6865 | use_cluster = false; |
| 6866 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6867 | if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6868 | last_ptr = &root->fs_info->meta_alloc_cluster; |
Chris Mason | 536ac8a | 2009-02-12 09:41:38 -0500 | [diff] [blame] | 6869 | if (!btrfs_test_opt(root, SSD)) |
| 6870 | empty_cluster = 64 * 1024; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6871 | } |
| 6872 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6873 | if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster && |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6874 | btrfs_test_opt(root, SSD)) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6875 | last_ptr = &root->fs_info->data_alloc_cluster; |
| 6876 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6877 | |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6878 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6879 | spin_lock(&last_ptr->lock); |
| 6880 | if (last_ptr->block_group) |
| 6881 | hint_byte = last_ptr->window_start; |
| 6882 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6883 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6884 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6885 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6886 | search_start = max(search_start, hint_byte); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6887 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6888 | if (!last_ptr) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6889 | empty_cluster = 0; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6890 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6891 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6892 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 6893 | search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6894 | /* |
| 6895 | * we don't want to use the block group if it doesn't match our |
| 6896 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6897 | * |
| 6898 | * However if we are re-searching with an ideal block group |
| 6899 | * picked out then we don't care that the block group is cached. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6900 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6901 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6902 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6903 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6904 | if (list_empty(&block_group->list) || |
| 6905 | block_group->ro) { |
| 6906 | /* |
| 6907 | * someone is removing this block group, |
| 6908 | * we can't jump into the have_block_group |
| 6909 | * target because our list pointers are not |
| 6910 | * valid |
| 6911 | */ |
| 6912 | btrfs_put_block_group(block_group); |
| 6913 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6914 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6915 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6916 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6917 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6918 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6919 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6920 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6921 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6922 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6923 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6924 | have_caching_bg = false; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6925 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6926 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 6927 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6928 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6929 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 6930 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6931 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6932 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6933 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6934 | /* |
| 6935 | * this can happen if we end up cycling through all the |
| 6936 | * raid types, but we want to make sure we only allocate |
| 6937 | * for the proper type. |
| 6938 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6939 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6940 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 6941 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6942 | BTRFS_BLOCK_GROUP_RAID5 | |
| 6943 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6944 | BTRFS_BLOCK_GROUP_RAID10; |
| 6945 | |
| 6946 | /* |
| 6947 | * if they asked for extra copies and this block group |
| 6948 | * doesn't provide them, bail. This does allow us to |
| 6949 | * fill raid0 from raid1. |
| 6950 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6951 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6952 | goto loop; |
| 6953 | } |
| 6954 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6955 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6956 | cached = block_group_cache_done(block_group); |
| 6957 | if (unlikely(!cached)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6958 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 6959 | BUG_ON(ret < 0); |
| 6960 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6961 | } |
| 6962 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6963 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 6964 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6965 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6966 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6967 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6968 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6969 | * Ok we want to try and use the cluster allocator, so |
| 6970 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6971 | */ |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6972 | if (last_ptr) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6973 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6974 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6975 | /* |
| 6976 | * the refill lock keeps out other |
| 6977 | * people trying to start a new cluster |
| 6978 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6979 | used_block_group = btrfs_lock_cluster(block_group, |
| 6980 | last_ptr, |
| 6981 | delalloc); |
| 6982 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6983 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6984 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6985 | if (used_block_group != block_group && |
| 6986 | (used_block_group->ro || |
| 6987 | !block_group_bits(used_block_group, flags))) |
| 6988 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6989 | |
| 6990 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6991 | last_ptr, |
| 6992 | num_bytes, |
| 6993 | used_block_group->key.objectid, |
| 6994 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6995 | if (offset) { |
| 6996 | /* we have a block, we're done */ |
| 6997 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6998 | trace_btrfs_reserve_extent_cluster(root, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 6999 | used_block_group, |
| 7000 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7001 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7002 | btrfs_release_block_group(block_group, |
| 7003 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7004 | block_group = used_block_group; |
| 7005 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7006 | goto checks; |
| 7007 | } |
| 7008 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7009 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7010 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7011 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 7012 | * set up a new clusters, so lets just skip it |
| 7013 | * and let the allocator find whatever block |
| 7014 | * it can find. If we reach this point, we |
| 7015 | * will have tried the cluster allocator |
| 7016 | * plenty of times and not have found |
| 7017 | * anything, so we are likely way too |
| 7018 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7019 | * anything. |
| 7020 | * |
| 7021 | * However, if the cluster is taken from the |
| 7022 | * current block group, release the cluster |
| 7023 | * first, so that we stand a better chance of |
| 7024 | * succeeding in the unclustered |
| 7025 | * allocation. */ |
| 7026 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7027 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7028 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7029 | btrfs_release_block_group(used_block_group, |
| 7030 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7031 | goto unclustered_alloc; |
| 7032 | } |
| 7033 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7034 | /* |
| 7035 | * this cluster didn't work out, free it and |
| 7036 | * start over |
| 7037 | */ |
| 7038 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7039 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7040 | if (used_block_group != block_group) |
| 7041 | btrfs_release_block_group(used_block_group, |
| 7042 | delalloc); |
| 7043 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7044 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 7045 | spin_unlock(&last_ptr->refill_lock); |
| 7046 | goto unclustered_alloc; |
| 7047 | } |
| 7048 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7049 | aligned_cluster = max_t(unsigned long, |
| 7050 | empty_cluster + empty_size, |
| 7051 | block_group->full_stripe_len); |
| 7052 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7053 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7054 | ret = btrfs_find_space_cluster(root, block_group, |
| 7055 | last_ptr, search_start, |
| 7056 | num_bytes, |
| 7057 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7058 | if (ret == 0) { |
| 7059 | /* |
| 7060 | * now pull our allocation out of this |
| 7061 | * cluster |
| 7062 | */ |
| 7063 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7064 | last_ptr, |
| 7065 | num_bytes, |
| 7066 | search_start, |
| 7067 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7068 | if (offset) { |
| 7069 | /* we found one, proceed */ |
| 7070 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7071 | trace_btrfs_reserve_extent_cluster(root, |
| 7072 | block_group, search_start, |
| 7073 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7074 | goto checks; |
| 7075 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7076 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 7077 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7078 | spin_unlock(&last_ptr->refill_lock); |
| 7079 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7080 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7081 | wait_block_group_cache_progress(block_group, |
| 7082 | num_bytes + empty_cluster + empty_size); |
| 7083 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7084 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7085 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7086 | /* |
| 7087 | * at this point we either didn't find a cluster |
| 7088 | * or we weren't able to allocate a block from our |
| 7089 | * cluster. Free the cluster we've been trying |
| 7090 | * to use, and go to the next block group |
| 7091 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7092 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7093 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7094 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7095 | } |
| 7096 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7097 | unclustered_alloc: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7098 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 7099 | if (cached && |
| 7100 | block_group->free_space_ctl->free_space < |
| 7101 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7102 | if (block_group->free_space_ctl->free_space > |
| 7103 | max_extent_size) |
| 7104 | max_extent_size = |
| 7105 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7106 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7107 | goto loop; |
| 7108 | } |
| 7109 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7110 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7111 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7112 | num_bytes, empty_size, |
| 7113 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7114 | /* |
| 7115 | * If we didn't find a chunk, and we haven't failed on this |
| 7116 | * block group before, and this block group is in the middle of |
| 7117 | * caching and we are ok with waiting, then go ahead and wait |
| 7118 | * for progress to be made, and set failed_alloc to true. |
| 7119 | * |
| 7120 | * If failed_alloc is true then we've already waited on this |
| 7121 | * block group once and should move on to the next block group. |
| 7122 | */ |
| 7123 | if (!offset && !failed_alloc && !cached && |
| 7124 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7125 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7126 | num_bytes + empty_size); |
| 7127 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7128 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7129 | } else if (!offset) { |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7130 | if (!cached) |
| 7131 | have_caching_bg = true; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7132 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7133 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7134 | checks: |
David Sterba | 4e54b17 | 2014-06-05 01:39:19 +0200 | [diff] [blame] | 7135 | search_start = ALIGN(offset, root->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7136 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7137 | /* move on to the next group */ |
| 7138 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7139 | block_group->key.objectid + block_group->key.offset) { |
| 7140 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7141 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7142 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7143 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7144 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7145 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7146 | search_start - offset); |
| 7147 | BUG_ON(offset > search_start); |
| 7148 | |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7149 | ret = btrfs_update_reserved_bytes(block_group, num_bytes, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7150 | alloc_type, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7151 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7152 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7153 | goto loop; |
| 7154 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7155 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7156 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7157 | ins->objectid = search_start; |
| 7158 | ins->offset = num_bytes; |
| 7159 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7160 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 7161 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7162 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7163 | break; |
| 7164 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7165 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7166 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7167 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7168 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7169 | } |
| 7170 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 7171 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7172 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 7173 | goto search; |
| 7174 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7175 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 7176 | goto search; |
| 7177 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7178 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7179 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7180 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7181 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7182 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7183 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7184 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7185 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7186 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7187 | index = 0; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7188 | loop++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7189 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7190 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7191 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7192 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7193 | trans = current->journal_info; |
| 7194 | if (trans) |
| 7195 | exist = 1; |
| 7196 | else |
| 7197 | trans = btrfs_join_transaction(root); |
| 7198 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7199 | if (IS_ERR(trans)) { |
| 7200 | ret = PTR_ERR(trans); |
| 7201 | goto out; |
| 7202 | } |
| 7203 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7204 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7205 | CHUNK_ALLOC_FORCE); |
| 7206 | /* |
| 7207 | * Do not bail out on ENOSPC since we |
| 7208 | * can do more things. |
| 7209 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7210 | if (ret < 0 && ret != -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7211 | btrfs_abort_transaction(trans, |
| 7212 | root, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7213 | else |
| 7214 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7215 | if (!exist) |
| 7216 | btrfs_end_transaction(trans, root); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7217 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7218 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7219 | } |
| 7220 | |
| 7221 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7222 | empty_size = 0; |
| 7223 | empty_cluster = 0; |
| 7224 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7225 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7226 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7227 | } else if (!ins->objectid) { |
| 7228 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7229 | } else if (ins->objectid) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7230 | ret = 0; |
| 7231 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7232 | out: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7233 | if (ret == -ENOSPC) |
| 7234 | ins->offset = max_extent_size; |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 7235 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7236 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7237 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7238 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 7239 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7240 | { |
| 7241 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7242 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7243 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7244 | spin_lock(&info->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7245 | printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7246 | info->flags, |
| 7247 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 7248 | info->bytes_reserved - info->bytes_readonly, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7249 | (info->full) ? "" : "not "); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7250 | printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, " |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 7251 | "reserved=%llu, may_use=%llu, readonly=%llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7252 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 7253 | info->bytes_reserved, info->bytes_may_use, |
| 7254 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7255 | spin_unlock(&info->lock); |
| 7256 | |
| 7257 | if (!dump_block_groups) |
| 7258 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7259 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7260 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7261 | again: |
| 7262 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7263 | spin_lock(&cache->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7264 | printk(KERN_INFO "BTRFS: " |
| 7265 | "block group %llu has %llu bytes, " |
| 7266 | "%llu used %llu pinned %llu reserved %s\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7267 | cache->key.objectid, cache->key.offset, |
| 7268 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 7269 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7270 | btrfs_dump_free_space(cache, bytes); |
| 7271 | spin_unlock(&cache->lock); |
| 7272 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7273 | if (++index < BTRFS_NR_RAID_TYPES) |
| 7274 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7275 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7276 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 7277 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7278 | int btrfs_reserve_extent(struct btrfs_root *root, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7279 | u64 num_bytes, u64 min_alloc_size, |
| 7280 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7281 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7282 | { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7283 | bool final_tried = false; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7284 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7285 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7286 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7287 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 7288 | again: |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 7289 | WARN_ON(num_bytes < root->sectorsize); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7290 | ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7291 | flags, delalloc); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 7292 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7293 | if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7294 | if (!final_tried && ins->offset) { |
| 7295 | num_bytes = min(num_bytes >> 1, ins->offset); |
Zach Brown | 24542bf | 2012-11-16 00:04:43 +0000 | [diff] [blame] | 7296 | num_bytes = round_down(num_bytes, root->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7297 | num_bytes = max(num_bytes, min_alloc_size); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7298 | if (num_bytes == min_alloc_size) |
| 7299 | final_tried = true; |
| 7300 | goto again; |
| 7301 | } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 7302 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7303 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7304 | sinfo = __find_space_info(root->fs_info, flags); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7305 | btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7306 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 7307 | if (sinfo) |
| 7308 | dump_space_info(sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7309 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7310 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7311 | |
| 7312 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7313 | } |
| 7314 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7315 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7316 | u64 start, u64 len, |
| 7317 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7318 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7319 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 7320 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7321 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7322 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 7323 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7324 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7325 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7326 | return -ENOSPC; |
| 7327 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 7328 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7329 | if (pin) |
| 7330 | pin_down_extent(root, cache, start, len, 1); |
| 7331 | else { |
Filipe Manana | dcc82f4 | 2015-03-23 14:07:40 +0000 | [diff] [blame] | 7332 | if (btrfs_test_opt(root, DISCARD)) |
| 7333 | ret = btrfs_discard_extent(root, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7334 | btrfs_add_free_space(cache, start, len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7335 | btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7336 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 7337 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7338 | btrfs_put_block_group(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7339 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 7340 | trace_btrfs_reserved_extent_free(root, start, len); |
| 7341 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7342 | return ret; |
| 7343 | } |
| 7344 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7345 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7346 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7347 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7348 | return __btrfs_free_reserved_extent(root, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7349 | } |
| 7350 | |
| 7351 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 7352 | u64 start, u64 len) |
| 7353 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7354 | return __btrfs_free_reserved_extent(root, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7355 | } |
| 7356 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7357 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 7358 | struct btrfs_root *root, |
| 7359 | u64 parent, u64 root_objectid, |
| 7360 | u64 flags, u64 owner, u64 offset, |
| 7361 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7362 | { |
| 7363 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7364 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7365 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7366 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7367 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7368 | struct extent_buffer *leaf; |
| 7369 | int type; |
| 7370 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 7371 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7372 | if (parent > 0) |
| 7373 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 7374 | else |
| 7375 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 7376 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7377 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7378 | |
| 7379 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 7380 | if (!path) |
| 7381 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7382 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7383 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7384 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 7385 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7386 | if (ret) { |
| 7387 | btrfs_free_path(path); |
| 7388 | return ret; |
| 7389 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7390 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7391 | leaf = path->nodes[0]; |
| 7392 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7393 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7394 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 7395 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7396 | btrfs_set_extent_flags(leaf, extent_item, |
| 7397 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7398 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7399 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 7400 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 7401 | if (parent > 0) { |
| 7402 | struct btrfs_shared_data_ref *ref; |
| 7403 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 7404 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7405 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 7406 | } else { |
| 7407 | struct btrfs_extent_data_ref *ref; |
| 7408 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 7409 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 7410 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 7411 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 7412 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 7413 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7414 | |
| 7415 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7416 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 7417 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 7418 | ret = update_block_group(trans, root, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7419 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7420 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7421 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 7422 | BUG(); |
| 7423 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7424 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7425 | return ret; |
| 7426 | } |
| 7427 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7428 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 7429 | struct btrfs_root *root, |
| 7430 | u64 parent, u64 root_objectid, |
| 7431 | u64 flags, struct btrfs_disk_key *key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7432 | int level, struct btrfs_key *ins, |
| 7433 | int no_quota) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7434 | { |
| 7435 | int ret; |
| 7436 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 7437 | struct btrfs_extent_item *extent_item; |
| 7438 | struct btrfs_tree_block_info *block_info; |
| 7439 | struct btrfs_extent_inline_ref *iref; |
| 7440 | struct btrfs_path *path; |
| 7441 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7442 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7443 | u64 num_bytes = ins->offset; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7444 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7445 | SKINNY_METADATA); |
| 7446 | |
| 7447 | if (!skinny_metadata) |
| 7448 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7449 | |
| 7450 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7451 | if (!path) { |
| 7452 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7453 | root->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 7454 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7455 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7456 | |
| 7457 | path->leave_spinning = 1; |
| 7458 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 7459 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7460 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 7461 | btrfs_free_path(path); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7462 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7463 | root->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7464 | return ret; |
| 7465 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7466 | |
| 7467 | leaf = path->nodes[0]; |
| 7468 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 7469 | struct btrfs_extent_item); |
| 7470 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 7471 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7472 | btrfs_set_extent_flags(leaf, extent_item, |
| 7473 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7474 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7475 | if (skinny_metadata) { |
| 7476 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7477 | num_bytes = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7478 | } else { |
| 7479 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 7480 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 7481 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 7482 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 7483 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7484 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7485 | if (parent > 0) { |
| 7486 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 7487 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7488 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 7489 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7490 | } else { |
| 7491 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7492 | BTRFS_TREE_BLOCK_REF_KEY); |
| 7493 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 7494 | } |
| 7495 | |
| 7496 | btrfs_mark_buffer_dirty(leaf); |
| 7497 | btrfs_free_path(path); |
| 7498 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 7499 | ret = update_block_group(trans, root, ins->objectid, root->nodesize, |
| 7500 | 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7501 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7502 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7503 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7504 | BUG(); |
| 7505 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7506 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7507 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7508 | return ret; |
| 7509 | } |
| 7510 | |
| 7511 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 7512 | struct btrfs_root *root, |
| 7513 | u64 root_objectid, u64 owner, |
| 7514 | u64 offset, struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7515 | { |
| 7516 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 7517 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7518 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7519 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7520 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 7521 | ins->offset, 0, |
| 7522 | root_objectid, owner, offset, |
| 7523 | BTRFS_ADD_DELAYED_EXTENT, NULL, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7524 | return ret; |
| 7525 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7526 | |
| 7527 | /* |
| 7528 | * this is used by the tree logging recovery code. It records that |
| 7529 | * an extent has been allocated and makes sure to clear the free |
| 7530 | * space cache bits as well |
| 7531 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7532 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 7533 | struct btrfs_root *root, |
| 7534 | u64 root_objectid, u64 owner, u64 offset, |
| 7535 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7536 | { |
| 7537 | int ret; |
| 7538 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7539 | |
| 7540 | /* |
| 7541 | * Mixed block groups will exclude before processing the log so we only |
| 7542 | * need to do the exlude dance if this fs isn't mixed. |
| 7543 | */ |
| 7544 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 7545 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 7546 | if (ret) |
| 7547 | return ret; |
| 7548 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7549 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7550 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7551 | if (!block_group) |
| 7552 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7553 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 7554 | ret = btrfs_update_reserved_bytes(block_group, ins->offset, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7555 | RESERVE_ALLOC_NO_ACCOUNT, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7556 | BUG_ON(ret); /* logic error */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7557 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 7558 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 7559 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7560 | return ret; |
| 7561 | } |
| 7562 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7563 | static struct extent_buffer * |
| 7564 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 7565 | u64 bytenr, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7566 | { |
| 7567 | struct extent_buffer *buf; |
| 7568 | |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 7569 | buf = btrfs_find_create_tree_block(root, bytenr); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7570 | if (!buf) |
| 7571 | return ERR_PTR(-ENOMEM); |
| 7572 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 7573 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7574 | btrfs_tree_lock(buf); |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 7575 | clean_tree_block(trans, root->fs_info, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 7576 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7577 | |
| 7578 | btrfs_set_lock_blocking(buf); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7579 | btrfs_set_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7580 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7581 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7582 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 7583 | /* |
| 7584 | * we allow two log transactions at a time, use different |
| 7585 | * EXENT bit to differentiate dirty pages. |
| 7586 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7587 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 7588 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 7589 | buf->start + buf->len - 1, GFP_NOFS); |
| 7590 | else |
| 7591 | set_extent_new(&root->dirty_log_pages, buf->start, |
| 7592 | buf->start + buf->len - 1, GFP_NOFS); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7593 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7594 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7595 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 7596 | buf->start + buf->len - 1, GFP_NOFS); |
| 7597 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7598 | trans->blocks_used++; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7599 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7600 | return buf; |
| 7601 | } |
| 7602 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7603 | static struct btrfs_block_rsv * |
| 7604 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 7605 | struct btrfs_root *root, u32 blocksize) |
| 7606 | { |
| 7607 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 7608 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7609 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7610 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7611 | |
| 7612 | block_rsv = get_block_rsv(trans, root); |
| 7613 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7614 | if (unlikely(block_rsv->size == 0)) |
| 7615 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7616 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7617 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 7618 | if (!ret) |
| 7619 | return block_rsv; |
| 7620 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7621 | if (block_rsv->failfast) |
| 7622 | return ERR_PTR(ret); |
| 7623 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7624 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 7625 | global_updated = true; |
| 7626 | update_global_block_rsv(root->fs_info); |
| 7627 | goto again; |
| 7628 | } |
| 7629 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7630 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 7631 | static DEFINE_RATELIMIT_STATE(_rs, |
| 7632 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 7633 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 7634 | if (__ratelimit(&_rs)) |
| 7635 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7636 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7637 | } |
| 7638 | try_reserve: |
| 7639 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 7640 | BTRFS_RESERVE_NO_FLUSH); |
| 7641 | if (!ret) |
| 7642 | return block_rsv; |
| 7643 | /* |
| 7644 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7645 | * the global reserve if its space type is the same as the global |
| 7646 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7647 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7648 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 7649 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7650 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 7651 | if (!ret) |
| 7652 | return global_rsv; |
| 7653 | } |
| 7654 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7655 | } |
| 7656 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7657 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 7658 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7659 | { |
| 7660 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7661 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7662 | } |
| 7663 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7664 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7665 | * finds a free extent and does all the dirty work required for allocation |
| 7666 | * returns the key for the extent through ins, and a tree buffer for |
| 7667 | * the first block of the extent through buf. |
| 7668 | * |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7669 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7670 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 7671 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
| 7672 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7673 | u64 parent, u64 root_objectid, |
| 7674 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7675 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7676 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 7677 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7678 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7679 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7680 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7681 | u64 flags = 0; |
| 7682 | int ret; |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 7683 | u32 blocksize = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7684 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7685 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7686 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7687 | if (btrfs_test_is_dummy_root(root)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7688 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 7689 | level); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7690 | if (!IS_ERR(buf)) |
| 7691 | root->alloc_bytenr += blocksize; |
| 7692 | return buf; |
| 7693 | } |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7694 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7695 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 7696 | if (IS_ERR(block_rsv)) |
| 7697 | return ERR_CAST(block_rsv); |
| 7698 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7699 | ret = btrfs_reserve_extent(root, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7700 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7701 | if (ret) |
| 7702 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 7703 | |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 7704 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7705 | if (IS_ERR(buf)) { |
| 7706 | ret = PTR_ERR(buf); |
| 7707 | goto out_free_reserved; |
| 7708 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7709 | |
| 7710 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 7711 | if (parent == 0) |
| 7712 | parent = ins.objectid; |
| 7713 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7714 | } else |
| 7715 | BUG_ON(parent > 0); |
| 7716 | |
| 7717 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7718 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7719 | if (!extent_op) { |
| 7720 | ret = -ENOMEM; |
| 7721 | goto out_free_buf; |
| 7722 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7723 | if (key) |
| 7724 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 7725 | else |
| 7726 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 7727 | extent_op->flags_to_set = flags; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7728 | if (skinny_metadata) |
| 7729 | extent_op->update_key = 0; |
| 7730 | else |
| 7731 | extent_op->update_key = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7732 | extent_op->update_flags = 1; |
| 7733 | extent_op->is_data = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7734 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7735 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7736 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7737 | ins.objectid, ins.offset, |
| 7738 | parent, root_objectid, level, |
| 7739 | BTRFS_ADD_DELAYED_EXTENT, |
| 7740 | extent_op, 0); |
| 7741 | if (ret) |
| 7742 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7743 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7744 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7745 | |
| 7746 | out_free_delayed: |
| 7747 | btrfs_free_delayed_extent_op(extent_op); |
| 7748 | out_free_buf: |
| 7749 | free_extent_buffer(buf); |
| 7750 | out_free_reserved: |
| 7751 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0); |
| 7752 | out_unuse: |
| 7753 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
| 7754 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7755 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7756 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7757 | struct walk_control { |
| 7758 | u64 refs[BTRFS_MAX_LEVEL]; |
| 7759 | u64 flags[BTRFS_MAX_LEVEL]; |
| 7760 | struct btrfs_key update_progress; |
| 7761 | int stage; |
| 7762 | int level; |
| 7763 | int shared_level; |
| 7764 | int update_ref; |
| 7765 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7766 | int reada_slot; |
| 7767 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7768 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7769 | }; |
| 7770 | |
| 7771 | #define DROP_REFERENCE 1 |
| 7772 | #define UPDATE_BACKREF 2 |
| 7773 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7774 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 7775 | struct btrfs_root *root, |
| 7776 | struct walk_control *wc, |
| 7777 | struct btrfs_path *path) |
| 7778 | { |
| 7779 | u64 bytenr; |
| 7780 | u64 generation; |
| 7781 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7782 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7783 | u32 nritems; |
| 7784 | u32 blocksize; |
| 7785 | struct btrfs_key key; |
| 7786 | struct extent_buffer *eb; |
| 7787 | int ret; |
| 7788 | int slot; |
| 7789 | int nread = 0; |
| 7790 | |
| 7791 | if (path->slots[wc->level] < wc->reada_slot) { |
| 7792 | wc->reada_count = wc->reada_count * 2 / 3; |
| 7793 | wc->reada_count = max(wc->reada_count, 2); |
| 7794 | } else { |
| 7795 | wc->reada_count = wc->reada_count * 3 / 2; |
| 7796 | wc->reada_count = min_t(int, wc->reada_count, |
| 7797 | BTRFS_NODEPTRS_PER_BLOCK(root)); |
| 7798 | } |
| 7799 | |
| 7800 | eb = path->nodes[wc->level]; |
| 7801 | nritems = btrfs_header_nritems(eb); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7802 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7803 | |
| 7804 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 7805 | if (nread >= wc->reada_count) |
| 7806 | break; |
| 7807 | |
| 7808 | cond_resched(); |
| 7809 | bytenr = btrfs_node_blockptr(eb, slot); |
| 7810 | generation = btrfs_node_ptr_generation(eb, slot); |
| 7811 | |
| 7812 | if (slot == path->slots[wc->level]) |
| 7813 | goto reada; |
| 7814 | |
| 7815 | if (wc->stage == UPDATE_BACKREF && |
| 7816 | generation <= root->root_key.offset) |
| 7817 | continue; |
| 7818 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7819 | /* We don't lock the tree block, it's OK to be racy here */ |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7820 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 7821 | wc->level - 1, 1, &refs, |
| 7822 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7823 | /* We don't care about errors in readahead. */ |
| 7824 | if (ret < 0) |
| 7825 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7826 | BUG_ON(refs == 0); |
| 7827 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7828 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7829 | if (refs == 1) |
| 7830 | goto reada; |
| 7831 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7832 | if (wc->level == 1 && |
| 7833 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7834 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7835 | if (!wc->update_ref || |
| 7836 | generation <= root->root_key.offset) |
| 7837 | continue; |
| 7838 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 7839 | ret = btrfs_comp_cpu_keys(&key, |
| 7840 | &wc->update_progress); |
| 7841 | if (ret < 0) |
| 7842 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7843 | } else { |
| 7844 | if (wc->level == 1 && |
| 7845 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7846 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7847 | } |
| 7848 | reada: |
David Sterba | d3e46fe | 2014-06-15 02:04:19 +0200 | [diff] [blame] | 7849 | readahead_tree_block(root, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7850 | nread++; |
| 7851 | } |
| 7852 | wc->reada_slot = slot; |
| 7853 | } |
| 7854 | |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 7855 | /* |
| 7856 | * TODO: Modify related function to add related node/leaf to dirty_extent_root, |
| 7857 | * for later qgroup accounting. |
| 7858 | * |
| 7859 | * Current, this function does nothing. |
| 7860 | */ |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7861 | static int account_leaf_items(struct btrfs_trans_handle *trans, |
| 7862 | struct btrfs_root *root, |
| 7863 | struct extent_buffer *eb) |
| 7864 | { |
| 7865 | int nr = btrfs_header_nritems(eb); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 7866 | int i, extent_type; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7867 | struct btrfs_key key; |
| 7868 | struct btrfs_file_extent_item *fi; |
| 7869 | u64 bytenr, num_bytes; |
| 7870 | |
| 7871 | for (i = 0; i < nr; i++) { |
| 7872 | btrfs_item_key_to_cpu(eb, &key, i); |
| 7873 | |
| 7874 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 7875 | continue; |
| 7876 | |
| 7877 | fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 7878 | /* filter out non qgroup-accountable extents */ |
| 7879 | extent_type = btrfs_file_extent_type(eb, fi); |
| 7880 | |
| 7881 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) |
| 7882 | continue; |
| 7883 | |
| 7884 | bytenr = btrfs_file_extent_disk_bytenr(eb, fi); |
| 7885 | if (!bytenr) |
| 7886 | continue; |
| 7887 | |
| 7888 | num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7889 | } |
| 7890 | return 0; |
| 7891 | } |
| 7892 | |
| 7893 | /* |
| 7894 | * Walk up the tree from the bottom, freeing leaves and any interior |
| 7895 | * nodes which have had all slots visited. If a node (leaf or |
| 7896 | * interior) is freed, the node above it will have it's slot |
| 7897 | * incremented. The root node will never be freed. |
| 7898 | * |
| 7899 | * At the end of this function, we should have a path which has all |
| 7900 | * slots incremented to the next position for a search. If we need to |
| 7901 | * read a new node it will be NULL and the node above it will have the |
| 7902 | * correct slot selected for a later read. |
| 7903 | * |
| 7904 | * If we increment the root nodes slot counter past the number of |
| 7905 | * elements, 1 is returned to signal completion of the search. |
| 7906 | */ |
| 7907 | static int adjust_slots_upwards(struct btrfs_root *root, |
| 7908 | struct btrfs_path *path, int root_level) |
| 7909 | { |
| 7910 | int level = 0; |
| 7911 | int nr, slot; |
| 7912 | struct extent_buffer *eb; |
| 7913 | |
| 7914 | if (root_level == 0) |
| 7915 | return 1; |
| 7916 | |
| 7917 | while (level <= root_level) { |
| 7918 | eb = path->nodes[level]; |
| 7919 | nr = btrfs_header_nritems(eb); |
| 7920 | path->slots[level]++; |
| 7921 | slot = path->slots[level]; |
| 7922 | if (slot >= nr || level == 0) { |
| 7923 | /* |
| 7924 | * Don't free the root - we will detect this |
| 7925 | * condition after our loop and return a |
| 7926 | * positive value for caller to stop walking the tree. |
| 7927 | */ |
| 7928 | if (level != root_level) { |
| 7929 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
| 7930 | path->locks[level] = 0; |
| 7931 | |
| 7932 | free_extent_buffer(eb); |
| 7933 | path->nodes[level] = NULL; |
| 7934 | path->slots[level] = 0; |
| 7935 | } |
| 7936 | } else { |
| 7937 | /* |
| 7938 | * We have a valid slot to walk back down |
| 7939 | * from. Stop here so caller can process these |
| 7940 | * new nodes. |
| 7941 | */ |
| 7942 | break; |
| 7943 | } |
| 7944 | |
| 7945 | level++; |
| 7946 | } |
| 7947 | |
| 7948 | eb = path->nodes[root_level]; |
| 7949 | if (path->slots[root_level] >= btrfs_header_nritems(eb)) |
| 7950 | return 1; |
| 7951 | |
| 7952 | return 0; |
| 7953 | } |
| 7954 | |
| 7955 | /* |
| 7956 | * root_eb is the subtree root and is locked before this function is called. |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 7957 | * TODO: Modify this function to mark all (including complete shared node) |
| 7958 | * to dirty_extent_root to allow it get accounted in qgroup. |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7959 | */ |
| 7960 | static int account_shared_subtree(struct btrfs_trans_handle *trans, |
| 7961 | struct btrfs_root *root, |
| 7962 | struct extent_buffer *root_eb, |
| 7963 | u64 root_gen, |
| 7964 | int root_level) |
| 7965 | { |
| 7966 | int ret = 0; |
| 7967 | int level; |
| 7968 | struct extent_buffer *eb = root_eb; |
| 7969 | struct btrfs_path *path = NULL; |
| 7970 | |
| 7971 | BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL); |
| 7972 | BUG_ON(root_eb == NULL); |
| 7973 | |
| 7974 | if (!root->fs_info->quota_enabled) |
| 7975 | return 0; |
| 7976 | |
| 7977 | if (!extent_buffer_uptodate(root_eb)) { |
| 7978 | ret = btrfs_read_buffer(root_eb, root_gen); |
| 7979 | if (ret) |
| 7980 | goto out; |
| 7981 | } |
| 7982 | |
| 7983 | if (root_level == 0) { |
| 7984 | ret = account_leaf_items(trans, root, root_eb); |
| 7985 | goto out; |
| 7986 | } |
| 7987 | |
| 7988 | path = btrfs_alloc_path(); |
| 7989 | if (!path) |
| 7990 | return -ENOMEM; |
| 7991 | |
| 7992 | /* |
| 7993 | * Walk down the tree. Missing extent blocks are filled in as |
| 7994 | * we go. Metadata is accounted every time we read a new |
| 7995 | * extent block. |
| 7996 | * |
| 7997 | * When we reach a leaf, we account for file extent items in it, |
| 7998 | * walk back up the tree (adjusting slot pointers as we go) |
| 7999 | * and restart the search process. |
| 8000 | */ |
| 8001 | extent_buffer_get(root_eb); /* For path */ |
| 8002 | path->nodes[root_level] = root_eb; |
| 8003 | path->slots[root_level] = 0; |
| 8004 | path->locks[root_level] = 0; /* so release_path doesn't try to unlock */ |
| 8005 | walk_down: |
| 8006 | level = root_level; |
| 8007 | while (level >= 0) { |
| 8008 | if (path->nodes[level] == NULL) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8009 | int parent_slot; |
| 8010 | u64 child_gen; |
| 8011 | u64 child_bytenr; |
| 8012 | |
| 8013 | /* We need to get child blockptr/gen from |
| 8014 | * parent before we can read it. */ |
| 8015 | eb = path->nodes[level + 1]; |
| 8016 | parent_slot = path->slots[level + 1]; |
| 8017 | child_bytenr = btrfs_node_blockptr(eb, parent_slot); |
| 8018 | child_gen = btrfs_node_ptr_generation(eb, parent_slot); |
| 8019 | |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 8020 | eb = read_tree_block(root, child_bytenr, child_gen); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8021 | if (IS_ERR(eb)) { |
| 8022 | ret = PTR_ERR(eb); |
| 8023 | goto out; |
| 8024 | } else if (!extent_buffer_uptodate(eb)) { |
Liu Bo | 8635eda | 2015-05-25 17:30:14 +0800 | [diff] [blame] | 8025 | free_extent_buffer(eb); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8026 | ret = -EIO; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8027 | goto out; |
| 8028 | } |
| 8029 | |
| 8030 | path->nodes[level] = eb; |
| 8031 | path->slots[level] = 0; |
| 8032 | |
| 8033 | btrfs_tree_read_lock(eb); |
| 8034 | btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); |
| 8035 | path->locks[level] = BTRFS_READ_LOCK_BLOCKING; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8036 | } |
| 8037 | |
| 8038 | if (level == 0) { |
| 8039 | ret = account_leaf_items(trans, root, path->nodes[level]); |
| 8040 | if (ret) |
| 8041 | goto out; |
| 8042 | |
| 8043 | /* Nonzero return here means we completed our search */ |
| 8044 | ret = adjust_slots_upwards(root, path, root_level); |
| 8045 | if (ret) |
| 8046 | break; |
| 8047 | |
| 8048 | /* Restart search with new slots */ |
| 8049 | goto walk_down; |
| 8050 | } |
| 8051 | |
| 8052 | level--; |
| 8053 | } |
| 8054 | |
| 8055 | ret = 0; |
| 8056 | out: |
| 8057 | btrfs_free_path(path); |
| 8058 | |
| 8059 | return ret; |
| 8060 | } |
| 8061 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8062 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8063 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8064 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8065 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 8066 | * back refs for pointers in the block. |
| 8067 | * |
| 8068 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8069 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8070 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 8071 | struct btrfs_root *root, |
| 8072 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8073 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8074 | { |
| 8075 | int level = wc->level; |
| 8076 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8077 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8078 | int ret; |
| 8079 | |
| 8080 | if (wc->stage == UPDATE_BACKREF && |
| 8081 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8082 | return 1; |
| 8083 | |
| 8084 | /* |
| 8085 | * when reference count of tree block is 1, it won't increase |
| 8086 | * again. once full backref flag is set, we never clear it. |
| 8087 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8088 | if (lookup_info && |
| 8089 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8090 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8091 | BUG_ON(!path->locks[level]); |
| 8092 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8093 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8094 | &wc->refs[level], |
| 8095 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8096 | BUG_ON(ret == -ENOMEM); |
| 8097 | if (ret) |
| 8098 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8099 | BUG_ON(wc->refs[level] == 0); |
| 8100 | } |
| 8101 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8102 | if (wc->stage == DROP_REFERENCE) { |
| 8103 | if (wc->refs[level] > 1) |
| 8104 | return 1; |
| 8105 | |
| 8106 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8107 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8108 | path->locks[level] = 0; |
| 8109 | } |
| 8110 | return 0; |
| 8111 | } |
| 8112 | |
| 8113 | /* wc->stage == UPDATE_BACKREF */ |
| 8114 | if (!(wc->flags[level] & flag)) { |
| 8115 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8116 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8117 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8118 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8119 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8120 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8121 | eb->len, flag, |
| 8122 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8123 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8124 | wc->flags[level] |= flag; |
| 8125 | } |
| 8126 | |
| 8127 | /* |
| 8128 | * the block is shared by multiple trees, so it's not good to |
| 8129 | * keep the tree lock |
| 8130 | */ |
| 8131 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8132 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8133 | path->locks[level] = 0; |
| 8134 | } |
| 8135 | return 0; |
| 8136 | } |
| 8137 | |
| 8138 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8139 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8140 | * |
| 8141 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8142 | * reference count of the block pointed to. if the block |
| 8143 | * is shared and we need update back refs for the subtree |
| 8144 | * rooted at the block, this function changes wc->stage to |
| 8145 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8146 | * need to update back, this function drops the reference |
| 8147 | * to the block. |
| 8148 | * |
| 8149 | * NOTE: return value 1 means we should stop walking down. |
| 8150 | */ |
| 8151 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8152 | struct btrfs_root *root, |
| 8153 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8154 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8155 | { |
| 8156 | u64 bytenr; |
| 8157 | u64 generation; |
| 8158 | u64 parent; |
| 8159 | u32 blocksize; |
| 8160 | struct btrfs_key key; |
| 8161 | struct extent_buffer *next; |
| 8162 | int level = wc->level; |
| 8163 | int reada = 0; |
| 8164 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8165 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8166 | |
| 8167 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8168 | path->slots[level]); |
| 8169 | /* |
| 8170 | * if the lower level block was created before the snapshot |
| 8171 | * was created, we know there is no need to update back refs |
| 8172 | * for the subtree |
| 8173 | */ |
| 8174 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8175 | generation <= root->root_key.offset) { |
| 8176 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8177 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8178 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8179 | |
| 8180 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8181 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8182 | |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8183 | next = btrfs_find_tree_block(root->fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8184 | if (!next) { |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 8185 | next = btrfs_find_create_tree_block(root, bytenr); |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8186 | if (!next) |
| 8187 | return -ENOMEM; |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8188 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8189 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8190 | reada = 1; |
| 8191 | } |
| 8192 | btrfs_tree_lock(next); |
| 8193 | btrfs_set_lock_blocking(next); |
| 8194 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8195 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8196 | &wc->refs[level - 1], |
| 8197 | &wc->flags[level - 1]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8198 | if (ret < 0) { |
| 8199 | btrfs_tree_unlock(next); |
| 8200 | return ret; |
| 8201 | } |
| 8202 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8203 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 8204 | btrfs_err(root->fs_info, "Missing references."); |
| 8205 | BUG(); |
| 8206 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8207 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8208 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8209 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8210 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8211 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8212 | if (level == 1 && |
| 8213 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8214 | goto skip; |
| 8215 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8216 | if (!wc->update_ref || |
| 8217 | generation <= root->root_key.offset) |
| 8218 | goto skip; |
| 8219 | |
| 8220 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8221 | path->slots[level]); |
| 8222 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8223 | if (ret < 0) |
| 8224 | goto skip; |
| 8225 | |
| 8226 | wc->stage = UPDATE_BACKREF; |
| 8227 | wc->shared_level = level - 1; |
| 8228 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8229 | } else { |
| 8230 | if (level == 1 && |
| 8231 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8232 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8233 | } |
| 8234 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8235 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8236 | btrfs_tree_unlock(next); |
| 8237 | free_extent_buffer(next); |
| 8238 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8239 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8240 | } |
| 8241 | |
| 8242 | if (!next) { |
| 8243 | if (reada && level == 1) |
| 8244 | reada_walk_down(trans, root, wc, path); |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 8245 | next = read_tree_block(root, bytenr, generation); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8246 | if (IS_ERR(next)) { |
| 8247 | return PTR_ERR(next); |
| 8248 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8249 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8250 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8251 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8252 | btrfs_tree_lock(next); |
| 8253 | btrfs_set_lock_blocking(next); |
| 8254 | } |
| 8255 | |
| 8256 | level--; |
| 8257 | BUG_ON(level != btrfs_header_level(next)); |
| 8258 | path->nodes[level] = next; |
| 8259 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8260 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8261 | wc->level = level; |
| 8262 | if (wc->level == 1) |
| 8263 | wc->reada_slot = 0; |
| 8264 | return 0; |
| 8265 | skip: |
| 8266 | wc->refs[level - 1] = 0; |
| 8267 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8268 | if (wc->stage == DROP_REFERENCE) { |
| 8269 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 8270 | parent = path->nodes[level]->start; |
| 8271 | } else { |
| 8272 | BUG_ON(root->root_key.objectid != |
| 8273 | btrfs_header_owner(path->nodes[level])); |
| 8274 | parent = 0; |
| 8275 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8276 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8277 | if (need_account) { |
| 8278 | ret = account_shared_subtree(trans, root, next, |
| 8279 | generation, level - 1); |
| 8280 | if (ret) { |
| 8281 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 8282 | "%d accounting shared subtree. Quota " |
| 8283 | "is out of sync, rescan required.\n", |
| 8284 | root->fs_info->sb->s_id, ret); |
| 8285 | } |
| 8286 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8287 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8288 | root->root_key.objectid, level - 1, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8289 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8290 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8291 | btrfs_tree_unlock(next); |
| 8292 | free_extent_buffer(next); |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8293 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8294 | return 1; |
| 8295 | } |
| 8296 | |
| 8297 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8298 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8299 | * |
| 8300 | * when wc->stage == DROP_REFERENCE, this function drops |
| 8301 | * reference count on the block. |
| 8302 | * |
| 8303 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 8304 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 8305 | * to UPDATE_BACKREF previously while processing the block. |
| 8306 | * |
| 8307 | * NOTE: return value 1 means we should stop walking up. |
| 8308 | */ |
| 8309 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 8310 | struct btrfs_root *root, |
| 8311 | struct btrfs_path *path, |
| 8312 | struct walk_control *wc) |
| 8313 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8314 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8315 | int level = wc->level; |
| 8316 | struct extent_buffer *eb = path->nodes[level]; |
| 8317 | u64 parent = 0; |
| 8318 | |
| 8319 | if (wc->stage == UPDATE_BACKREF) { |
| 8320 | BUG_ON(wc->shared_level < level); |
| 8321 | if (level < wc->shared_level) |
| 8322 | goto out; |
| 8323 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8324 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 8325 | if (ret > 0) |
| 8326 | wc->update_ref = 0; |
| 8327 | |
| 8328 | wc->stage = DROP_REFERENCE; |
| 8329 | wc->shared_level = -1; |
| 8330 | path->slots[level] = 0; |
| 8331 | |
| 8332 | /* |
| 8333 | * check reference count again if the block isn't locked. |
| 8334 | * we should start walking down the tree again if reference |
| 8335 | * count is one. |
| 8336 | */ |
| 8337 | if (!path->locks[level]) { |
| 8338 | BUG_ON(level == 0); |
| 8339 | btrfs_tree_lock(eb); |
| 8340 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8341 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8342 | |
| 8343 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8344 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8345 | &wc->refs[level], |
| 8346 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8347 | if (ret < 0) { |
| 8348 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8349 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8350 | return ret; |
| 8351 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8352 | BUG_ON(wc->refs[level] == 0); |
| 8353 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8354 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8355 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8356 | return 1; |
| 8357 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8358 | } |
| 8359 | } |
| 8360 | |
| 8361 | /* wc->stage == DROP_REFERENCE */ |
| 8362 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 8363 | |
| 8364 | if (wc->refs[level] == 1) { |
| 8365 | if (level == 0) { |
| 8366 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8367 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8368 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8369 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8370 | BUG_ON(ret); /* -ENOMEM */ |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8371 | ret = account_leaf_items(trans, root, eb); |
| 8372 | if (ret) { |
| 8373 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 8374 | "%d accounting leaf items. Quota " |
| 8375 | "is out of sync, rescan required.\n", |
| 8376 | root->fs_info->sb->s_id, ret); |
| 8377 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8378 | } |
| 8379 | /* make block locked assertion in clean_tree_block happy */ |
| 8380 | if (!path->locks[level] && |
| 8381 | btrfs_header_generation(eb) == trans->transid) { |
| 8382 | btrfs_tree_lock(eb); |
| 8383 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8384 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8385 | } |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8386 | clean_tree_block(trans, root->fs_info, eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8387 | } |
| 8388 | |
| 8389 | if (eb == root->node) { |
| 8390 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8391 | parent = eb->start; |
| 8392 | else |
| 8393 | BUG_ON(root->root_key.objectid != |
| 8394 | btrfs_header_owner(eb)); |
| 8395 | } else { |
| 8396 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8397 | parent = path->nodes[level + 1]->start; |
| 8398 | else |
| 8399 | BUG_ON(root->root_key.objectid != |
| 8400 | btrfs_header_owner(path->nodes[level + 1])); |
| 8401 | } |
| 8402 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8403 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8404 | out: |
| 8405 | wc->refs[level] = 0; |
| 8406 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8407 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8408 | } |
| 8409 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8410 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8411 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8412 | struct btrfs_path *path, |
| 8413 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8414 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8415 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8416 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8417 | int ret; |
| 8418 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8419 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8420 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8421 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8422 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8423 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8424 | if (level == 0) |
| 8425 | break; |
| 8426 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8427 | if (path->slots[level] >= |
| 8428 | btrfs_header_nritems(path->nodes[level])) |
| 8429 | break; |
| 8430 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8431 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8432 | if (ret > 0) { |
| 8433 | path->slots[level]++; |
| 8434 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8435 | } else if (ret < 0) |
| 8436 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8437 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8438 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8439 | return 0; |
| 8440 | } |
| 8441 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8442 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8443 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8444 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8445 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8446 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8447 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8448 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8449 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8450 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8451 | while (level < max_level && path->nodes[level]) { |
| 8452 | wc->level = level; |
| 8453 | if (path->slots[level] + 1 < |
| 8454 | btrfs_header_nritems(path->nodes[level])) { |
| 8455 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8456 | return 0; |
| 8457 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8458 | ret = walk_up_proc(trans, root, path, wc); |
| 8459 | if (ret > 0) |
| 8460 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8461 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8462 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8463 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8464 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8465 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8466 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8467 | free_extent_buffer(path->nodes[level]); |
| 8468 | path->nodes[level] = NULL; |
| 8469 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8470 | } |
| 8471 | } |
| 8472 | return 1; |
| 8473 | } |
| 8474 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8475 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8476 | * drop a subvolume tree. |
| 8477 | * |
| 8478 | * this function traverses the tree freeing any blocks that only |
| 8479 | * referenced by the tree. |
| 8480 | * |
| 8481 | * when a shared tree block is found. this function decreases its |
| 8482 | * reference count by one. if update_ref is true, this function |
| 8483 | * also make sure backrefs for the shared block and all lower level |
| 8484 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8485 | * |
| 8486 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8487 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8488 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8489 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 8490 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8491 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8492 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8493 | struct btrfs_trans_handle *trans; |
| 8494 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8495 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8496 | struct walk_control *wc; |
| 8497 | struct btrfs_key key; |
| 8498 | int err = 0; |
| 8499 | int ret; |
| 8500 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8501 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8502 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8503 | btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid); |
| 8504 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8505 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8506 | if (!path) { |
| 8507 | err = -ENOMEM; |
| 8508 | goto out; |
| 8509 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8510 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8511 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8512 | if (!wc) { |
| 8513 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8514 | err = -ENOMEM; |
| 8515 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8516 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8517 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8518 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8519 | if (IS_ERR(trans)) { |
| 8520 | err = PTR_ERR(trans); |
| 8521 | goto out_free; |
| 8522 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 8523 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8524 | if (block_rsv) |
| 8525 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8526 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8527 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8528 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8529 | path->nodes[level] = btrfs_lock_root_node(root); |
| 8530 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8531 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8532 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8533 | memset(&wc->update_progress, 0, |
| 8534 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8535 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8536 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8537 | memcpy(&wc->update_progress, &key, |
| 8538 | sizeof(wc->update_progress)); |
| 8539 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8540 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8541 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8542 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8543 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 8544 | path->lowest_level = 0; |
| 8545 | if (ret < 0) { |
| 8546 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8547 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8548 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8549 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8550 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8551 | /* |
| 8552 | * unlock our path, this is safe because only this |
| 8553 | * function is allowed to delete this snapshot |
| 8554 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8555 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8556 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8557 | level = btrfs_header_level(root->node); |
| 8558 | while (1) { |
| 8559 | btrfs_tree_lock(path->nodes[level]); |
| 8560 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8561 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8562 | |
| 8563 | ret = btrfs_lookup_extent_info(trans, root, |
| 8564 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8565 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8566 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8567 | if (ret < 0) { |
| 8568 | err = ret; |
| 8569 | goto out_end_trans; |
| 8570 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8571 | BUG_ON(wc->refs[level] == 0); |
| 8572 | |
| 8573 | if (level == root_item->drop_level) |
| 8574 | break; |
| 8575 | |
| 8576 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8577 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8578 | WARN_ON(wc->refs[level] != 1); |
| 8579 | level--; |
| 8580 | } |
| 8581 | } |
| 8582 | |
| 8583 | wc->level = level; |
| 8584 | wc->shared_level = -1; |
| 8585 | wc->stage = DROP_REFERENCE; |
| 8586 | wc->update_ref = update_ref; |
| 8587 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8588 | wc->for_reloc = for_reloc; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8589 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8590 | |
| 8591 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8592 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8593 | ret = walk_down_tree(trans, root, path, wc); |
| 8594 | if (ret < 0) { |
| 8595 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 8596 | break; |
| 8597 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8598 | |
| 8599 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 8600 | if (ret < 0) { |
| 8601 | err = ret; |
| 8602 | break; |
| 8603 | } |
| 8604 | |
| 8605 | if (ret > 0) { |
| 8606 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 8607 | break; |
| 8608 | } |
| 8609 | |
| 8610 | if (wc->stage == DROP_REFERENCE) { |
| 8611 | level = wc->level; |
| 8612 | btrfs_node_key(path->nodes[level], |
| 8613 | &root_item->drop_progress, |
| 8614 | path->slots[level]); |
| 8615 | root_item->drop_level = level; |
| 8616 | } |
| 8617 | |
| 8618 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8619 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 8620 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8621 | ret = btrfs_update_root(trans, tree_root, |
| 8622 | &root->root_key, |
| 8623 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8624 | if (ret) { |
| 8625 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8626 | err = ret; |
| 8627 | goto out_end_trans; |
| 8628 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8629 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8630 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8631 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8632 | pr_debug("BTRFS: drop snapshot early exit\n"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8633 | err = -EAGAIN; |
| 8634 | goto out_free; |
| 8635 | } |
| 8636 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8637 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8638 | if (IS_ERR(trans)) { |
| 8639 | err = PTR_ERR(trans); |
| 8640 | goto out_free; |
| 8641 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8642 | if (block_rsv) |
| 8643 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 8644 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8645 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8646 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8647 | if (err) |
| 8648 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8649 | |
| 8650 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8651 | if (ret) { |
| 8652 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8653 | goto out_end_trans; |
| 8654 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8655 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8656 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8657 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 8658 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8659 | if (ret < 0) { |
| 8660 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8661 | err = ret; |
| 8662 | goto out_end_trans; |
| 8663 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 8664 | /* if we fail to delete the orphan item this time |
| 8665 | * around, it'll get picked up the next time. |
| 8666 | * |
| 8667 | * The most common failure here is just -ENOENT. |
| 8668 | */ |
| 8669 | btrfs_del_orphan_item(trans, tree_root, |
| 8670 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8671 | } |
| 8672 | } |
| 8673 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 8674 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8675 | btrfs_drop_and_free_fs_root(tree_root->fs_info, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8676 | } else { |
| 8677 | free_extent_buffer(root->node); |
| 8678 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 8679 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8680 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8681 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8682 | out_end_trans: |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8683 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8684 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8685 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8686 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8687 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8688 | /* |
| 8689 | * So if we need to stop dropping the snapshot for whatever reason we |
| 8690 | * need to make sure to add it back to the dead root list so that we |
| 8691 | * keep trying to do the work later. This also cleans up roots if we |
| 8692 | * don't have it in the radix (like when we recover after a power fail |
| 8693 | * or unmount) so we don't leak memory. |
| 8694 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 8695 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8696 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 8697 | if (err && err != -EAGAIN) |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8698 | btrfs_std_error(root->fs_info, err); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8699 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8700 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8701 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8702 | /* |
| 8703 | * drop subtree rooted at tree block 'node'. |
| 8704 | * |
| 8705 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8706 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8707 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8708 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 8709 | struct btrfs_root *root, |
| 8710 | struct extent_buffer *node, |
| 8711 | struct extent_buffer *parent) |
| 8712 | { |
| 8713 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8714 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8715 | int level; |
| 8716 | int parent_level; |
| 8717 | int ret = 0; |
| 8718 | int wret; |
| 8719 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8720 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 8721 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8722 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8723 | if (!path) |
| 8724 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8725 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8726 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8727 | if (!wc) { |
| 8728 | btrfs_free_path(path); |
| 8729 | return -ENOMEM; |
| 8730 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8731 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8732 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8733 | parent_level = btrfs_header_level(parent); |
| 8734 | extent_buffer_get(parent); |
| 8735 | path->nodes[parent_level] = parent; |
| 8736 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 8737 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8738 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8739 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8740 | path->nodes[level] = node; |
| 8741 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8742 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8743 | |
| 8744 | wc->refs[parent_level] = 1; |
| 8745 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8746 | wc->level = level; |
| 8747 | wc->shared_level = -1; |
| 8748 | wc->stage = DROP_REFERENCE; |
| 8749 | wc->update_ref = 0; |
| 8750 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8751 | wc->for_reloc = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8752 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8753 | |
| 8754 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8755 | wret = walk_down_tree(trans, root, path, wc); |
| 8756 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8757 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8758 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8759 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8760 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8761 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8762 | if (wret < 0) |
| 8763 | ret = wret; |
| 8764 | if (wret != 0) |
| 8765 | break; |
| 8766 | } |
| 8767 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8768 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8769 | btrfs_free_path(path); |
| 8770 | return ret; |
| 8771 | } |
| 8772 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8773 | static u64 update_block_group_flags(struct btrfs_root *root, u64 flags) |
| 8774 | { |
| 8775 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8776 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8777 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8778 | /* |
| 8779 | * if restripe for this chunk_type is on pick target profile and |
| 8780 | * return, otherwise do the usual balance |
| 8781 | */ |
| 8782 | stripped = get_restripe_target(root->fs_info, flags); |
| 8783 | if (stripped) |
| 8784 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 8785 | |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 8786 | num_devices = root->fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 8787 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8788 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8789 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8790 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 8791 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8792 | if (num_devices == 1) { |
| 8793 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8794 | stripped = flags & ~stripped; |
| 8795 | |
| 8796 | /* turn raid0 into single device chunks */ |
| 8797 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 8798 | return stripped; |
| 8799 | |
| 8800 | /* turn mirroring into duplication */ |
| 8801 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8802 | BTRFS_BLOCK_GROUP_RAID10)) |
| 8803 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8804 | } else { |
| 8805 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8806 | if (flags & stripped) |
| 8807 | return flags; |
| 8808 | |
| 8809 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8810 | stripped = flags & ~stripped; |
| 8811 | |
| 8812 | /* switch duplicated blocks with raid1 */ |
| 8813 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 8814 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 8815 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8816 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8817 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8818 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8819 | return flags; |
| 8820 | } |
| 8821 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8822 | static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8823 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8824 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8825 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8826 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8827 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8828 | |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8829 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8830 | /* |
| 8831 | * We need some metadata space and system metadata space for |
| 8832 | * allocating chunks in some corner cases until we force to set |
| 8833 | * it to be readonly. |
| 8834 | */ |
| 8835 | if ((sinfo->flags & |
| 8836 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 8837 | !force) |
| 8838 | min_allocable_bytes = 1 * 1024 * 1024; |
| 8839 | else |
| 8840 | min_allocable_bytes = 0; |
| 8841 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8842 | spin_lock(&sinfo->lock); |
| 8843 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8844 | |
| 8845 | if (cache->ro) { |
| 8846 | ret = 0; |
| 8847 | goto out; |
| 8848 | } |
| 8849 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8850 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8851 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8852 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8853 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 8854 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 8855 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8856 | sinfo->bytes_readonly += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8857 | cache->ro = 1; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8858 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8859 | ret = 0; |
| 8860 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8861 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8862 | spin_unlock(&cache->lock); |
| 8863 | spin_unlock(&sinfo->lock); |
| 8864 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8865 | } |
| 8866 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8867 | int btrfs_set_block_group_ro(struct btrfs_root *root, |
| 8868 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8869 | |
| 8870 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8871 | struct btrfs_trans_handle *trans; |
| 8872 | u64 alloc_flags; |
| 8873 | int ret; |
| 8874 | |
| 8875 | BUG_ON(cache->ro); |
| 8876 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8877 | again: |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 8878 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8879 | if (IS_ERR(trans)) |
| 8880 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8881 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8882 | /* |
| 8883 | * we're not allowed to set block groups readonly after the dirty |
| 8884 | * block groups cache has started writing. If it already started, |
| 8885 | * back off and let this transaction commit |
| 8886 | */ |
| 8887 | mutex_lock(&root->fs_info->ro_block_group_mutex); |
| 8888 | if (trans->transaction->dirty_bg_run) { |
| 8889 | u64 transid = trans->transid; |
| 8890 | |
| 8891 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
| 8892 | btrfs_end_transaction(trans, root); |
| 8893 | |
| 8894 | ret = btrfs_wait_for_commit(root, transid); |
| 8895 | if (ret) |
| 8896 | return ret; |
| 8897 | goto again; |
| 8898 | } |
| 8899 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 8900 | /* |
| 8901 | * if we are changing raid levels, try to allocate a corresponding |
| 8902 | * block group with the new raid level. |
| 8903 | */ |
| 8904 | alloc_flags = update_block_group_flags(root, cache->flags); |
| 8905 | if (alloc_flags != cache->flags) { |
| 8906 | ret = do_chunk_alloc(trans, root, alloc_flags, |
| 8907 | CHUNK_ALLOC_FORCE); |
| 8908 | /* |
| 8909 | * ENOSPC is allowed here, we may have enough space |
| 8910 | * already allocated at the new raid level to |
| 8911 | * carry on |
| 8912 | */ |
| 8913 | if (ret == -ENOSPC) |
| 8914 | ret = 0; |
| 8915 | if (ret < 0) |
| 8916 | goto out; |
| 8917 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8918 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8919 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8920 | if (!ret) |
| 8921 | goto out; |
| 8922 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8923 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8924 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8925 | if (ret < 0) |
| 8926 | goto out; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8927 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8928 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 8929 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 8930 | alloc_flags = update_block_group_flags(root, cache->flags); |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 8931 | lock_chunks(root->fs_info->chunk_root); |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 8932 | check_system_chunk(trans, root, alloc_flags); |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 8933 | unlock_chunks(root->fs_info->chunk_root); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 8934 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8935 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 8936 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8937 | btrfs_end_transaction(trans, root); |
| 8938 | return ret; |
| 8939 | } |
| 8940 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8941 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 8942 | struct btrfs_root *root, u64 type) |
| 8943 | { |
| 8944 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8945 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8946 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8947 | } |
| 8948 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8949 | /* |
| 8950 | * helper to account the unused space of all the readonly block group in the |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8951 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8952 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8953 | u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8954 | { |
| 8955 | struct btrfs_block_group_cache *block_group; |
| 8956 | u64 free_bytes = 0; |
| 8957 | int factor; |
| 8958 | |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8959 | /* It's df, we don't care if it's racey */ |
| 8960 | if (list_empty(&sinfo->ro_bgs)) |
| 8961 | return 0; |
| 8962 | |
| 8963 | spin_lock(&sinfo->lock); |
| 8964 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8965 | spin_lock(&block_group->lock); |
| 8966 | |
| 8967 | if (!block_group->ro) { |
| 8968 | spin_unlock(&block_group->lock); |
| 8969 | continue; |
| 8970 | } |
| 8971 | |
| 8972 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8973 | BTRFS_BLOCK_GROUP_RAID10 | |
| 8974 | BTRFS_BLOCK_GROUP_DUP)) |
| 8975 | factor = 2; |
| 8976 | else |
| 8977 | factor = 1; |
| 8978 | |
| 8979 | free_bytes += (block_group->key.offset - |
| 8980 | btrfs_block_group_used(&block_group->item)) * |
| 8981 | factor; |
| 8982 | |
| 8983 | spin_unlock(&block_group->lock); |
| 8984 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8985 | spin_unlock(&sinfo->lock); |
| 8986 | |
| 8987 | return free_bytes; |
| 8988 | } |
| 8989 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 8990 | void btrfs_set_block_group_rw(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8991 | struct btrfs_block_group_cache *cache) |
| 8992 | { |
| 8993 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8994 | u64 num_bytes; |
| 8995 | |
| 8996 | BUG_ON(!cache->ro); |
| 8997 | |
| 8998 | spin_lock(&sinfo->lock); |
| 8999 | spin_lock(&cache->lock); |
| 9000 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 9001 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
| 9002 | sinfo->bytes_readonly -= num_bytes; |
| 9003 | cache->ro = 0; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9004 | list_del_init(&cache->ro_list); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9005 | spin_unlock(&cache->lock); |
| 9006 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9007 | } |
| 9008 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9009 | /* |
| 9010 | * checks to see if its even possible to relocate this block group. |
| 9011 | * |
| 9012 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 9013 | * ok to go ahead and try. |
| 9014 | */ |
| 9015 | int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9016 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9017 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9018 | struct btrfs_space_info *space_info; |
| 9019 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 9020 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9021 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9022 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9023 | u64 dev_min = 1; |
| 9024 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9025 | u64 target; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9026 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9027 | int full = 0; |
| 9028 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9029 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9030 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9031 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9032 | /* odd, couldn't find the block group, leave it alone */ |
| 9033 | if (!block_group) |
| 9034 | return -1; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9035 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9036 | min_free = btrfs_block_group_used(&block_group->item); |
| 9037 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9038 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9039 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9040 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9041 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9042 | space_info = block_group->space_info; |
| 9043 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9044 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9045 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9046 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9047 | /* |
| 9048 | * if this is the last block group we have in this space, we can't |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9049 | * relocate it unless we're able to allocate a new chunk below. |
| 9050 | * |
| 9051 | * Otherwise, we need to make sure we have room in the space to handle |
| 9052 | * all of the extents from this block group. If we can, we're good |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9053 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9054 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9055 | (space_info->bytes_used + space_info->bytes_reserved + |
| 9056 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 9057 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9058 | spin_unlock(&space_info->lock); |
| 9059 | goto out; |
| 9060 | } |
| 9061 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9062 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9063 | /* |
| 9064 | * ok we don't have enough space, but maybe we have free space on our |
| 9065 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9066 | * alloc devices and guess if we have enough space. if this block |
| 9067 | * group is going to be restriped, run checks against the target |
| 9068 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9069 | */ |
| 9070 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 9071 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9072 | /* |
| 9073 | * index: |
| 9074 | * 0: raid10 |
| 9075 | * 1: raid1 |
| 9076 | * 2: dup |
| 9077 | * 3: raid0 |
| 9078 | * 4: single |
| 9079 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9080 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 9081 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 9082 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9083 | } else { |
| 9084 | /* |
| 9085 | * this is just a balance, so if we were marked as full |
| 9086 | * we know there is no space for a new chunk |
| 9087 | */ |
| 9088 | if (full) |
| 9089 | goto out; |
| 9090 | |
| 9091 | index = get_block_group_index(block_group); |
| 9092 | } |
| 9093 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9094 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9095 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9096 | /* Divide by 2 */ |
| 9097 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9098 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9099 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9100 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9101 | /* Multiply by 2 */ |
| 9102 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9103 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9104 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9105 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9106 | } |
| 9107 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9108 | /* We need to do this so that we can look at pending chunks */ |
| 9109 | trans = btrfs_join_transaction(root); |
| 9110 | if (IS_ERR(trans)) { |
| 9111 | ret = PTR_ERR(trans); |
| 9112 | goto out; |
| 9113 | } |
| 9114 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9115 | mutex_lock(&root->fs_info->chunk_mutex); |
| 9116 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9117 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9118 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9119 | /* |
| 9120 | * check to make sure we can actually find a chunk with enough |
| 9121 | * space to fit our block group in. |
| 9122 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9123 | if (device->total_bytes > device->bytes_used + min_free && |
| 9124 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9125 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9126 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9127 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9128 | dev_nr++; |
| 9129 | |
| 9130 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9131 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9132 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9133 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9134 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9135 | } |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9136 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9137 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9138 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9139 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9140 | return ret; |
| 9141 | } |
| 9142 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 9143 | static int find_first_block_group(struct btrfs_root *root, |
| 9144 | struct btrfs_path *path, struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9145 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9146 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9147 | struct btrfs_key found_key; |
| 9148 | struct extent_buffer *leaf; |
| 9149 | int slot; |
| 9150 | |
| 9151 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9152 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9153 | goto out; |
| 9154 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9155 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9156 | slot = path->slots[0]; |
| 9157 | leaf = path->nodes[0]; |
| 9158 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9159 | ret = btrfs_next_leaf(root, path); |
| 9160 | if (ret == 0) |
| 9161 | continue; |
| 9162 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9163 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9164 | break; |
| 9165 | } |
| 9166 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9167 | |
| 9168 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9169 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
| 9170 | ret = 0; |
| 9171 | goto out; |
| 9172 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9173 | path->slots[0]++; |
| 9174 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9175 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9176 | return ret; |
| 9177 | } |
| 9178 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9179 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 9180 | { |
| 9181 | struct btrfs_block_group_cache *block_group; |
| 9182 | u64 last = 0; |
| 9183 | |
| 9184 | while (1) { |
| 9185 | struct inode *inode; |
| 9186 | |
| 9187 | block_group = btrfs_lookup_first_block_group(info, last); |
| 9188 | while (block_group) { |
| 9189 | spin_lock(&block_group->lock); |
| 9190 | if (block_group->iref) |
| 9191 | break; |
| 9192 | spin_unlock(&block_group->lock); |
| 9193 | block_group = next_block_group(info->tree_root, |
| 9194 | block_group); |
| 9195 | } |
| 9196 | if (!block_group) { |
| 9197 | if (last == 0) |
| 9198 | break; |
| 9199 | last = 0; |
| 9200 | continue; |
| 9201 | } |
| 9202 | |
| 9203 | inode = block_group->inode; |
| 9204 | block_group->iref = 0; |
| 9205 | block_group->inode = NULL; |
| 9206 | spin_unlock(&block_group->lock); |
| 9207 | iput(inode); |
| 9208 | last = block_group->key.objectid + block_group->key.offset; |
| 9209 | btrfs_put_block_group(block_group); |
| 9210 | } |
| 9211 | } |
| 9212 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9213 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 9214 | { |
| 9215 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9216 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9217 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9218 | struct rb_node *n; |
| 9219 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9220 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9221 | while (!list_empty(&info->caching_block_groups)) { |
| 9222 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 9223 | struct btrfs_caching_control, list); |
| 9224 | list_del(&caching_ctl->list); |
| 9225 | put_caching_control(caching_ctl); |
| 9226 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9227 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9228 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9229 | spin_lock(&info->unused_bgs_lock); |
| 9230 | while (!list_empty(&info->unused_bgs)) { |
| 9231 | block_group = list_first_entry(&info->unused_bgs, |
| 9232 | struct btrfs_block_group_cache, |
| 9233 | bg_list); |
| 9234 | list_del_init(&block_group->bg_list); |
| 9235 | btrfs_put_block_group(block_group); |
| 9236 | } |
| 9237 | spin_unlock(&info->unused_bgs_lock); |
| 9238 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9239 | spin_lock(&info->block_group_cache_lock); |
| 9240 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 9241 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 9242 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9243 | rb_erase(&block_group->cache_node, |
| 9244 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9245 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9246 | spin_unlock(&info->block_group_cache_lock); |
| 9247 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9248 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9249 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9250 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 9251 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9252 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9253 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9254 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9255 | /* |
| 9256 | * We haven't cached this block group, which means we could |
| 9257 | * possibly have excluded extents on this block group. |
| 9258 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 9259 | if (block_group->cached == BTRFS_CACHE_NO || |
| 9260 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9261 | free_excluded_extents(info->extent_root, block_group); |
| 9262 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9263 | btrfs_remove_free_space_cache(block_group); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 9264 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9265 | |
| 9266 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9267 | } |
| 9268 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9269 | |
| 9270 | /* now that all the block groups are freed, go through and |
| 9271 | * free all the space_info structs. This is only called during |
| 9272 | * the final stages of unmount, and so we know nobody is |
| 9273 | * using them. We call synchronize_rcu() once before we start, |
| 9274 | * just to be on the safe side. |
| 9275 | */ |
| 9276 | synchronize_rcu(); |
| 9277 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 9278 | release_global_block_rsv(info); |
| 9279 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 9280 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9281 | int i; |
| 9282 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9283 | space_info = list_entry(info->space_info.next, |
| 9284 | struct btrfs_space_info, |
| 9285 | list); |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9286 | if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) { |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 9287 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9288 | space_info->bytes_reserved > 0 || |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 9289 | space_info->bytes_may_use > 0)) { |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9290 | dump_space_info(space_info, 0, 0); |
| 9291 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9292 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9293 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9294 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 9295 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9296 | kobj = space_info->block_group_kobjs[i]; |
| 9297 | space_info->block_group_kobjs[i] = NULL; |
| 9298 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9299 | kobject_del(kobj); |
| 9300 | kobject_put(kobj); |
| 9301 | } |
| 9302 | } |
| 9303 | kobject_del(&space_info->kobj); |
| 9304 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9305 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9306 | return 0; |
| 9307 | } |
| 9308 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9309 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 9310 | struct btrfs_block_group_cache *cache) |
| 9311 | { |
| 9312 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9313 | bool first = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9314 | |
| 9315 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9316 | if (list_empty(&space_info->block_groups[index])) |
| 9317 | first = true; |
| 9318 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 9319 | up_write(&space_info->groups_sem); |
| 9320 | |
| 9321 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9322 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9323 | int ret; |
| 9324 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9325 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 9326 | if (!rkobj) |
| 9327 | goto out_err; |
| 9328 | rkobj->raid_type = index; |
| 9329 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 9330 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 9331 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9332 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9333 | kobject_put(&rkobj->kobj); |
| 9334 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9335 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9336 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9337 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9338 | |
| 9339 | return; |
| 9340 | out_err: |
| 9341 | pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n"); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9342 | } |
| 9343 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9344 | static struct btrfs_block_group_cache * |
| 9345 | btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size) |
| 9346 | { |
| 9347 | struct btrfs_block_group_cache *cache; |
| 9348 | |
| 9349 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 9350 | if (!cache) |
| 9351 | return NULL; |
| 9352 | |
| 9353 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 9354 | GFP_NOFS); |
| 9355 | if (!cache->free_space_ctl) { |
| 9356 | kfree(cache); |
| 9357 | return NULL; |
| 9358 | } |
| 9359 | |
| 9360 | cache->key.objectid = start; |
| 9361 | cache->key.offset = size; |
| 9362 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 9363 | |
| 9364 | cache->sectorsize = root->sectorsize; |
| 9365 | cache->fs_info = root->fs_info; |
| 9366 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 9367 | &root->fs_info->mapping_tree, |
| 9368 | start); |
| 9369 | atomic_set(&cache->count, 1); |
| 9370 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 9371 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9372 | INIT_LIST_HEAD(&cache->list); |
| 9373 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9374 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9375 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9376 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 9377 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9378 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9379 | atomic_set(&cache->trimming, 0); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9380 | |
| 9381 | return cache; |
| 9382 | } |
| 9383 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9384 | int btrfs_read_block_groups(struct btrfs_root *root) |
| 9385 | { |
| 9386 | struct btrfs_path *path; |
| 9387 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9388 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 9389 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9390 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9391 | struct btrfs_key key; |
| 9392 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9393 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9394 | int need_clear = 0; |
| 9395 | u64 cache_gen; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9396 | |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 9397 | root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9398 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9399 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9400 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9401 | path = btrfs_alloc_path(); |
| 9402 | if (!path) |
| 9403 | return -ENOMEM; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 9404 | path->reada = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9405 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9406 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 9407 | if (btrfs_test_opt(root, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9408 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9409 | need_clear = 1; |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9410 | if (btrfs_test_opt(root, CLEAR_CACHE)) |
| 9411 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9412 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9413 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9414 | ret = find_first_block_group(root, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9415 | if (ret > 0) |
| 9416 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9417 | if (ret != 0) |
| 9418 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9419 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9420 | leaf = path->nodes[0]; |
| 9421 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9422 | |
| 9423 | cache = btrfs_create_block_group_cache(root, found_key.objectid, |
| 9424 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9425 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9426 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9427 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9428 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9429 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9430 | if (need_clear) { |
| 9431 | /* |
| 9432 | * When we mount with old space cache, we need to |
| 9433 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 9434 | * |
| 9435 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 9436 | * truncate the old free space cache inode and |
| 9437 | * setup a new one. |
| 9438 | * b) Setting 'dirty flag' makes sure that we flush |
| 9439 | * the new space cache info onto disk. |
| 9440 | */ |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9441 | if (btrfs_test_opt(root, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9442 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9443 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9444 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9445 | read_extent_buffer(leaf, &cache->item, |
| 9446 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 9447 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9448 | cache->flags = btrfs_block_group_flags(&cache->item); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9449 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9450 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9451 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9452 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9453 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9454 | * We need to exclude the super stripes now so that the space |
| 9455 | * info has super bytes accounted for, otherwise we'll think |
| 9456 | * we have more space than we actually do. |
| 9457 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9458 | ret = exclude_super_stripes(root, cache); |
| 9459 | if (ret) { |
| 9460 | /* |
| 9461 | * We may have excluded something, so call this just in |
| 9462 | * case. |
| 9463 | */ |
| 9464 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9465 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9466 | goto error; |
| 9467 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9468 | |
| 9469 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9470 | * check for two cases, either we are full, and therefore |
| 9471 | * don't need to bother with the caching work since we won't |
| 9472 | * find any space, or we are empty, and we can just add all |
| 9473 | * the space in and be done with it. This saves us _alot_ of |
| 9474 | * time, particularly in the full case. |
| 9475 | */ |
| 9476 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9477 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9478 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9479 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9480 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9481 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9482 | cache->cached = BTRFS_CACHE_FINISHED; |
| 9483 | add_new_free_space(cache, root->fs_info, |
| 9484 | found_key.objectid, |
| 9485 | found_key.objectid + |
| 9486 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9487 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9488 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9489 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9490 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9491 | if (ret) { |
| 9492 | btrfs_remove_free_space_cache(cache); |
| 9493 | btrfs_put_block_group(cache); |
| 9494 | goto error; |
| 9495 | } |
| 9496 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9497 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 9498 | btrfs_block_group_used(&cache->item), |
| 9499 | &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9500 | if (ret) { |
| 9501 | btrfs_remove_free_space_cache(cache); |
| 9502 | spin_lock(&info->block_group_cache_lock); |
| 9503 | rb_erase(&cache->cache_node, |
| 9504 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9505 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9506 | spin_unlock(&info->block_group_cache_lock); |
| 9507 | btrfs_put_block_group(cache); |
| 9508 | goto error; |
| 9509 | } |
| 9510 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9511 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9512 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9513 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9514 | spin_unlock(&cache->space_info->lock); |
| 9515 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9516 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9517 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 9518 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9519 | if (btrfs_chunk_readonly(root, cache->key.objectid)) { |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9520 | set_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9521 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
| 9522 | spin_lock(&info->unused_bgs_lock); |
| 9523 | /* Should always be true but just in case. */ |
| 9524 | if (list_empty(&cache->bg_list)) { |
| 9525 | btrfs_get_block_group(cache); |
| 9526 | list_add_tail(&cache->bg_list, |
| 9527 | &info->unused_bgs); |
| 9528 | } |
| 9529 | spin_unlock(&info->unused_bgs_lock); |
| 9530 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9531 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9532 | |
| 9533 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 9534 | if (!(get_alloc_profile(root, space_info->flags) & |
| 9535 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 9536 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9537 | BTRFS_BLOCK_GROUP_RAID5 | |
| 9538 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9539 | BTRFS_BLOCK_GROUP_DUP))) |
| 9540 | continue; |
| 9541 | /* |
| 9542 | * avoid allocating from un-mirrored block group if there are |
| 9543 | * mirrored block groups. |
| 9544 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9545 | list_for_each_entry(cache, |
| 9546 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 9547 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9548 | set_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9549 | list_for_each_entry(cache, |
| 9550 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 9551 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9552 | set_block_group_ro(cache, 1); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9553 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9554 | |
| 9555 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9556 | ret = 0; |
| 9557 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9558 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9559 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9560 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9561 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9562 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
| 9563 | struct btrfs_root *root) |
| 9564 | { |
| 9565 | struct btrfs_block_group_cache *block_group, *tmp; |
| 9566 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 9567 | struct btrfs_block_group_item item; |
| 9568 | struct btrfs_key key; |
| 9569 | int ret = 0; |
| 9570 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9571 | list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9572 | if (ret) |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 9573 | goto next; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9574 | |
| 9575 | spin_lock(&block_group->lock); |
| 9576 | memcpy(&item, &block_group->item, sizeof(item)); |
| 9577 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9578 | spin_unlock(&block_group->lock); |
| 9579 | |
| 9580 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 9581 | sizeof(item)); |
| 9582 | if (ret) |
| 9583 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9584 | ret = btrfs_finish_chunk_alloc(trans, extent_root, |
| 9585 | key.objectid, key.offset); |
| 9586 | if (ret) |
| 9587 | btrfs_abort_transaction(trans, extent_root, ret); |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 9588 | next: |
| 9589 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9590 | } |
| 9591 | } |
| 9592 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9593 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
| 9594 | struct btrfs_root *root, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 9595 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9596 | u64 size) |
| 9597 | { |
| 9598 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9599 | struct btrfs_root *extent_root; |
| 9600 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9601 | |
| 9602 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9603 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 9604 | btrfs_set_log_full_commit(root->fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 9605 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9606 | cache = btrfs_create_block_group_cache(root, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 9607 | if (!cache) |
| 9608 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9609 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9610 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9611 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9612 | btrfs_set_block_group_flags(&cache->item, type); |
| 9613 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9614 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9615 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9616 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9617 | ret = exclude_super_stripes(root, cache); |
| 9618 | if (ret) { |
| 9619 | /* |
| 9620 | * We may have excluded something, so call this just in |
| 9621 | * case. |
| 9622 | */ |
| 9623 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9624 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9625 | return ret; |
| 9626 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9627 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9628 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 9629 | chunk_offset + size); |
| 9630 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9631 | free_excluded_extents(root, cache); |
| 9632 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 9633 | /* |
| 9634 | * Call to ensure the corresponding space_info object is created and |
| 9635 | * assigned to our block group, but don't update its counters just yet. |
| 9636 | * We want our bg to be added to the rbtree with its ->space_info set. |
| 9637 | */ |
| 9638 | ret = update_space_info(root->fs_info, cache->flags, 0, 0, |
| 9639 | &cache->space_info); |
| 9640 | if (ret) { |
| 9641 | btrfs_remove_free_space_cache(cache); |
| 9642 | btrfs_put_block_group(cache); |
| 9643 | return ret; |
| 9644 | } |
| 9645 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9646 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9647 | if (ret) { |
| 9648 | btrfs_remove_free_space_cache(cache); |
| 9649 | btrfs_put_block_group(cache); |
| 9650 | return ret; |
| 9651 | } |
| 9652 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 9653 | /* |
| 9654 | * Now that our block group has its ->space_info set and is inserted in |
| 9655 | * the rbtree, update the space info's counters. |
| 9656 | */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9657 | ret = update_space_info(root->fs_info, cache->flags, size, bytes_used, |
| 9658 | &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9659 | if (ret) { |
| 9660 | btrfs_remove_free_space_cache(cache); |
| 9661 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 9662 | rb_erase(&cache->cache_node, |
| 9663 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9664 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9665 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 9666 | btrfs_put_block_group(cache); |
| 9667 | return ret; |
| 9668 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 9669 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9670 | |
| 9671 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9672 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9673 | spin_unlock(&cache->space_info->lock); |
| 9674 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9675 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9676 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9677 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9678 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 9679 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9680 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9681 | return 0; |
| 9682 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9683 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9684 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 9685 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9686 | u64 extra_flags = chunk_to_extended(flags) & |
| 9687 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9688 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9689 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9690 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 9691 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 9692 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 9693 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 9694 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 9695 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9696 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9697 | } |
| 9698 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9699 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9700 | struct btrfs_root *root, u64 group_start, |
| 9701 | struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9702 | { |
| 9703 | struct btrfs_path *path; |
| 9704 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9705 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9706 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9707 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9708 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9709 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9710 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9711 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9712 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 9713 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9714 | bool remove_em; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9715 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9716 | root = root->fs_info->extent_root; |
| 9717 | |
| 9718 | block_group = btrfs_lookup_block_group(root->fs_info, group_start); |
| 9719 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9720 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9721 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 9722 | /* |
| 9723 | * Free the reserved super bytes from this block group before |
| 9724 | * remove it. |
| 9725 | */ |
| 9726 | free_excluded_extents(root, block_group); |
| 9727 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9728 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9729 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9730 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 9731 | BTRFS_BLOCK_GROUP_RAID1 | |
| 9732 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9733 | factor = 2; |
| 9734 | else |
| 9735 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9736 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9737 | /* make sure this block group isn't part of an allocation cluster */ |
| 9738 | cluster = &root->fs_info->data_alloc_cluster; |
| 9739 | spin_lock(&cluster->refill_lock); |
| 9740 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9741 | spin_unlock(&cluster->refill_lock); |
| 9742 | |
| 9743 | /* |
| 9744 | * make sure this block group isn't part of a metadata |
| 9745 | * allocation cluster |
| 9746 | */ |
| 9747 | cluster = &root->fs_info->meta_alloc_cluster; |
| 9748 | spin_lock(&cluster->refill_lock); |
| 9749 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9750 | spin_unlock(&cluster->refill_lock); |
| 9751 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9752 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 9753 | if (!path) { |
| 9754 | ret = -ENOMEM; |
| 9755 | goto out; |
| 9756 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9757 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9758 | /* |
| 9759 | * get the inode first so any iput calls done for the io_list |
| 9760 | * aren't the final iput (no unlinks allowed now) |
| 9761 | */ |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 9762 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9763 | |
| 9764 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 9765 | /* |
| 9766 | * make sure our free spache cache IO is done before remove the |
| 9767 | * free space inode |
| 9768 | */ |
| 9769 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 9770 | if (!list_empty(&block_group->io_list)) { |
| 9771 | list_del_init(&block_group->io_list); |
| 9772 | |
| 9773 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 9774 | |
| 9775 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 9776 | btrfs_wait_cache_io(root, trans, block_group, |
| 9777 | &block_group->io_ctl, path, |
| 9778 | block_group->key.objectid); |
| 9779 | btrfs_put_block_group(block_group); |
| 9780 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 9781 | } |
| 9782 | |
| 9783 | if (!list_empty(&block_group->dirty_list)) { |
| 9784 | list_del_init(&block_group->dirty_list); |
| 9785 | btrfs_put_block_group(block_group); |
| 9786 | } |
| 9787 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 9788 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 9789 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9790 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 9791 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9792 | if (ret) { |
| 9793 | btrfs_add_delayed_iput(inode); |
| 9794 | goto out; |
| 9795 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9796 | clear_nlink(inode); |
| 9797 | /* One for the block groups ref */ |
| 9798 | spin_lock(&block_group->lock); |
| 9799 | if (block_group->iref) { |
| 9800 | block_group->iref = 0; |
| 9801 | block_group->inode = NULL; |
| 9802 | spin_unlock(&block_group->lock); |
| 9803 | iput(inode); |
| 9804 | } else { |
| 9805 | spin_unlock(&block_group->lock); |
| 9806 | } |
| 9807 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 9808 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9809 | } |
| 9810 | |
| 9811 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 9812 | key.offset = block_group->key.objectid; |
| 9813 | key.type = 0; |
| 9814 | |
| 9815 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 9816 | if (ret < 0) |
| 9817 | goto out; |
| 9818 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9819 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9820 | if (ret == 0) { |
| 9821 | ret = btrfs_del_item(trans, tree_root, path); |
| 9822 | if (ret) |
| 9823 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9824 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9825 | } |
| 9826 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9827 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9828 | rb_erase(&block_group->cache_node, |
| 9829 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 9830 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 9831 | |
| 9832 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 9833 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9834 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9835 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9836 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9837 | /* |
| 9838 | * we must use list_del_init so people can check to see if they |
| 9839 | * are still on the list after taking the semaphore |
| 9840 | */ |
| 9841 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9842 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9843 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 9844 | block_group->space_info->block_group_kobjs[index] = NULL; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9845 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9846 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9847 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9848 | if (kobj) { |
| 9849 | kobject_del(kobj); |
| 9850 | kobject_put(kobj); |
| 9851 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9852 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 9853 | if (block_group->has_caching_ctl) |
| 9854 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9855 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9856 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 9857 | if (block_group->has_caching_ctl) { |
| 9858 | down_write(&root->fs_info->commit_root_sem); |
| 9859 | if (!caching_ctl) { |
| 9860 | struct btrfs_caching_control *ctl; |
| 9861 | |
| 9862 | list_for_each_entry(ctl, |
| 9863 | &root->fs_info->caching_block_groups, list) |
| 9864 | if (ctl->block_group == block_group) { |
| 9865 | caching_ctl = ctl; |
| 9866 | atomic_inc(&caching_ctl->count); |
| 9867 | break; |
| 9868 | } |
| 9869 | } |
| 9870 | if (caching_ctl) |
| 9871 | list_del_init(&caching_ctl->list); |
| 9872 | up_write(&root->fs_info->commit_root_sem); |
| 9873 | if (caching_ctl) { |
| 9874 | /* Once for the caching bgs list and once for us. */ |
| 9875 | put_caching_control(caching_ctl); |
| 9876 | put_caching_control(caching_ctl); |
| 9877 | } |
| 9878 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9879 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9880 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 9881 | if (!list_empty(&block_group->dirty_list)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9882 | WARN_ON(1); |
| 9883 | } |
| 9884 | if (!list_empty(&block_group->io_list)) { |
| 9885 | WARN_ON(1); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9886 | } |
| 9887 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9888 | btrfs_remove_free_space_cache(block_group); |
| 9889 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9890 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 9891 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 9892 | |
| 9893 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 9894 | WARN_ON(block_group->space_info->total_bytes |
| 9895 | < block_group->key.offset); |
| 9896 | WARN_ON(block_group->space_info->bytes_readonly |
| 9897 | < block_group->key.offset); |
| 9898 | WARN_ON(block_group->space_info->disk_total |
| 9899 | < block_group->key.offset * factor); |
| 9900 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9901 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 9902 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9903 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 9904 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9905 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 9906 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9907 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9908 | |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9909 | lock_chunks(root); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 9910 | if (!list_empty(&em->list)) { |
| 9911 | /* We're in the transaction->pending_chunks list. */ |
| 9912 | free_extent_map(em); |
| 9913 | } |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9914 | spin_lock(&block_group->lock); |
| 9915 | block_group->removed = 1; |
| 9916 | /* |
| 9917 | * At this point trimming can't start on this block group, because we |
| 9918 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 9919 | * so no one can't find it anymore and even if someone already got this |
| 9920 | * block group before we removed it from the rbtree, they have already |
| 9921 | * incremented block_group->trimming - if they didn't, they won't find |
| 9922 | * any free space entries because we already removed them all when we |
| 9923 | * called btrfs_remove_free_space_cache(). |
| 9924 | * |
| 9925 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 9926 | * to prevent the same logical address range and physical device space |
| 9927 | * ranges from being reused for a new block group. This is because our |
| 9928 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 9929 | * completely transactionless, so while it is trimming a range the |
| 9930 | * currently running transaction might finish and a new one start, |
| 9931 | * allowing for new block groups to be created that can reuse the same |
| 9932 | * physical device locations unless we take this special care. |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame^] | 9933 | * |
| 9934 | * There may also be an implicit trim operation if the file system |
| 9935 | * is mounted with -odiscard. The same protections must remain |
| 9936 | * in place until the extents have been discarded completely when |
| 9937 | * the transaction commit has completed. |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9938 | */ |
| 9939 | remove_em = (atomic_read(&block_group->trimming) == 0); |
| 9940 | /* |
| 9941 | * Make sure a trimmer task always sees the em in the pinned_chunks list |
| 9942 | * if it sees block_group->removed == 1 (needs to lock block_group->lock |
| 9943 | * before checking block_group->removed). |
| 9944 | */ |
| 9945 | if (!remove_em) { |
| 9946 | /* |
| 9947 | * Our em might be in trans->transaction->pending_chunks which |
| 9948 | * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks), |
| 9949 | * and so is the fs_info->pinned_chunks list. |
| 9950 | * |
| 9951 | * So at this point we must be holding the chunk_mutex to avoid |
| 9952 | * any races with chunk allocation (more specifically at |
| 9953 | * volumes.c:contains_pending_extent()), to ensure it always |
| 9954 | * sees the em, either in the pending_chunks list or in the |
| 9955 | * pinned_chunks list. |
| 9956 | */ |
| 9957 | list_move_tail(&em->list, &root->fs_info->pinned_chunks); |
| 9958 | } |
| 9959 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9960 | |
| 9961 | if (remove_em) { |
| 9962 | struct extent_map_tree *em_tree; |
| 9963 | |
| 9964 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9965 | write_lock(&em_tree->lock); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 9966 | /* |
| 9967 | * The em might be in the pending_chunks list, so make sure the |
| 9968 | * chunk mutex is locked, since remove_extent_mapping() will |
| 9969 | * delete us from that list. |
| 9970 | */ |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9971 | remove_extent_mapping(em_tree, em); |
| 9972 | write_unlock(&em_tree->lock); |
| 9973 | /* once for the tree */ |
| 9974 | free_extent_map(em); |
| 9975 | } |
| 9976 | |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 9977 | unlock_chunks(root); |
| 9978 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 9979 | btrfs_put_block_group(block_group); |
| 9980 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9981 | |
| 9982 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 9983 | if (ret > 0) |
| 9984 | ret = -EIO; |
| 9985 | if (ret < 0) |
| 9986 | goto out; |
| 9987 | |
| 9988 | ret = btrfs_del_item(trans, root, path); |
| 9989 | out: |
| 9990 | btrfs_free_path(path); |
| 9991 | return ret; |
| 9992 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9993 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9994 | /* |
| 9995 | * Process the unused_bgs list and remove any that don't have any allocated |
| 9996 | * space inside of them. |
| 9997 | */ |
| 9998 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 9999 | { |
| 10000 | struct btrfs_block_group_cache *block_group; |
| 10001 | struct btrfs_space_info *space_info; |
| 10002 | struct btrfs_root *root = fs_info->extent_root; |
| 10003 | struct btrfs_trans_handle *trans; |
| 10004 | int ret = 0; |
| 10005 | |
| 10006 | if (!fs_info->open) |
| 10007 | return; |
| 10008 | |
| 10009 | spin_lock(&fs_info->unused_bgs_lock); |
| 10010 | while (!list_empty(&fs_info->unused_bgs)) { |
| 10011 | u64 start, end; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame^] | 10012 | int trimming; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10013 | |
| 10014 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 10015 | struct btrfs_block_group_cache, |
| 10016 | bg_list); |
| 10017 | space_info = block_group->space_info; |
| 10018 | list_del_init(&block_group->bg_list); |
| 10019 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 10020 | btrfs_put_block_group(block_group); |
| 10021 | continue; |
| 10022 | } |
| 10023 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10024 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10025 | mutex_lock(&root->fs_info->delete_unused_bgs_mutex); |
| 10026 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10027 | /* Don't want to race with allocators so take the groups_sem */ |
| 10028 | down_write(&space_info->groups_sem); |
| 10029 | spin_lock(&block_group->lock); |
| 10030 | if (block_group->reserved || |
| 10031 | btrfs_block_group_used(&block_group->item) || |
| 10032 | block_group->ro) { |
| 10033 | /* |
| 10034 | * We want to bail if we made new allocations or have |
| 10035 | * outstanding allocations in this block group. We do |
| 10036 | * the ro check in case balance is currently acting on |
| 10037 | * this block group. |
| 10038 | */ |
| 10039 | spin_unlock(&block_group->lock); |
| 10040 | up_write(&space_info->groups_sem); |
| 10041 | goto next; |
| 10042 | } |
| 10043 | spin_unlock(&block_group->lock); |
| 10044 | |
| 10045 | /* We don't want to force the issue, only flip if it's ok. */ |
| 10046 | ret = set_block_group_ro(block_group, 0); |
| 10047 | up_write(&space_info->groups_sem); |
| 10048 | if (ret < 0) { |
| 10049 | ret = 0; |
| 10050 | goto next; |
| 10051 | } |
| 10052 | |
| 10053 | /* |
| 10054 | * Want to do this before we do anything else so we can recover |
| 10055 | * properly if we fail to join the transaction. |
| 10056 | */ |
Forrest Liu | 3d84be7 | 2015-02-11 14:24:12 +0800 | [diff] [blame] | 10057 | /* 1 for btrfs_orphan_reserve_metadata() */ |
| 10058 | trans = btrfs_start_transaction(root, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10059 | if (IS_ERR(trans)) { |
| 10060 | btrfs_set_block_group_rw(root, block_group); |
| 10061 | ret = PTR_ERR(trans); |
| 10062 | goto next; |
| 10063 | } |
| 10064 | |
| 10065 | /* |
| 10066 | * We could have pending pinned extents for this block group, |
| 10067 | * just delete them, we don't care about them anymore. |
| 10068 | */ |
| 10069 | start = block_group->key.objectid; |
| 10070 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10071 | /* |
| 10072 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 10073 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 10074 | * another task might be running finish_extent_commit() for the |
| 10075 | * previous transaction N - 1, and have seen a range belonging |
| 10076 | * to the block group in freed_extents[] before we were able to |
| 10077 | * clear the whole block group range from freed_extents[]. This |
| 10078 | * means that task can lookup for the block group after we |
| 10079 | * unpinned it from freed_extents[] and removed it, leading to |
| 10080 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 10081 | */ |
| 10082 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10083 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10084 | EXTENT_DIRTY, GFP_NOFS); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10085 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10086 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10087 | btrfs_set_block_group_rw(root, block_group); |
| 10088 | goto end_trans; |
| 10089 | } |
| 10090 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10091 | EXTENT_DIRTY, GFP_NOFS); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10092 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10093 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10094 | btrfs_set_block_group_rw(root, block_group); |
| 10095 | goto end_trans; |
| 10096 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10097 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10098 | |
| 10099 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10100 | spin_lock(&space_info->lock); |
| 10101 | spin_lock(&block_group->lock); |
| 10102 | |
| 10103 | space_info->bytes_pinned -= block_group->pinned; |
| 10104 | space_info->bytes_readonly += block_group->pinned; |
| 10105 | percpu_counter_add(&space_info->total_bytes_pinned, |
| 10106 | -block_group->pinned); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10107 | block_group->pinned = 0; |
| 10108 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10109 | spin_unlock(&block_group->lock); |
| 10110 | spin_unlock(&space_info->lock); |
| 10111 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame^] | 10112 | /* DISCARD can flip during remount */ |
| 10113 | trimming = btrfs_test_opt(root, DISCARD); |
| 10114 | |
| 10115 | /* Implicit trim during transaction commit. */ |
| 10116 | if (trimming) |
| 10117 | btrfs_get_block_group_trimming(block_group); |
| 10118 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10119 | /* |
| 10120 | * Btrfs_remove_chunk will abort the transaction if things go |
| 10121 | * horribly wrong. |
| 10122 | */ |
| 10123 | ret = btrfs_remove_chunk(trans, root, |
| 10124 | block_group->key.objectid); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame^] | 10125 | |
| 10126 | if (ret) { |
| 10127 | if (trimming) |
| 10128 | btrfs_put_block_group_trimming(block_group); |
| 10129 | goto end_trans; |
| 10130 | } |
| 10131 | |
| 10132 | /* |
| 10133 | * If we're not mounted with -odiscard, we can just forget |
| 10134 | * about this block group. Otherwise we'll need to wait |
| 10135 | * until transaction commit to do the actual discard. |
| 10136 | */ |
| 10137 | if (trimming) { |
| 10138 | WARN_ON(!list_empty(&block_group->bg_list)); |
| 10139 | spin_lock(&trans->transaction->deleted_bgs_lock); |
| 10140 | list_move(&block_group->bg_list, |
| 10141 | &trans->transaction->deleted_bgs); |
| 10142 | spin_unlock(&trans->transaction->deleted_bgs_lock); |
| 10143 | btrfs_get_block_group(block_group); |
| 10144 | } |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10145 | end_trans: |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10146 | btrfs_end_transaction(trans, root); |
| 10147 | next: |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10148 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10149 | btrfs_put_block_group(block_group); |
| 10150 | spin_lock(&fs_info->unused_bgs_lock); |
| 10151 | } |
| 10152 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10153 | } |
| 10154 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10155 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 10156 | { |
| 10157 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10158 | struct btrfs_super_block *disk_super; |
| 10159 | u64 features; |
| 10160 | u64 flags; |
| 10161 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10162 | int ret; |
| 10163 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10164 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10165 | if (!btrfs_super_root(disk_super)) |
| 10166 | return 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10167 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10168 | features = btrfs_super_incompat_flags(disk_super); |
| 10169 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 10170 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10171 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10172 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 10173 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10174 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10175 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10176 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10177 | if (mixed) { |
| 10178 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
| 10179 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 10180 | } else { |
| 10181 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 10182 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 10183 | if (ret) |
| 10184 | goto out; |
| 10185 | |
| 10186 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 10187 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 10188 | } |
| 10189 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10190 | return ret; |
| 10191 | } |
| 10192 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10193 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 10194 | { |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 10195 | return unpin_extent_range(root, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10196 | } |
| 10197 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10198 | /* |
| 10199 | * It used to be that old block groups would be left around forever. |
| 10200 | * Iterating over them would be enough to trim unused space. Since we |
| 10201 | * now automatically remove them, we also need to iterate over unallocated |
| 10202 | * space. |
| 10203 | * |
| 10204 | * We don't want a transaction for this since the discard may take a |
| 10205 | * substantial amount of time. We don't require that a transaction be |
| 10206 | * running, but we do need to take a running transaction into account |
| 10207 | * to ensure that we're not discarding chunks that were released in |
| 10208 | * the current transaction. |
| 10209 | * |
| 10210 | * Holding the chunks lock will prevent other threads from allocating |
| 10211 | * or releasing chunks, but it won't prevent a running transaction |
| 10212 | * from committing and releasing the memory that the pending chunks |
| 10213 | * list head uses. For that, we need to take a reference to the |
| 10214 | * transaction. |
| 10215 | */ |
| 10216 | static int btrfs_trim_free_extents(struct btrfs_device *device, |
| 10217 | u64 minlen, u64 *trimmed) |
| 10218 | { |
| 10219 | u64 start = 0, len = 0; |
| 10220 | int ret; |
| 10221 | |
| 10222 | *trimmed = 0; |
| 10223 | |
| 10224 | /* Not writeable = nothing to do. */ |
| 10225 | if (!device->writeable) |
| 10226 | return 0; |
| 10227 | |
| 10228 | /* No free space = nothing to do. */ |
| 10229 | if (device->total_bytes <= device->bytes_used) |
| 10230 | return 0; |
| 10231 | |
| 10232 | ret = 0; |
| 10233 | |
| 10234 | while (1) { |
| 10235 | struct btrfs_fs_info *fs_info = device->dev_root->fs_info; |
| 10236 | struct btrfs_transaction *trans; |
| 10237 | u64 bytes; |
| 10238 | |
| 10239 | ret = mutex_lock_interruptible(&fs_info->chunk_mutex); |
| 10240 | if (ret) |
| 10241 | return ret; |
| 10242 | |
| 10243 | down_read(&fs_info->commit_root_sem); |
| 10244 | |
| 10245 | spin_lock(&fs_info->trans_lock); |
| 10246 | trans = fs_info->running_transaction; |
| 10247 | if (trans) |
| 10248 | atomic_inc(&trans->use_count); |
| 10249 | spin_unlock(&fs_info->trans_lock); |
| 10250 | |
| 10251 | ret = find_free_dev_extent_start(trans, device, minlen, start, |
| 10252 | &start, &len); |
| 10253 | if (trans) |
| 10254 | btrfs_put_transaction(trans); |
| 10255 | |
| 10256 | if (ret) { |
| 10257 | up_read(&fs_info->commit_root_sem); |
| 10258 | mutex_unlock(&fs_info->chunk_mutex); |
| 10259 | if (ret == -ENOSPC) |
| 10260 | ret = 0; |
| 10261 | break; |
| 10262 | } |
| 10263 | |
| 10264 | ret = btrfs_issue_discard(device->bdev, start, len, &bytes); |
| 10265 | up_read(&fs_info->commit_root_sem); |
| 10266 | mutex_unlock(&fs_info->chunk_mutex); |
| 10267 | |
| 10268 | if (ret) |
| 10269 | break; |
| 10270 | |
| 10271 | start += len; |
| 10272 | *trimmed += bytes; |
| 10273 | |
| 10274 | if (fatal_signal_pending(current)) { |
| 10275 | ret = -ERESTARTSYS; |
| 10276 | break; |
| 10277 | } |
| 10278 | |
| 10279 | cond_resched(); |
| 10280 | } |
| 10281 | |
| 10282 | return ret; |
| 10283 | } |
| 10284 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10285 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 10286 | { |
| 10287 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 10288 | struct btrfs_block_group_cache *cache = NULL; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10289 | struct btrfs_device *device; |
| 10290 | struct list_head *devices; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10291 | u64 group_trimmed; |
| 10292 | u64 start; |
| 10293 | u64 end; |
| 10294 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10295 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10296 | int ret = 0; |
| 10297 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10298 | /* |
| 10299 | * try to trim all FS space, our block group may start from non-zero. |
| 10300 | */ |
| 10301 | if (range->len == total_bytes) |
| 10302 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 10303 | else |
| 10304 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10305 | |
| 10306 | while (cache) { |
| 10307 | if (cache->key.objectid >= (range->start + range->len)) { |
| 10308 | btrfs_put_block_group(cache); |
| 10309 | break; |
| 10310 | } |
| 10311 | |
| 10312 | start = max(range->start, cache->key.objectid); |
| 10313 | end = min(range->start + range->len, |
| 10314 | cache->key.objectid + cache->key.offset); |
| 10315 | |
| 10316 | if (end - start >= range->minlen) { |
| 10317 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 10318 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 10319 | if (ret) { |
| 10320 | btrfs_put_block_group(cache); |
| 10321 | break; |
| 10322 | } |
| 10323 | ret = wait_block_group_cache_done(cache); |
| 10324 | if (ret) { |
| 10325 | btrfs_put_block_group(cache); |
| 10326 | break; |
| 10327 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10328 | } |
| 10329 | ret = btrfs_trim_block_group(cache, |
| 10330 | &group_trimmed, |
| 10331 | start, |
| 10332 | end, |
| 10333 | range->minlen); |
| 10334 | |
| 10335 | trimmed += group_trimmed; |
| 10336 | if (ret) { |
| 10337 | btrfs_put_block_group(cache); |
| 10338 | break; |
| 10339 | } |
| 10340 | } |
| 10341 | |
| 10342 | cache = next_block_group(fs_info->tree_root, cache); |
| 10343 | } |
| 10344 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10345 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
| 10346 | devices = &root->fs_info->fs_devices->alloc_list; |
| 10347 | list_for_each_entry(device, devices, dev_alloc_list) { |
| 10348 | ret = btrfs_trim_free_extents(device, range->minlen, |
| 10349 | &group_trimmed); |
| 10350 | if (ret) |
| 10351 | break; |
| 10352 | |
| 10353 | trimmed += group_trimmed; |
| 10354 | } |
| 10355 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
| 10356 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10357 | range->len = trimmed; |
| 10358 | return ret; |
| 10359 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10360 | |
| 10361 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10362 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 10363 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 10364 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 10365 | * but flush the data into disk after the snapshot creation, or to prevent |
| 10366 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 10367 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10368 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10369 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10370 | { |
| 10371 | percpu_counter_dec(&root->subv_writers->counter); |
| 10372 | /* |
| 10373 | * Make sure counter is updated before we wake up |
| 10374 | * waiters. |
| 10375 | */ |
| 10376 | smp_mb(); |
| 10377 | if (waitqueue_active(&root->subv_writers->wait)) |
| 10378 | wake_up(&root->subv_writers->wait); |
| 10379 | } |
| 10380 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10381 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10382 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 10383 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10384 | return 0; |
| 10385 | |
| 10386 | percpu_counter_inc(&root->subv_writers->counter); |
| 10387 | /* |
| 10388 | * Make sure counter is updated before we check for snapshot creation. |
| 10389 | */ |
| 10390 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 10391 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10392 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10393 | return 0; |
| 10394 | } |
| 10395 | return 1; |
| 10396 | } |