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 | b742bb82 | 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 | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1886 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1887 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1888 | { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1889 | int ret = 0; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame^] | 1890 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1891 | |
| 1892 | if (WARN_ON(start != aligned_start)) { |
| 1893 | len -= aligned_start - start; |
| 1894 | len = round_down(len, 1 << 9); |
| 1895 | start = aligned_start; |
| 1896 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1897 | |
| 1898 | *discarded_bytes = 0; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame^] | 1899 | if (len) { |
| 1900 | ret = blkdev_issue_discard(bdev, start >> 9, len >> 9, |
| 1901 | GFP_NOFS, 0); |
| 1902 | if (!ret) |
| 1903 | *discarded_bytes = len; |
| 1904 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1905 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1906 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1907 | |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 1908 | int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
| 1909 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1910 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1911 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1912 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1913 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1914 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 1915 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1916 | /* Tell the block device(s) that the sectors can be discarded */ |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 1917 | ret = btrfs_map_block(root->fs_info, REQ_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1918 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1919 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1920 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1921 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1922 | int i; |
| 1923 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1924 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1925 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1926 | u64 bytes; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1927 | if (!stripe->dev->can_discard) |
| 1928 | continue; |
| 1929 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1930 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 1931 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1932 | stripe->length, |
| 1933 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1934 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1935 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1936 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1937 | 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] | 1938 | |
| 1939 | /* |
| 1940 | * Just in case we get back EOPNOTSUPP for some reason, |
| 1941 | * just ignore the return value so we don't screw up |
| 1942 | * people calling discard_extent. |
| 1943 | */ |
| 1944 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1945 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 1946 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1947 | } |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1948 | |
| 1949 | if (actual_bytes) |
| 1950 | *actual_bytes = discarded_bytes; |
| 1951 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1952 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1953 | if (ret == -EOPNOTSUPP) |
| 1954 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1955 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1956 | } |
| 1957 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1958 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1959 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 1960 | struct btrfs_root *root, |
| 1961 | u64 bytenr, u64 num_bytes, u64 parent, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1962 | u64 root_objectid, u64 owner, u64 offset, |
| 1963 | int no_quota) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1964 | { |
| 1965 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1966 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1967 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1968 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 1969 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1970 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1971 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1972 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 1973 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1974 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1975 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1976 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1977 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 1978 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1979 | parent, root_objectid, owner, offset, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1980 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1981 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1982 | return ret; |
| 1983 | } |
| 1984 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1985 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1986 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 1987 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1988 | u64 parent, u64 root_objectid, |
| 1989 | u64 owner, u64 offset, int refs_to_add, |
| 1990 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1991 | { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1992 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1993 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1994 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1995 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1996 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 1997 | u64 bytenr = node->bytenr; |
| 1998 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1999 | u64 refs; |
| 2000 | int ret; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2001 | int no_quota = node->no_quota; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2002 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2003 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2004 | if (!path) |
| 2005 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2006 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2007 | if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled) |
| 2008 | no_quota = 1; |
| 2009 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2010 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2011 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2012 | /* 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] | 2013 | ret = insert_inline_extent_backref(trans, fs_info->extent_root, path, |
| 2014 | bytenr, num_bytes, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2015 | root_objectid, owner, offset, |
| 2016 | refs_to_add, extent_op); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 2017 | if ((ret < 0 && ret != -EAGAIN) || !ret) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2018 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2019 | |
| 2020 | /* |
| 2021 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2022 | * inline extent ref, so just update the reference count and add a |
| 2023 | * normal backref. |
| 2024 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2025 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2026 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2027 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2028 | refs = btrfs_extent_refs(leaf, item); |
| 2029 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2030 | if (extent_op) |
| 2031 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2032 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2033 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2034 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2035 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2036 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2037 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2038 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2039 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2040 | path, bytenr, parent, root_objectid, |
| 2041 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2042 | if (ret) |
| 2043 | btrfs_abort_transaction(trans, root, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2044 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2045 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2046 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2047 | } |
| 2048 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2049 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2050 | struct btrfs_root *root, |
| 2051 | struct btrfs_delayed_ref_node *node, |
| 2052 | struct btrfs_delayed_extent_op *extent_op, |
| 2053 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2054 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2055 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2056 | struct btrfs_delayed_data_ref *ref; |
| 2057 | struct btrfs_key ins; |
| 2058 | u64 parent = 0; |
| 2059 | u64 ref_root = 0; |
| 2060 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2061 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2062 | ins.objectid = node->bytenr; |
| 2063 | ins.offset = node->num_bytes; |
| 2064 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2065 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2066 | ref = btrfs_delayed_node_to_data_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2067 | trace_run_delayed_data_ref(node, ref, node->action); |
| 2068 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2069 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2070 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2071 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2072 | |
| 2073 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2074 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2075 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2076 | ret = alloc_reserved_file_extent(trans, root, |
| 2077 | parent, ref_root, flags, |
| 2078 | ref->objectid, ref->offset, |
| 2079 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2080 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2081 | ret = __btrfs_inc_extent_ref(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2082 | ref_root, ref->objectid, |
| 2083 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2084 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2085 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2086 | ret = __btrfs_free_extent(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2087 | ref_root, ref->objectid, |
| 2088 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2089 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2090 | } else { |
| 2091 | BUG(); |
| 2092 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2093 | return ret; |
| 2094 | } |
| 2095 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2096 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2097 | struct extent_buffer *leaf, |
| 2098 | struct btrfs_extent_item *ei) |
| 2099 | { |
| 2100 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2101 | if (extent_op->update_flags) { |
| 2102 | flags |= extent_op->flags_to_set; |
| 2103 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2104 | } |
| 2105 | |
| 2106 | if (extent_op->update_key) { |
| 2107 | struct btrfs_tree_block_info *bi; |
| 2108 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2109 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2110 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2111 | } |
| 2112 | } |
| 2113 | |
| 2114 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2115 | struct btrfs_root *root, |
| 2116 | struct btrfs_delayed_ref_node *node, |
| 2117 | struct btrfs_delayed_extent_op *extent_op) |
| 2118 | { |
| 2119 | struct btrfs_key key; |
| 2120 | struct btrfs_path *path; |
| 2121 | struct btrfs_extent_item *ei; |
| 2122 | struct extent_buffer *leaf; |
| 2123 | u32 item_size; |
| 2124 | int ret; |
| 2125 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2126 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2127 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2128 | if (trans->aborted) |
| 2129 | return 0; |
| 2130 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2131 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2132 | metadata = 0; |
| 2133 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2134 | path = btrfs_alloc_path(); |
| 2135 | if (!path) |
| 2136 | return -ENOMEM; |
| 2137 | |
| 2138 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2139 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2140 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2141 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2142 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2143 | } else { |
| 2144 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2145 | key.offset = node->num_bytes; |
| 2146 | } |
| 2147 | |
| 2148 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2149 | path->reada = 1; |
| 2150 | path->leave_spinning = 1; |
| 2151 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2152 | path, 0, 1); |
| 2153 | if (ret < 0) { |
| 2154 | err = ret; |
| 2155 | goto out; |
| 2156 | } |
| 2157 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2158 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2159 | if (path->slots[0] > 0) { |
| 2160 | path->slots[0]--; |
| 2161 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2162 | path->slots[0]); |
| 2163 | if (key.objectid == node->bytenr && |
| 2164 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2165 | key.offset == node->num_bytes) |
| 2166 | ret = 0; |
| 2167 | } |
| 2168 | if (ret > 0) { |
| 2169 | btrfs_release_path(path); |
| 2170 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2171 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2172 | key.objectid = node->bytenr; |
| 2173 | key.offset = node->num_bytes; |
| 2174 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2175 | goto again; |
| 2176 | } |
| 2177 | } else { |
| 2178 | err = -EIO; |
| 2179 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2180 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2181 | } |
| 2182 | |
| 2183 | leaf = path->nodes[0]; |
| 2184 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2185 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2186 | if (item_size < sizeof(*ei)) { |
| 2187 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2188 | path, (u64)-1, 0); |
| 2189 | if (ret < 0) { |
| 2190 | err = ret; |
| 2191 | goto out; |
| 2192 | } |
| 2193 | leaf = path->nodes[0]; |
| 2194 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2195 | } |
| 2196 | #endif |
| 2197 | BUG_ON(item_size < sizeof(*ei)); |
| 2198 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2199 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2200 | |
| 2201 | btrfs_mark_buffer_dirty(leaf); |
| 2202 | out: |
| 2203 | btrfs_free_path(path); |
| 2204 | return err; |
| 2205 | } |
| 2206 | |
| 2207 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2208 | struct btrfs_root *root, |
| 2209 | struct btrfs_delayed_ref_node *node, |
| 2210 | struct btrfs_delayed_extent_op *extent_op, |
| 2211 | int insert_reserved) |
| 2212 | { |
| 2213 | int ret = 0; |
| 2214 | struct btrfs_delayed_tree_ref *ref; |
| 2215 | struct btrfs_key ins; |
| 2216 | u64 parent = 0; |
| 2217 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2218 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2219 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2220 | |
| 2221 | ref = btrfs_delayed_node_to_tree_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2222 | trace_run_delayed_tree_ref(node, ref, node->action); |
| 2223 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2224 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2225 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2226 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2227 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2228 | ins.objectid = node->bytenr; |
| 2229 | if (skinny_metadata) { |
| 2230 | ins.offset = ref->level; |
| 2231 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2232 | } else { |
| 2233 | ins.offset = node->num_bytes; |
| 2234 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2235 | } |
| 2236 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2237 | BUG_ON(node->ref_mod != 1); |
| 2238 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2239 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2240 | ret = alloc_reserved_tree_block(trans, root, |
| 2241 | parent, ref_root, |
| 2242 | extent_op->flags_to_set, |
| 2243 | &extent_op->key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2244 | ref->level, &ins, |
| 2245 | node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2246 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2247 | ret = __btrfs_inc_extent_ref(trans, root, node, |
| 2248 | parent, ref_root, |
| 2249 | ref->level, 0, 1, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2250 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2251 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2252 | ret = __btrfs_free_extent(trans, root, node, |
| 2253 | parent, ref_root, |
| 2254 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2255 | } else { |
| 2256 | BUG(); |
| 2257 | } |
| 2258 | return ret; |
| 2259 | } |
| 2260 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2261 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2262 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2263 | struct btrfs_root *root, |
| 2264 | struct btrfs_delayed_ref_node *node, |
| 2265 | struct btrfs_delayed_extent_op *extent_op, |
| 2266 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2267 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2268 | int ret = 0; |
| 2269 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2270 | if (trans->aborted) { |
| 2271 | if (insert_reserved) |
| 2272 | btrfs_pin_extent(root, node->bytenr, |
| 2273 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2274 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2275 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2276 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2277 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2278 | struct btrfs_delayed_ref_head *head; |
| 2279 | /* |
| 2280 | * we've hit the end of the chain and we were supposed |
| 2281 | * to insert this extent into the tree. But, it got |
| 2282 | * deleted before we ever needed to insert it, so all |
| 2283 | * we have to do is clean up the accounting |
| 2284 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2285 | BUG_ON(extent_op); |
| 2286 | head = btrfs_delayed_node_to_head(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2287 | trace_run_delayed_ref_head(node, head, node->action); |
| 2288 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2289 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2290 | btrfs_pin_extent(root, node->bytenr, |
| 2291 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2292 | if (head->is_data) { |
| 2293 | ret = btrfs_del_csums(trans, root, |
| 2294 | node->bytenr, |
| 2295 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2296 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2297 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2298 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2299 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2300 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2301 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2302 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2303 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2304 | insert_reserved); |
| 2305 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2306 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2307 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2308 | insert_reserved); |
| 2309 | else |
| 2310 | BUG(); |
| 2311 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2312 | } |
| 2313 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2314 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2315 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2316 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2317 | struct btrfs_delayed_ref_node *ref; |
| 2318 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2319 | if (list_empty(&head->ref_list)) |
| 2320 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2321 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2322 | /* |
| 2323 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2324 | * This is to prevent a ref count from going down to zero, which deletes |
| 2325 | * the extent item from the extent tree, when there still are references |
| 2326 | * to add, which would fail because they would not find the extent item. |
| 2327 | */ |
| 2328 | list_for_each_entry(ref, &head->ref_list, list) { |
| 2329 | if (ref->action == BTRFS_ADD_DELAYED_REF) |
| 2330 | return ref; |
| 2331 | } |
| 2332 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2333 | return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node, |
| 2334 | list); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2335 | } |
| 2336 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2337 | /* |
| 2338 | * Returns 0 on success or if called with an already aborted transaction. |
| 2339 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2340 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2341 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2342 | struct btrfs_root *root, |
| 2343 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2344 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2345 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2346 | struct btrfs_delayed_ref_node *ref; |
| 2347 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2348 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2349 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2350 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2351 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2352 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2353 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2354 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2355 | |
| 2356 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2357 | while (1) { |
| 2358 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2359 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2360 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2361 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2362 | spin_lock(&delayed_refs->lock); |
| 2363 | locked_ref = btrfs_select_ref_head(trans); |
| 2364 | if (!locked_ref) { |
| 2365 | spin_unlock(&delayed_refs->lock); |
| 2366 | break; |
| 2367 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2368 | |
| 2369 | /* grab the lock that says we are going to process |
| 2370 | * all the refs for this head */ |
| 2371 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2372 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2373 | /* |
| 2374 | * we may have dropped the spin lock to get the head |
| 2375 | * mutex lock, and that might have given someone else |
| 2376 | * time to free the head. If that's true, it has been |
| 2377 | * removed from our list and we can move on. |
| 2378 | */ |
| 2379 | if (ret == -EAGAIN) { |
| 2380 | locked_ref = NULL; |
| 2381 | count++; |
| 2382 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2383 | } |
| 2384 | } |
| 2385 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2386 | spin_lock(&locked_ref->lock); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2387 | |
| 2388 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2389 | * locked_ref is the head node, so we have to go one |
| 2390 | * node back for any delayed ref updates |
| 2391 | */ |
| 2392 | ref = select_delayed_ref(locked_ref); |
| 2393 | |
| 2394 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2395 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2396 | spin_unlock(&locked_ref->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2397 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2398 | spin_lock(&delayed_refs->lock); |
| 2399 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2400 | delayed_refs->num_heads_ready++; |
| 2401 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2402 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2403 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2404 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2405 | continue; |
| 2406 | } |
| 2407 | |
| 2408 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2409 | * record the must insert reserved flag before we |
| 2410 | * drop the spin lock. |
| 2411 | */ |
| 2412 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2413 | locked_ref->must_insert_reserved = 0; |
| 2414 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2415 | extent_op = locked_ref->extent_op; |
| 2416 | locked_ref->extent_op = NULL; |
| 2417 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2418 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2419 | |
| 2420 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2421 | /* All delayed refs have been processed, Go ahead |
| 2422 | * and send the head node to run_one_delayed_ref, |
| 2423 | * so that any accounting fixes can happen |
| 2424 | */ |
| 2425 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2426 | |
| 2427 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2428 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2429 | extent_op = NULL; |
| 2430 | } |
| 2431 | |
| 2432 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2433 | spin_unlock(&locked_ref->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2434 | ret = run_delayed_extent_op(trans, root, |
| 2435 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2436 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2437 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2438 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2439 | /* |
| 2440 | * Need to reset must_insert_reserved if |
| 2441 | * there was an error so the abort stuff |
| 2442 | * can cleanup the reserved space |
| 2443 | * properly. |
| 2444 | */ |
| 2445 | if (must_insert_reserved) |
| 2446 | locked_ref->must_insert_reserved = 1; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2447 | locked_ref->processing = 0; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2448 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2449 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2450 | return ret; |
| 2451 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2452 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2453 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2454 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2455 | /* |
| 2456 | * Need to drop our head ref lock and re-aqcuire the |
| 2457 | * delayed ref lock and then re-check to make sure |
| 2458 | * nobody got added. |
| 2459 | */ |
| 2460 | spin_unlock(&locked_ref->lock); |
| 2461 | spin_lock(&delayed_refs->lock); |
| 2462 | spin_lock(&locked_ref->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2463 | if (!list_empty(&locked_ref->ref_list) || |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2464 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2465 | spin_unlock(&locked_ref->lock); |
| 2466 | spin_unlock(&delayed_refs->lock); |
| 2467 | continue; |
| 2468 | } |
| 2469 | ref->in_tree = 0; |
| 2470 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2471 | rb_erase(&locked_ref->href_node, |
| 2472 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2473 | spin_unlock(&delayed_refs->lock); |
| 2474 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2475 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2476 | ref->in_tree = 0; |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2477 | list_del(&ref->list); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2478 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2479 | atomic_dec(&delayed_refs->num_entries); |
| 2480 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2481 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2482 | /* |
| 2483 | * when we play the delayed ref, also correct the |
| 2484 | * ref_mod on head |
| 2485 | */ |
| 2486 | switch (ref->action) { |
| 2487 | case BTRFS_ADD_DELAYED_REF: |
| 2488 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2489 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2490 | break; |
| 2491 | case BTRFS_DROP_DELAYED_REF: |
| 2492 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2493 | break; |
| 2494 | default: |
| 2495 | WARN_ON(1); |
| 2496 | } |
| 2497 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2498 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2499 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2500 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2501 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2502 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2503 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2504 | if (ret) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2505 | locked_ref->processing = 0; |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2506 | btrfs_delayed_ref_unlock(locked_ref); |
| 2507 | btrfs_put_delayed_ref(ref); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2508 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2509 | return ret; |
| 2510 | } |
| 2511 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2512 | /* |
| 2513 | * If this node is a head, that means all the refs in this head |
| 2514 | * have been dealt with, and we will pick the next head to deal |
| 2515 | * with, so we must unlock the head and drop it from the cluster |
| 2516 | * list before we release it. |
| 2517 | */ |
| 2518 | if (btrfs_delayed_ref_is_head(ref)) { |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2519 | if (locked_ref->is_data && |
| 2520 | locked_ref->total_ref_mod < 0) { |
| 2521 | spin_lock(&delayed_refs->lock); |
| 2522 | delayed_refs->pending_csums -= ref->num_bytes; |
| 2523 | spin_unlock(&delayed_refs->lock); |
| 2524 | } |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2525 | btrfs_delayed_ref_unlock(locked_ref); |
| 2526 | locked_ref = NULL; |
| 2527 | } |
| 2528 | btrfs_put_delayed_ref(ref); |
| 2529 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2530 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2531 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2532 | |
| 2533 | /* |
| 2534 | * We don't want to include ref heads since we can have empty ref heads |
| 2535 | * and those will drastically skew our runtime down since we just do |
| 2536 | * accounting, no actual extent tree updates. |
| 2537 | */ |
| 2538 | if (actual_count > 0) { |
| 2539 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2540 | u64 avg; |
| 2541 | |
| 2542 | /* |
| 2543 | * We weigh the current average higher than our current runtime |
| 2544 | * to avoid large swings in the average. |
| 2545 | */ |
| 2546 | spin_lock(&delayed_refs->lock); |
| 2547 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2548 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2549 | spin_unlock(&delayed_refs->lock); |
| 2550 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2551 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2552 | } |
| 2553 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2554 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2555 | /* |
| 2556 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2557 | * correlates in most cases to the order added. To expose dependencies on this |
| 2558 | * order, we start to process the tree in the middle instead of the beginning |
| 2559 | */ |
| 2560 | static u64 find_middle(struct rb_root *root) |
| 2561 | { |
| 2562 | struct rb_node *n = root->rb_node; |
| 2563 | struct btrfs_delayed_ref_node *entry; |
| 2564 | int alt = 1; |
| 2565 | u64 middle; |
| 2566 | u64 first = 0, last = 0; |
| 2567 | |
| 2568 | n = rb_first(root); |
| 2569 | if (n) { |
| 2570 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2571 | first = entry->bytenr; |
| 2572 | } |
| 2573 | n = rb_last(root); |
| 2574 | if (n) { |
| 2575 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2576 | last = entry->bytenr; |
| 2577 | } |
| 2578 | n = root->rb_node; |
| 2579 | |
| 2580 | while (n) { |
| 2581 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2582 | WARN_ON(!entry->in_tree); |
| 2583 | |
| 2584 | middle = entry->bytenr; |
| 2585 | |
| 2586 | if (alt) |
| 2587 | n = n->rb_left; |
| 2588 | else |
| 2589 | n = n->rb_right; |
| 2590 | |
| 2591 | alt = 1 - alt; |
| 2592 | } |
| 2593 | return middle; |
| 2594 | } |
| 2595 | #endif |
| 2596 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2597 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2598 | { |
| 2599 | u64 num_bytes; |
| 2600 | |
| 2601 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2602 | sizeof(struct btrfs_extent_inline_ref)); |
| 2603 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2604 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2605 | |
| 2606 | /* |
| 2607 | * We don't ever fill up leaves all the way so multiply by 2 just to be |
| 2608 | * closer to what we're really going to want to ouse. |
| 2609 | */ |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2610 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2611 | } |
| 2612 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2613 | /* |
| 2614 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2615 | * would require to store the csums for that many bytes. |
| 2616 | */ |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 2617 | 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] | 2618 | { |
| 2619 | u64 csum_size; |
| 2620 | u64 num_csums_per_leaf; |
| 2621 | u64 num_csums; |
| 2622 | |
| 2623 | csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item); |
| 2624 | num_csums_per_leaf = div64_u64(csum_size, |
| 2625 | (u64)btrfs_super_csum_size(root->fs_info->super_copy)); |
| 2626 | num_csums = div64_u64(csum_bytes, root->sectorsize); |
| 2627 | num_csums += num_csums_per_leaf - 1; |
| 2628 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2629 | return num_csums; |
| 2630 | } |
| 2631 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2632 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2633 | struct btrfs_root *root) |
| 2634 | { |
| 2635 | struct btrfs_block_rsv *global_rsv; |
| 2636 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2637 | u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2638 | u64 num_dirty_bgs = trans->transaction->num_dirty_bgs; |
| 2639 | u64 num_bytes, num_dirty_bgs_bytes; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2640 | int ret = 0; |
| 2641 | |
| 2642 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 2643 | num_heads = heads_to_leaves(root, num_heads); |
| 2644 | if (num_heads > 1) |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 2645 | num_bytes += (num_heads - 1) * root->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2646 | num_bytes <<= 1; |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 2647 | num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2648 | num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root, |
| 2649 | num_dirty_bgs); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2650 | global_rsv = &root->fs_info->global_block_rsv; |
| 2651 | |
| 2652 | /* |
| 2653 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2654 | * wiggle room since running delayed refs can create more delayed refs. |
| 2655 | */ |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2656 | if (global_rsv->space_info->full) { |
| 2657 | num_dirty_bgs_bytes <<= 1; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2658 | num_bytes <<= 1; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2659 | } |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2660 | |
| 2661 | spin_lock(&global_rsv->lock); |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2662 | if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2663 | ret = 1; |
| 2664 | spin_unlock(&global_rsv->lock); |
| 2665 | return ret; |
| 2666 | } |
| 2667 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2668 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2669 | struct btrfs_root *root) |
| 2670 | { |
| 2671 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2672 | u64 num_entries = |
| 2673 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2674 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2675 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2676 | |
| 2677 | smp_mb(); |
| 2678 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2679 | val = num_entries * avg_runtime; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2680 | if (num_entries * avg_runtime >= NSEC_PER_SEC) |
| 2681 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2682 | if (val >= NSEC_PER_SEC / 2) |
| 2683 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2684 | |
| 2685 | return btrfs_check_space_for_delayed_refs(trans, root); |
| 2686 | } |
| 2687 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2688 | struct async_delayed_refs { |
| 2689 | struct btrfs_root *root; |
| 2690 | int count; |
| 2691 | int error; |
| 2692 | int sync; |
| 2693 | struct completion wait; |
| 2694 | struct btrfs_work work; |
| 2695 | }; |
| 2696 | |
| 2697 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2698 | { |
| 2699 | struct async_delayed_refs *async; |
| 2700 | struct btrfs_trans_handle *trans; |
| 2701 | int ret; |
| 2702 | |
| 2703 | async = container_of(work, struct async_delayed_refs, work); |
| 2704 | |
| 2705 | trans = btrfs_join_transaction(async->root); |
| 2706 | if (IS_ERR(trans)) { |
| 2707 | async->error = PTR_ERR(trans); |
| 2708 | goto done; |
| 2709 | } |
| 2710 | |
| 2711 | /* |
| 2712 | * trans->sync means that when we call end_transaciton, we won't |
| 2713 | * wait on delayed refs |
| 2714 | */ |
| 2715 | trans->sync = true; |
| 2716 | ret = btrfs_run_delayed_refs(trans, async->root, async->count); |
| 2717 | if (ret) |
| 2718 | async->error = ret; |
| 2719 | |
| 2720 | ret = btrfs_end_transaction(trans, async->root); |
| 2721 | if (ret && !async->error) |
| 2722 | async->error = ret; |
| 2723 | done: |
| 2724 | if (async->sync) |
| 2725 | complete(&async->wait); |
| 2726 | else |
| 2727 | kfree(async); |
| 2728 | } |
| 2729 | |
| 2730 | int btrfs_async_run_delayed_refs(struct btrfs_root *root, |
| 2731 | unsigned long count, int wait) |
| 2732 | { |
| 2733 | struct async_delayed_refs *async; |
| 2734 | int ret; |
| 2735 | |
| 2736 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2737 | if (!async) |
| 2738 | return -ENOMEM; |
| 2739 | |
| 2740 | async->root = root->fs_info->tree_root; |
| 2741 | async->count = count; |
| 2742 | async->error = 0; |
| 2743 | if (wait) |
| 2744 | async->sync = 1; |
| 2745 | else |
| 2746 | async->sync = 0; |
| 2747 | init_completion(&async->wait); |
| 2748 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2749 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2750 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2751 | |
| 2752 | btrfs_queue_work(root->fs_info->extent_workers, &async->work); |
| 2753 | |
| 2754 | if (wait) { |
| 2755 | wait_for_completion(&async->wait); |
| 2756 | ret = async->error; |
| 2757 | kfree(async); |
| 2758 | return ret; |
| 2759 | } |
| 2760 | return 0; |
| 2761 | } |
| 2762 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2763 | /* |
| 2764 | * this starts processing the delayed reference count updates and |
| 2765 | * extent insertions we have queued up so far. count can be |
| 2766 | * 0, which means to process everything in the tree at the start |
| 2767 | * of the run (but not newly added entries), or it can be some target |
| 2768 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2769 | * |
| 2770 | * Returns 0 on success or if called with an aborted transaction |
| 2771 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2772 | */ |
| 2773 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2774 | struct btrfs_root *root, unsigned long count) |
| 2775 | { |
| 2776 | struct rb_node *node; |
| 2777 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2778 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2779 | int ret; |
| 2780 | int run_all = count == (unsigned long)-1; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2781 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2782 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2783 | if (trans->aborted) |
| 2784 | return 0; |
| 2785 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2786 | if (root == root->fs_info->extent_root) |
| 2787 | root = root->fs_info->tree_root; |
| 2788 | |
| 2789 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2790 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2791 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2792 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2793 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2794 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2795 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2796 | #endif |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2797 | ret = __btrfs_run_delayed_refs(trans, root, count); |
| 2798 | if (ret < 0) { |
| 2799 | btrfs_abort_transaction(trans, root, ret); |
| 2800 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2801 | } |
| 2802 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2803 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2804 | if (!list_empty(&trans->new_bgs)) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2805 | btrfs_create_pending_block_groups(trans, root); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2806 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2807 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2808 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2809 | if (!node) { |
| 2810 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2811 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2812 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2813 | count = (unsigned long)-1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2814 | |
| 2815 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2816 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2817 | href_node); |
| 2818 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2819 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2820 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2821 | ref = &head->node; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2822 | atomic_inc(&ref->refs); |
| 2823 | |
| 2824 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2825 | /* |
| 2826 | * Mutex was contended, block until it's |
| 2827 | * released and try again |
| 2828 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2829 | mutex_lock(&head->mutex); |
| 2830 | mutex_unlock(&head->mutex); |
| 2831 | |
| 2832 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2833 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2834 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2835 | } else { |
| 2836 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2837 | } |
| 2838 | node = rb_next(node); |
| 2839 | } |
| 2840 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2841 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2842 | goto again; |
| 2843 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2844 | out: |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2845 | assert_qgroups_uptodate(trans); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2846 | return 0; |
| 2847 | } |
| 2848 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2849 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 2850 | struct btrfs_root *root, |
| 2851 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2852 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2853 | { |
| 2854 | struct btrfs_delayed_extent_op *extent_op; |
| 2855 | int ret; |
| 2856 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2857 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2858 | if (!extent_op) |
| 2859 | return -ENOMEM; |
| 2860 | |
| 2861 | extent_op->flags_to_set = flags; |
| 2862 | extent_op->update_flags = 1; |
| 2863 | extent_op->update_key = 0; |
| 2864 | extent_op->is_data = is_data ? 1 : 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2865 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2866 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2867 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 2868 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2869 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2870 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2871 | return ret; |
| 2872 | } |
| 2873 | |
| 2874 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 2875 | struct btrfs_root *root, |
| 2876 | struct btrfs_path *path, |
| 2877 | u64 objectid, u64 offset, u64 bytenr) |
| 2878 | { |
| 2879 | struct btrfs_delayed_ref_head *head; |
| 2880 | struct btrfs_delayed_ref_node *ref; |
| 2881 | struct btrfs_delayed_data_ref *data_ref; |
| 2882 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2883 | int ret = 0; |
| 2884 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2885 | delayed_refs = &trans->transaction->delayed_refs; |
| 2886 | spin_lock(&delayed_refs->lock); |
| 2887 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2888 | if (!head) { |
| 2889 | spin_unlock(&delayed_refs->lock); |
| 2890 | return 0; |
| 2891 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2892 | |
| 2893 | if (!mutex_trylock(&head->mutex)) { |
| 2894 | atomic_inc(&head->node.refs); |
| 2895 | spin_unlock(&delayed_refs->lock); |
| 2896 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2897 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2898 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2899 | /* |
| 2900 | * Mutex was contended, block until it's released and let |
| 2901 | * caller try again |
| 2902 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2903 | mutex_lock(&head->mutex); |
| 2904 | mutex_unlock(&head->mutex); |
| 2905 | btrfs_put_delayed_ref(&head->node); |
| 2906 | return -EAGAIN; |
| 2907 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2908 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2909 | |
| 2910 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2911 | list_for_each_entry(ref, &head->ref_list, list) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2912 | /* If it's a shared ref we know a cross reference exists */ |
| 2913 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 2914 | ret = 1; |
| 2915 | break; |
| 2916 | } |
| 2917 | |
| 2918 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 2919 | |
| 2920 | /* |
| 2921 | * If our ref doesn't match the one we're currently looking at |
| 2922 | * then we have a cross reference. |
| 2923 | */ |
| 2924 | if (data_ref->root != root->root_key.objectid || |
| 2925 | data_ref->objectid != objectid || |
| 2926 | data_ref->offset != offset) { |
| 2927 | ret = 1; |
| 2928 | break; |
| 2929 | } |
| 2930 | } |
| 2931 | spin_unlock(&head->lock); |
| 2932 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2933 | return ret; |
| 2934 | } |
| 2935 | |
| 2936 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 2937 | struct btrfs_root *root, |
| 2938 | struct btrfs_path *path, |
| 2939 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2940 | { |
| 2941 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2942 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2943 | struct btrfs_extent_data_ref *ref; |
| 2944 | struct btrfs_extent_inline_ref *iref; |
| 2945 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2946 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2947 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2948 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2949 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2950 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2951 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2952 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2953 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2954 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 2955 | if (ret < 0) |
| 2956 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2957 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 2958 | |
| 2959 | ret = -ENOENT; |
| 2960 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2961 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2962 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2963 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2964 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2965 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2966 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2967 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2968 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2969 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2970 | ret = 1; |
| 2971 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2972 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2973 | if (item_size < sizeof(*ei)) { |
| 2974 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 2975 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2976 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2977 | #endif |
| 2978 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2979 | |
| 2980 | if (item_size != sizeof(*ei) + |
| 2981 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 2982 | goto out; |
| 2983 | |
| 2984 | if (btrfs_extent_generation(leaf, ei) <= |
| 2985 | btrfs_root_last_snapshot(&root->root_item)) |
| 2986 | goto out; |
| 2987 | |
| 2988 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 2989 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 2990 | BTRFS_EXTENT_DATA_REF_KEY) |
| 2991 | goto out; |
| 2992 | |
| 2993 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 2994 | if (btrfs_extent_refs(leaf, ei) != |
| 2995 | btrfs_extent_data_ref_count(leaf, ref) || |
| 2996 | btrfs_extent_data_ref_root(leaf, ref) != |
| 2997 | root->root_key.objectid || |
| 2998 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 2999 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3000 | goto out; |
| 3001 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3002 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3003 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3004 | return ret; |
| 3005 | } |
| 3006 | |
| 3007 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 3008 | struct btrfs_root *root, |
| 3009 | u64 objectid, u64 offset, u64 bytenr) |
| 3010 | { |
| 3011 | struct btrfs_path *path; |
| 3012 | int ret; |
| 3013 | int ret2; |
| 3014 | |
| 3015 | path = btrfs_alloc_path(); |
| 3016 | if (!path) |
| 3017 | return -ENOENT; |
| 3018 | |
| 3019 | do { |
| 3020 | ret = check_committed_ref(trans, root, path, objectid, |
| 3021 | offset, bytenr); |
| 3022 | if (ret && ret != -ENOENT) |
| 3023 | goto out; |
| 3024 | |
| 3025 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3026 | offset, bytenr); |
| 3027 | } while (ret2 == -EAGAIN); |
| 3028 | |
| 3029 | if (ret2 && ret2 != -ENOENT) { |
| 3030 | ret = ret2; |
| 3031 | goto out; |
| 3032 | } |
| 3033 | |
| 3034 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3035 | ret = 0; |
| 3036 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3037 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3038 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3039 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3040 | return ret; |
| 3041 | } |
| 3042 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3043 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3044 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3045 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3046 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3047 | { |
| 3048 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3049 | u64 num_bytes; |
| 3050 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3051 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3052 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3053 | struct btrfs_key key; |
| 3054 | struct btrfs_file_extent_item *fi; |
| 3055 | int i; |
| 3056 | int level; |
| 3057 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3058 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3059 | u64, u64, u64, u64, u64, u64, int); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3060 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3061 | |
| 3062 | if (btrfs_test_is_dummy_root(root)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3063 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3064 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3065 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3066 | nritems = btrfs_header_nritems(buf); |
| 3067 | level = btrfs_header_level(buf); |
| 3068 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3069 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3070 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3071 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3072 | if (inc) |
| 3073 | process_func = btrfs_inc_extent_ref; |
| 3074 | else |
| 3075 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3076 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3077 | if (full_backref) |
| 3078 | parent = buf->start; |
| 3079 | else |
| 3080 | parent = 0; |
| 3081 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3082 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3083 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3084 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3085 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3086 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3087 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3088 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3089 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3090 | BTRFS_FILE_EXTENT_INLINE) |
| 3091 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3092 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3093 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3094 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3095 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3096 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3097 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3098 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3099 | parent, ref_root, key.objectid, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3100 | key.offset, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3101 | if (ret) |
| 3102 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3103 | } else { |
| 3104 | bytenr = btrfs_node_blockptr(buf, i); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 3105 | num_bytes = root->nodesize; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3106 | ret = process_func(trans, root, bytenr, num_bytes, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3107 | parent, ref_root, level - 1, 0, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3108 | 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3109 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3110 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3111 | } |
| 3112 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3113 | return 0; |
| 3114 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3115 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3116 | } |
| 3117 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3118 | 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] | 3119 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3120 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3121 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3122 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3123 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3124 | 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] | 3125 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3126 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3127 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3128 | } |
| 3129 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3130 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3131 | struct btrfs_root *root, |
| 3132 | struct btrfs_path *path, |
| 3133 | struct btrfs_block_group_cache *cache) |
| 3134 | { |
| 3135 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3136 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3137 | unsigned long bi; |
| 3138 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3139 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3140 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3141 | if (ret) { |
| 3142 | if (ret > 0) |
| 3143 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3144 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3145 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3146 | |
| 3147 | leaf = path->nodes[0]; |
| 3148 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3149 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3150 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3151 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3152 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3153 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3154 | |
| 3155 | } |
| 3156 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3157 | static struct btrfs_block_group_cache * |
| 3158 | next_block_group(struct btrfs_root *root, |
| 3159 | struct btrfs_block_group_cache *cache) |
| 3160 | { |
| 3161 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3162 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3163 | spin_lock(&root->fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3164 | |
| 3165 | /* If our block group was removed, we need a full search. */ |
| 3166 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3167 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3168 | |
| 3169 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3170 | btrfs_put_block_group(cache); |
| 3171 | cache = btrfs_lookup_first_block_group(root->fs_info, |
| 3172 | next_bytenr); |
| 3173 | return cache; |
| 3174 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3175 | node = rb_next(&cache->cache_node); |
| 3176 | btrfs_put_block_group(cache); |
| 3177 | if (node) { |
| 3178 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3179 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3180 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3181 | } else |
| 3182 | cache = NULL; |
| 3183 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3184 | return cache; |
| 3185 | } |
| 3186 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3187 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3188 | struct btrfs_trans_handle *trans, |
| 3189 | struct btrfs_path *path) |
| 3190 | { |
| 3191 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3192 | struct inode *inode = NULL; |
| 3193 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3194 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3195 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3196 | int retries = 0; |
| 3197 | int ret = 0; |
| 3198 | |
| 3199 | /* |
| 3200 | * If this block group is smaller than 100 megs don't bother caching the |
| 3201 | * block group. |
| 3202 | */ |
| 3203 | if (block_group->key.offset < (100 * 1024 * 1024)) { |
| 3204 | spin_lock(&block_group->lock); |
| 3205 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3206 | spin_unlock(&block_group->lock); |
| 3207 | return 0; |
| 3208 | } |
| 3209 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3210 | if (trans->aborted) |
| 3211 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3212 | again: |
| 3213 | inode = lookup_free_space_inode(root, block_group, path); |
| 3214 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3215 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3216 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3217 | goto out; |
| 3218 | } |
| 3219 | |
| 3220 | if (IS_ERR(inode)) { |
| 3221 | BUG_ON(retries); |
| 3222 | retries++; |
| 3223 | |
| 3224 | if (block_group->ro) |
| 3225 | goto out_free; |
| 3226 | |
| 3227 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3228 | if (ret) |
| 3229 | goto out_free; |
| 3230 | goto again; |
| 3231 | } |
| 3232 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3233 | /* We've already setup this transaction, go ahead and exit */ |
| 3234 | if (block_group->cache_generation == trans->transid && |
| 3235 | i_size_read(inode)) { |
| 3236 | dcs = BTRFS_DC_SETUP; |
| 3237 | goto out_put; |
| 3238 | } |
| 3239 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3240 | /* |
| 3241 | * We want to set the generation to 0, that way if anything goes wrong |
| 3242 | * from here on out we know not to trust this cache when we load up next |
| 3243 | * time. |
| 3244 | */ |
| 3245 | BTRFS_I(inode)->generation = 0; |
| 3246 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3247 | if (ret) { |
| 3248 | /* |
| 3249 | * So theoretically we could recover from this, simply set the |
| 3250 | * super cache generation to 0 so we know to invalidate the |
| 3251 | * cache, but then we'd have to keep track of the block groups |
| 3252 | * that fail this way so we know we _have_ to reset this cache |
| 3253 | * before the next commit or risk reading stale cache. So to |
| 3254 | * limit our exposure to horrible edge cases lets just abort the |
| 3255 | * transaction, this only happens in really bad situations |
| 3256 | * anyway. |
| 3257 | */ |
| 3258 | btrfs_abort_transaction(trans, root, ret); |
| 3259 | goto out_put; |
| 3260 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3261 | WARN_ON(ret); |
| 3262 | |
| 3263 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3264 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3265 | &root->fs_info->global_block_rsv); |
| 3266 | if (ret) |
| 3267 | goto out_put; |
| 3268 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3269 | ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3270 | if (ret) |
| 3271 | goto out_put; |
| 3272 | } |
| 3273 | |
| 3274 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3275 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Chris Mason | e4c88f0 | 2015-04-18 05:22:48 -0700 | [diff] [blame] | 3276 | !btrfs_test_opt(root, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3277 | /* |
| 3278 | * don't bother trying to write stuff out _if_ |
| 3279 | * a) we're not cached, |
| 3280 | * b) we're with nospace_cache mount option. |
| 3281 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3282 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3283 | spin_unlock(&block_group->lock); |
| 3284 | goto out_put; |
| 3285 | } |
| 3286 | spin_unlock(&block_group->lock); |
| 3287 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3288 | /* |
| 3289 | * Try to preallocate enough space based on how big the block group is. |
| 3290 | * Keep in mind this has to include any pinned space which could end up |
| 3291 | * taking up quite a bit since it's not folded into the other space |
| 3292 | * cache. |
| 3293 | */ |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3294 | num_pages = div_u64(block_group->key.offset, 256 * 1024 * 1024); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3295 | if (!num_pages) |
| 3296 | num_pages = 1; |
| 3297 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3298 | num_pages *= 16; |
| 3299 | num_pages *= PAGE_CACHE_SIZE; |
| 3300 | |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 3301 | ret = btrfs_check_data_free_space(inode, num_pages, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3302 | if (ret) |
| 3303 | goto out_put; |
| 3304 | |
| 3305 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3306 | num_pages, num_pages, |
| 3307 | &alloc_hint); |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3308 | if (!ret) |
| 3309 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3310 | btrfs_free_reserved_data_space(inode, num_pages); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3311 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3312 | out_put: |
| 3313 | iput(inode); |
| 3314 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3315 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3316 | out: |
| 3317 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3318 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3319 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3320 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3321 | spin_unlock(&block_group->lock); |
| 3322 | |
| 3323 | return ret; |
| 3324 | } |
| 3325 | |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3326 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans, |
| 3327 | struct btrfs_root *root) |
| 3328 | { |
| 3329 | struct btrfs_block_group_cache *cache, *tmp; |
| 3330 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3331 | struct btrfs_path *path; |
| 3332 | |
| 3333 | if (list_empty(&cur_trans->dirty_bgs) || |
| 3334 | !btrfs_test_opt(root, SPACE_CACHE)) |
| 3335 | return 0; |
| 3336 | |
| 3337 | path = btrfs_alloc_path(); |
| 3338 | if (!path) |
| 3339 | return -ENOMEM; |
| 3340 | |
| 3341 | /* Could add new block groups, use _safe just in case */ |
| 3342 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3343 | dirty_list) { |
| 3344 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3345 | cache_save_setup(cache, trans, path); |
| 3346 | } |
| 3347 | |
| 3348 | btrfs_free_path(path); |
| 3349 | return 0; |
| 3350 | } |
| 3351 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3352 | /* |
| 3353 | * transaction commit does final block group cache writeback during a |
| 3354 | * critical section where nothing is allowed to change the FS. This is |
| 3355 | * required in order for the cache to actually match the block group, |
| 3356 | * but can introduce a lot of latency into the commit. |
| 3357 | * |
| 3358 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3359 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3360 | * block group changes again during the commit, but it greatly reduces |
| 3361 | * the commit latency by getting rid of the easy block groups while |
| 3362 | * we're still allowing others to join the commit. |
| 3363 | */ |
| 3364 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3365 | struct btrfs_root *root) |
| 3366 | { |
| 3367 | struct btrfs_block_group_cache *cache; |
| 3368 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3369 | int ret = 0; |
| 3370 | int should_put; |
| 3371 | struct btrfs_path *path = NULL; |
| 3372 | LIST_HEAD(dirty); |
| 3373 | struct list_head *io = &cur_trans->io_bgs; |
| 3374 | int num_started = 0; |
| 3375 | int loops = 0; |
| 3376 | |
| 3377 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3378 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3379 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3380 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3381 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3382 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3383 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3384 | |
| 3385 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3386 | /* |
| 3387 | * make sure all the block groups on our dirty list actually |
| 3388 | * exist |
| 3389 | */ |
| 3390 | btrfs_create_pending_block_groups(trans, root); |
| 3391 | |
| 3392 | if (!path) { |
| 3393 | path = btrfs_alloc_path(); |
| 3394 | if (!path) |
| 3395 | return -ENOMEM; |
| 3396 | } |
| 3397 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3398 | /* |
| 3399 | * cache_write_mutex is here only to save us from balance or automatic |
| 3400 | * removal of empty block groups deleting this block group while we are |
| 3401 | * writing out the cache |
| 3402 | */ |
| 3403 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3404 | while (!list_empty(&dirty)) { |
| 3405 | cache = list_first_entry(&dirty, |
| 3406 | struct btrfs_block_group_cache, |
| 3407 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3408 | /* |
| 3409 | * this can happen if something re-dirties a block |
| 3410 | * group that is already under IO. Just wait for it to |
| 3411 | * finish and then do it all again |
| 3412 | */ |
| 3413 | if (!list_empty(&cache->io_list)) { |
| 3414 | list_del_init(&cache->io_list); |
| 3415 | btrfs_wait_cache_io(root, trans, cache, |
| 3416 | &cache->io_ctl, path, |
| 3417 | cache->key.objectid); |
| 3418 | btrfs_put_block_group(cache); |
| 3419 | } |
| 3420 | |
| 3421 | |
| 3422 | /* |
| 3423 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3424 | * if it should update the cache_state. Don't delete |
| 3425 | * until after we wait. |
| 3426 | * |
| 3427 | * Since we're not running in the commit critical section |
| 3428 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3429 | */ |
| 3430 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3431 | list_del_init(&cache->dirty_list); |
| 3432 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3433 | |
| 3434 | should_put = 1; |
| 3435 | |
| 3436 | cache_save_setup(cache, trans, path); |
| 3437 | |
| 3438 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3439 | cache->io_ctl.inode = NULL; |
| 3440 | ret = btrfs_write_out_cache(root, trans, cache, path); |
| 3441 | if (ret == 0 && cache->io_ctl.inode) { |
| 3442 | num_started++; |
| 3443 | should_put = 0; |
| 3444 | |
| 3445 | /* |
| 3446 | * the cache_write_mutex is protecting |
| 3447 | * the io_list |
| 3448 | */ |
| 3449 | list_add_tail(&cache->io_list, io); |
| 3450 | } else { |
| 3451 | /* |
| 3452 | * if we failed to write the cache, the |
| 3453 | * generation will be bad and life goes on |
| 3454 | */ |
| 3455 | ret = 0; |
| 3456 | } |
| 3457 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3458 | if (!ret) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3459 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3460 | /* |
| 3461 | * Our block group might still be attached to the list |
| 3462 | * of new block groups in the transaction handle of some |
| 3463 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3464 | * means its block group item isn't yet in the extent |
| 3465 | * tree. If this happens ignore the error, as we will |
| 3466 | * try again later in the critical section of the |
| 3467 | * transaction commit. |
| 3468 | */ |
| 3469 | if (ret == -ENOENT) { |
| 3470 | ret = 0; |
| 3471 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3472 | if (list_empty(&cache->dirty_list)) { |
| 3473 | list_add_tail(&cache->dirty_list, |
| 3474 | &cur_trans->dirty_bgs); |
| 3475 | btrfs_get_block_group(cache); |
| 3476 | } |
| 3477 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3478 | } else if (ret) { |
| 3479 | btrfs_abort_transaction(trans, root, ret); |
| 3480 | } |
| 3481 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3482 | |
| 3483 | /* if its not on the io list, we need to put the block group */ |
| 3484 | if (should_put) |
| 3485 | btrfs_put_block_group(cache); |
| 3486 | |
| 3487 | if (ret) |
| 3488 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3489 | |
| 3490 | /* |
| 3491 | * Avoid blocking other tasks for too long. It might even save |
| 3492 | * us from writing caches for block groups that are going to be |
| 3493 | * removed. |
| 3494 | */ |
| 3495 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3496 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3497 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3498 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3499 | |
| 3500 | /* |
| 3501 | * go through delayed refs for all the stuff we've just kicked off |
| 3502 | * and then loop back (just once) |
| 3503 | */ |
| 3504 | ret = btrfs_run_delayed_refs(trans, root, 0); |
| 3505 | if (!ret && loops == 0) { |
| 3506 | loops++; |
| 3507 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3508 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3509 | /* |
| 3510 | * dirty_bgs_lock protects us from concurrent block group |
| 3511 | * deletes too (not just cache_write_mutex). |
| 3512 | */ |
| 3513 | if (!list_empty(&dirty)) { |
| 3514 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3515 | goto again; |
| 3516 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3517 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3518 | } |
| 3519 | |
| 3520 | btrfs_free_path(path); |
| 3521 | return ret; |
| 3522 | } |
| 3523 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3524 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3525 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3526 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3527 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3528 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3529 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3530 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3531 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3532 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3533 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3534 | |
| 3535 | path = btrfs_alloc_path(); |
| 3536 | if (!path) |
| 3537 | return -ENOMEM; |
| 3538 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3539 | /* |
| 3540 | * We don't need the lock here since we are protected by the transaction |
| 3541 | * commit. We want to do the cache_save_setup first and then run the |
| 3542 | * delayed refs to make sure we have the best chance at doing this all |
| 3543 | * in one shot. |
| 3544 | */ |
| 3545 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3546 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3547 | struct btrfs_block_group_cache, |
| 3548 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3549 | |
| 3550 | /* |
| 3551 | * this can happen if cache_save_setup re-dirties a block |
| 3552 | * group that is already under IO. Just wait for it to |
| 3553 | * finish and then do it all again |
| 3554 | */ |
| 3555 | if (!list_empty(&cache->io_list)) { |
| 3556 | list_del_init(&cache->io_list); |
| 3557 | btrfs_wait_cache_io(root, trans, cache, |
| 3558 | &cache->io_ctl, path, |
| 3559 | cache->key.objectid); |
| 3560 | btrfs_put_block_group(cache); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3561 | } |
| 3562 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3563 | /* |
| 3564 | * don't remove from the dirty list until after we've waited |
| 3565 | * on any pending IO |
| 3566 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3567 | list_del_init(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3568 | should_put = 1; |
| 3569 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3570 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3571 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3572 | if (!ret) |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3573 | ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1); |
| 3574 | |
| 3575 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3576 | cache->io_ctl.inode = NULL; |
| 3577 | ret = btrfs_write_out_cache(root, trans, cache, path); |
| 3578 | if (ret == 0 && cache->io_ctl.inode) { |
| 3579 | num_started++; |
| 3580 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3581 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3582 | } else { |
| 3583 | /* |
| 3584 | * if we failed to write the cache, the |
| 3585 | * generation will be bad and life goes on |
| 3586 | */ |
| 3587 | ret = 0; |
| 3588 | } |
| 3589 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3590 | if (!ret) { |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3591 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3592 | if (ret) |
| 3593 | btrfs_abort_transaction(trans, root, ret); |
| 3594 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3595 | |
| 3596 | /* if its not on the io list, we need to put the block group */ |
| 3597 | if (should_put) |
| 3598 | btrfs_put_block_group(cache); |
| 3599 | } |
| 3600 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3601 | while (!list_empty(io)) { |
| 3602 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3603 | io_list); |
| 3604 | list_del_init(&cache->io_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3605 | btrfs_wait_cache_io(root, trans, cache, |
| 3606 | &cache->io_ctl, path, cache->key.objectid); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3607 | btrfs_put_block_group(cache); |
| 3608 | } |
| 3609 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3610 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3611 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3612 | } |
| 3613 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3614 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3615 | { |
| 3616 | struct btrfs_block_group_cache *block_group; |
| 3617 | int readonly = 0; |
| 3618 | |
| 3619 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3620 | if (!block_group || block_group->ro) |
| 3621 | readonly = 1; |
| 3622 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3623 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3624 | return readonly; |
| 3625 | } |
| 3626 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3627 | static const char *alloc_name(u64 flags) |
| 3628 | { |
| 3629 | switch (flags) { |
| 3630 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3631 | return "mixed"; |
| 3632 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3633 | return "metadata"; |
| 3634 | case BTRFS_BLOCK_GROUP_DATA: |
| 3635 | return "data"; |
| 3636 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3637 | return "system"; |
| 3638 | default: |
| 3639 | WARN_ON(1); |
| 3640 | return "invalid-combination"; |
| 3641 | }; |
| 3642 | } |
| 3643 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3644 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3645 | u64 total_bytes, u64 bytes_used, |
| 3646 | struct btrfs_space_info **space_info) |
| 3647 | { |
| 3648 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3649 | int i; |
| 3650 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3651 | int ret; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3652 | |
| 3653 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3654 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3655 | factor = 2; |
| 3656 | else |
| 3657 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3658 | |
| 3659 | found = __find_space_info(info, flags); |
| 3660 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3661 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3662 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3663 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3664 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3665 | found->disk_used += bytes_used * factor; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3666 | if (total_bytes > 0) |
| 3667 | found->full = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3668 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3669 | *space_info = found; |
| 3670 | return 0; |
| 3671 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3672 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3673 | if (!found) |
| 3674 | return -ENOMEM; |
| 3675 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 3676 | ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3677 | if (ret) { |
| 3678 | kfree(found); |
| 3679 | return ret; |
| 3680 | } |
| 3681 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3682 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3683 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3684 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3685 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3686 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3687 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3688 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3689 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3690 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3691 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3692 | found->bytes_reserved = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3693 | found->bytes_readonly = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3694 | found->bytes_may_use = 0; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3695 | if (total_bytes > 0) |
| 3696 | found->full = 0; |
| 3697 | else |
| 3698 | found->full = 1; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3699 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3700 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3701 | found->flush = 0; |
| 3702 | init_waitqueue_head(&found->wait); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 3703 | INIT_LIST_HEAD(&found->ro_bgs); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3704 | |
| 3705 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3706 | info->space_info_kobj, "%s", |
| 3707 | alloc_name(found->flags)); |
| 3708 | if (ret) { |
| 3709 | kfree(found); |
| 3710 | return ret; |
| 3711 | } |
| 3712 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3713 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3714 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3715 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3716 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3717 | |
| 3718 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3719 | } |
| 3720 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3721 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 3722 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3723 | u64 extra_flags = chunk_to_extended(flags) & |
| 3724 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3725 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3726 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3727 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3728 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 3729 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3730 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 3731 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3732 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3733 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3734 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3735 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3736 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3737 | * returns target flags in extended format or 0 if restripe for this |
| 3738 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 3739 | * |
| 3740 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3741 | */ |
| 3742 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 3743 | { |
| 3744 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3745 | u64 target = 0; |
| 3746 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3747 | if (!bctl) |
| 3748 | return 0; |
| 3749 | |
| 3750 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 3751 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3752 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 3753 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 3754 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3755 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 3756 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 3757 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3758 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 3759 | } |
| 3760 | |
| 3761 | return target; |
| 3762 | } |
| 3763 | |
| 3764 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3765 | * @flags: available profiles in extended format (see ctree.h) |
| 3766 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3767 | * Returns reduced profile in chunk format. If profile changing is in |
| 3768 | * progress (either running or paused) picks the target profile (if it's |
| 3769 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3770 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 3771 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3772 | { |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 3773 | u64 num_devices = root->fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3774 | u64 target; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3775 | u64 tmp; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3776 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3777 | /* |
| 3778 | * see if restripe for this chunk_type is in progress, if so |
| 3779 | * try to reduce to the target profile |
| 3780 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3781 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3782 | target = get_restripe_target(root->fs_info, flags); |
| 3783 | if (target) { |
| 3784 | /* pick target profile only if it's already available */ |
| 3785 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3786 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3787 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3788 | } |
| 3789 | } |
| 3790 | spin_unlock(&root->fs_info->balance_lock); |
| 3791 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3792 | /* First, mask out the RAID levels which aren't possible */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3793 | if (num_devices == 1) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3794 | flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3795 | BTRFS_BLOCK_GROUP_RAID5); |
| 3796 | if (num_devices < 3) |
| 3797 | flags &= ~BTRFS_BLOCK_GROUP_RAID6; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3798 | if (num_devices < 4) |
| 3799 | flags &= ~BTRFS_BLOCK_GROUP_RAID10; |
| 3800 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3801 | tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 | |
| 3802 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3803 | BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10); |
| 3804 | flags &= ~tmp; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3805 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3806 | if (tmp & BTRFS_BLOCK_GROUP_RAID6) |
| 3807 | tmp = BTRFS_BLOCK_GROUP_RAID6; |
| 3808 | else if (tmp & BTRFS_BLOCK_GROUP_RAID5) |
| 3809 | tmp = BTRFS_BLOCK_GROUP_RAID5; |
| 3810 | else if (tmp & BTRFS_BLOCK_GROUP_RAID10) |
| 3811 | tmp = BTRFS_BLOCK_GROUP_RAID10; |
| 3812 | else if (tmp & BTRFS_BLOCK_GROUP_RAID1) |
| 3813 | tmp = BTRFS_BLOCK_GROUP_RAID1; |
| 3814 | else if (tmp & BTRFS_BLOCK_GROUP_RAID0) |
| 3815 | tmp = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3816 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3817 | return extended_to_chunk(flags | tmp); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3818 | } |
| 3819 | |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3820 | static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3821 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3822 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3823 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3824 | |
| 3825 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3826 | flags = orig_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3827 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 3828 | |
| 3829 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3830 | flags |= root->fs_info->avail_data_alloc_bits; |
| 3831 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3832 | flags |= root->fs_info->avail_system_alloc_bits; |
| 3833 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3834 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 3835 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3836 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3837 | return btrfs_reduce_alloc_profile(root, flags); |
| 3838 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3839 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 3840 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3841 | { |
| 3842 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3843 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3844 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3845 | if (data) |
| 3846 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 3847 | else if (root == root->fs_info->chunk_root) |
| 3848 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 3849 | else |
| 3850 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 3851 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3852 | ret = get_alloc_profile(root, flags); |
| 3853 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3854 | } |
| 3855 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3856 | /* |
| 3857 | * This will check the space that the inode allocates from to make sure we have |
| 3858 | * enough space for bytes. |
| 3859 | */ |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 3860 | 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] | 3861 | { |
| 3862 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3863 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3864 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3865 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 3866 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3867 | int need_commit = 2; |
| 3868 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3869 | |
| 3870 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3871 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3872 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3873 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3874 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3875 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3876 | } |
| 3877 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3878 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3879 | if (!data_sinfo) |
| 3880 | goto alloc; |
| 3881 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3882 | again: |
| 3883 | /* make sure we have enough space to handle the data first */ |
| 3884 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3885 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 3886 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 3887 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3888 | |
| 3889 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3890 | struct btrfs_trans_handle *trans; |
| 3891 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3892 | /* |
| 3893 | * if we don't have enough free bytes in this space then we need |
| 3894 | * to alloc a new chunk. |
| 3895 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 3896 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3897 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3898 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3899 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3900 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3901 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3902 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3903 | /* |
| 3904 | * It is ugly that we don't call nolock join |
| 3905 | * transaction for the free space inode case here. |
| 3906 | * But it is safe because we only do the data space |
| 3907 | * reservation for the free space cache in the |
| 3908 | * transaction context, the common join transaction |
| 3909 | * just increase the counter of the current transaction |
| 3910 | * handler, doesn't try to acquire the trans_lock of |
| 3911 | * the fs. |
| 3912 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3913 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3914 | if (IS_ERR(trans)) |
| 3915 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3916 | |
| 3917 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3918 | alloc_target, |
| 3919 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3920 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3921 | if (ret < 0) { |
| 3922 | if (ret != -ENOSPC) |
| 3923 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3924 | else { |
| 3925 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3926 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3927 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3928 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3929 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3930 | if (!data_sinfo) |
| 3931 | data_sinfo = fs_info->data_sinfo; |
| 3932 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3933 | goto again; |
| 3934 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3935 | |
| 3936 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3937 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 3938 | * allocation, and no removed chunk in current transaction, |
| 3939 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3940 | */ |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3941 | have_pinned_space = percpu_counter_compare( |
| 3942 | &data_sinfo->total_bytes_pinned, |
| 3943 | used + bytes - data_sinfo->total_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3944 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3945 | |
| 3946 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3947 | commit_trans: |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3948 | if (need_commit && |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 3949 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3950 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3951 | |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 3952 | if (need_commit > 0) |
| 3953 | btrfs_wait_ordered_roots(fs_info, -1); |
| 3954 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3955 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3956 | if (IS_ERR(trans)) |
| 3957 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 3958 | if (have_pinned_space >= 0 || |
| 3959 | trans->transaction->have_free_bgs || |
| 3960 | need_commit > 0) { |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 3961 | ret = btrfs_commit_transaction(trans, root); |
| 3962 | if (ret) |
| 3963 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 3964 | /* |
| 3965 | * make sure that all running delayed iput are |
| 3966 | * done |
| 3967 | */ |
| 3968 | down_write(&root->fs_info->delayed_iput_sem); |
| 3969 | up_write(&root->fs_info->delayed_iput_sem); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 3970 | goto again; |
| 3971 | } else { |
| 3972 | btrfs_end_transaction(trans, root); |
| 3973 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3974 | } |
| 3975 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 3976 | trace_btrfs_space_reservation(root->fs_info, |
| 3977 | "space_info:enospc", |
| 3978 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3979 | return -ENOSPC; |
| 3980 | } |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 3981 | ret = btrfs_qgroup_reserve(root, write_bytes); |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 3982 | if (ret) |
| 3983 | goto out; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3984 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3985 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3986 | data_sinfo->flags, bytes, 1); |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 3987 | out: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3988 | spin_unlock(&data_sinfo->lock); |
| 3989 | |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 3990 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3991 | } |
| 3992 | |
| 3993 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3994 | * Called if we need to clear a data reservation for this inode. |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3995 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3996 | void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3997 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3998 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3999 | struct btrfs_space_info *data_sinfo; |
| 4000 | |
| 4001 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 4002 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4003 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4004 | data_sinfo = root->fs_info->data_sinfo; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4005 | spin_lock(&data_sinfo->lock); |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 4006 | WARN_ON(data_sinfo->bytes_may_use < bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4007 | data_sinfo->bytes_may_use -= bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4008 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4009 | data_sinfo->flags, bytes, 0); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4010 | spin_unlock(&data_sinfo->lock); |
| 4011 | } |
| 4012 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4013 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4014 | { |
| 4015 | struct list_head *head = &info->space_info; |
| 4016 | struct btrfs_space_info *found; |
| 4017 | |
| 4018 | rcu_read_lock(); |
| 4019 | list_for_each_entry_rcu(found, head, list) { |
| 4020 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4021 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4022 | } |
| 4023 | rcu_read_unlock(); |
| 4024 | } |
| 4025 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4026 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4027 | { |
| 4028 | return (global->size << 1); |
| 4029 | } |
| 4030 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4031 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4032 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4033 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4034 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4035 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4036 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4037 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4038 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4039 | if (force == CHUNK_ALLOC_FORCE) |
| 4040 | return 1; |
| 4041 | |
| 4042 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4043 | * We need to take into account the global rsv because for all intents |
| 4044 | * and purposes it's used space. Don't worry about locking the |
| 4045 | * global_rsv, it doesn't change except when the transaction commits. |
| 4046 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 4047 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4048 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4049 | |
| 4050 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4051 | * in limited mode, we want to have some free space up to |
| 4052 | * about 1% of the FS size. |
| 4053 | */ |
| 4054 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4055 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4056 | thresh = max_t(u64, 64 * 1024 * 1024, |
| 4057 | div_factor_fine(thresh, 1)); |
| 4058 | |
| 4059 | if (num_bytes - num_allocated < thresh) |
| 4060 | return 1; |
| 4061 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4062 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4063 | if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4064 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4065 | return 1; |
| 4066 | } |
| 4067 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4068 | static u64 get_profile_num_devs(struct btrfs_root *root, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4069 | { |
| 4070 | u64 num_dev; |
| 4071 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4072 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4073 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4074 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4075 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4076 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 4077 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4078 | num_dev = 2; |
| 4079 | else |
| 4080 | num_dev = 1; /* DUP or single */ |
| 4081 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4082 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4083 | } |
| 4084 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4085 | /* |
| 4086 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4087 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4088 | * removing a chunk. |
| 4089 | */ |
| 4090 | void check_system_chunk(struct btrfs_trans_handle *trans, |
| 4091 | struct btrfs_root *root, |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4092 | u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4093 | { |
| 4094 | struct btrfs_space_info *info; |
| 4095 | u64 left; |
| 4096 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4097 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4098 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4099 | |
| 4100 | /* |
| 4101 | * Needed because we can end up allocating a system chunk and for an |
| 4102 | * atomic and race free space reservation in the chunk block reserve. |
| 4103 | */ |
| 4104 | ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex)); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4105 | |
| 4106 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4107 | spin_lock(&info->lock); |
| 4108 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4109 | info->bytes_reserved - info->bytes_readonly - |
| 4110 | info->bytes_may_use; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4111 | spin_unlock(&info->lock); |
| 4112 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4113 | num_devs = get_profile_num_devs(root, type); |
| 4114 | |
| 4115 | /* 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] | 4116 | thresh = btrfs_calc_trunc_metadata_size(root, num_devs) + |
| 4117 | btrfs_calc_trans_metadata_size(root, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4118 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4119 | if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 4120 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4121 | left, thresh, type); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4122 | dump_space_info(info, 0, 0); |
| 4123 | } |
| 4124 | |
| 4125 | if (left < thresh) { |
| 4126 | u64 flags; |
| 4127 | |
| 4128 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4129 | /* |
| 4130 | * Ignore failure to create system chunk. We might end up not |
| 4131 | * needing it, as we might not need to COW all nodes/leafs from |
| 4132 | * the paths we visit in the chunk tree (they were already COWed |
| 4133 | * or created in the current transaction for example). |
| 4134 | */ |
| 4135 | ret = btrfs_alloc_chunk(trans, root, flags); |
| 4136 | } |
| 4137 | |
| 4138 | if (!ret) { |
| 4139 | ret = btrfs_block_rsv_add(root->fs_info->chunk_root, |
| 4140 | &root->fs_info->chunk_block_rsv, |
| 4141 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4142 | if (!ret) |
| 4143 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4144 | } |
| 4145 | } |
| 4146 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4147 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4148 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4149 | { |
| 4150 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4151 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4152 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4153 | int ret = 0; |
| 4154 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4155 | /* Don't re-enter if we're already allocating a chunk */ |
| 4156 | if (trans->allocating_chunk) |
| 4157 | return -ENOSPC; |
| 4158 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4159 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4160 | if (!space_info) { |
| 4161 | ret = update_space_info(extent_root->fs_info, flags, |
| 4162 | 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4163 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4164 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4165 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4166 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4167 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4168 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 4169 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4170 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4171 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4172 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 4173 | ret = -ENOSPC; |
| 4174 | else |
| 4175 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4176 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4177 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4178 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4179 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4180 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4181 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4182 | return 0; |
| 4183 | } else if (space_info->chunk_alloc) { |
| 4184 | wait_for_alloc = 1; |
| 4185 | } else { |
| 4186 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4187 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4188 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4189 | spin_unlock(&space_info->lock); |
| 4190 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4191 | mutex_lock(&fs_info->chunk_mutex); |
| 4192 | |
| 4193 | /* |
| 4194 | * The chunk_mutex is held throughout the entirety of a chunk |
| 4195 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 4196 | * other guy is done and we need to recheck and see if we should |
| 4197 | * allocate. |
| 4198 | */ |
| 4199 | if (wait_for_alloc) { |
| 4200 | mutex_unlock(&fs_info->chunk_mutex); |
| 4201 | wait_for_alloc = 0; |
| 4202 | goto again; |
| 4203 | } |
| 4204 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4205 | trans->allocating_chunk = true; |
| 4206 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4207 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4208 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4209 | * allocating mixed chunks instead of individual chunks. |
| 4210 | */ |
| 4211 | if (btrfs_mixed_space_info(space_info)) |
| 4212 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4213 | |
| 4214 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4215 | * if we're doing a data chunk, go ahead and make sure that |
| 4216 | * we keep a reasonable number of metadata chunks allocated in the |
| 4217 | * FS as well. |
| 4218 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4219 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4220 | fs_info->data_chunk_allocations++; |
| 4221 | if (!(fs_info->data_chunk_allocations % |
| 4222 | fs_info->metadata_ratio)) |
| 4223 | force_metadata_allocation(fs_info); |
| 4224 | } |
| 4225 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4226 | /* |
| 4227 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4228 | * to update devices. |
| 4229 | */ |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4230 | check_system_chunk(trans, extent_root, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4231 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4232 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4233 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4234 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4235 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4236 | if (ret < 0 && ret != -ENOSPC) |
| 4237 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4238 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4239 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4240 | else |
| 4241 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4242 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4243 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4244 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4245 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4246 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4247 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4248 | /* |
| 4249 | * When we allocate a new chunk we reserve space in the chunk block |
| 4250 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4251 | * add new nodes/leafs to it if we end up needing to do it when |
| 4252 | * inserting the chunk item and updating device items as part of the |
| 4253 | * second phase of chunk allocation, performed by |
| 4254 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4255 | * large number of new block groups to create in our transaction |
| 4256 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4257 | * in extreme cases - like having a single transaction create many new |
| 4258 | * block groups when starting to write out the free space caches of all |
| 4259 | * the block groups that were made dirty during the lifetime of the |
| 4260 | * transaction. |
| 4261 | */ |
| 4262 | if (trans->chunk_bytes_reserved >= (2 * 1024 * 1024ull)) { |
| 4263 | btrfs_create_pending_block_groups(trans, trans->root); |
| 4264 | btrfs_trans_release_chunk_metadata(trans); |
| 4265 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4266 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4267 | } |
| 4268 | |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4269 | static int can_overcommit(struct btrfs_root *root, |
| 4270 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4271 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4272 | { |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4273 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4274 | u64 profile = btrfs_get_alloc_profile(root, 0); |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4275 | u64 space_size; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4276 | u64 avail; |
| 4277 | u64 used; |
| 4278 | |
| 4279 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4280 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 4281 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4282 | /* |
| 4283 | * We only want to allow over committing if we have lots of actual space |
| 4284 | * free, but if we don't have enough space to handle the global reserve |
| 4285 | * space then we could end up having a real enospc problem when trying |
| 4286 | * to allocate a chunk or some other such important allocation. |
| 4287 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4288 | spin_lock(&global_rsv->lock); |
| 4289 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4290 | spin_unlock(&global_rsv->lock); |
| 4291 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4292 | return 0; |
| 4293 | |
| 4294 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4295 | |
| 4296 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4297 | avail = root->fs_info->free_chunk_space; |
| 4298 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4299 | |
| 4300 | /* |
| 4301 | * 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] | 4302 | * space is actually useable. For raid56, the space info used |
| 4303 | * doesn't include the parity drive, so we don't have to |
| 4304 | * change the math |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4305 | */ |
| 4306 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4307 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4308 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4309 | avail >>= 1; |
| 4310 | |
| 4311 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4312 | * If we aren't flushing all things, let us overcommit up to |
| 4313 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4314 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4315 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4316 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4317 | avail >>= 3; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4318 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4319 | avail >>= 1; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4320 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4321 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4322 | return 1; |
| 4323 | return 0; |
| 4324 | } |
| 4325 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4326 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4327 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4328 | { |
| 4329 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4330 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4331 | if (down_read_trylock(&sb->s_umount)) { |
| 4332 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4333 | up_read(&sb->s_umount); |
| 4334 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4335 | /* |
| 4336 | * We needn't worry the filesystem going from r/w to r/o though |
| 4337 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4338 | * should guarantee the delalloc inodes list be empty after |
| 4339 | * the filesystem is readonly(all dirty pages are written to |
| 4340 | * the disk). |
| 4341 | */ |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4342 | btrfs_start_delalloc_roots(root->fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4343 | if (!current->journal_info) |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4344 | btrfs_wait_ordered_roots(root->fs_info, nr_items); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4345 | } |
| 4346 | } |
| 4347 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4348 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4349 | { |
| 4350 | u64 bytes; |
| 4351 | int nr; |
| 4352 | |
| 4353 | bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 4354 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4355 | if (!nr) |
| 4356 | nr = 1; |
| 4357 | return nr; |
| 4358 | } |
| 4359 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4360 | #define EXTENT_SIZE_PER_ITEM (256 * 1024) |
| 4361 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4362 | /* |
| 4363 | * shrink metadata reservation for delalloc |
| 4364 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4365 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4366 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4367 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4368 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4369 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4370 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4371 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4372 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4373 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4374 | unsigned long nr_pages; |
| 4375 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4376 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4377 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4378 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4379 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4380 | items = calc_reclaim_items_nr(root, to_reclaim); |
| 4381 | to_reclaim = items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4382 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4383 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4384 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4385 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4386 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4387 | delalloc_bytes = percpu_counter_sum_positive( |
| 4388 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4389 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4390 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4391 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4392 | if (wait_ordered) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4393 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4394 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4395 | } |
| 4396 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4397 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4398 | while (delalloc_bytes && loops < 3) { |
| 4399 | max_reclaim = min(delalloc_bytes, to_reclaim); |
| 4400 | nr_pages = max_reclaim >> PAGE_CACHE_SHIFT; |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4401 | btrfs_writeback_inodes_sb_nr(root, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4402 | /* |
| 4403 | * We need to wait for the async pages to actually start before |
| 4404 | * we do anything. |
| 4405 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4406 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4407 | if (!max_reclaim) |
| 4408 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4409 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4410 | if (max_reclaim <= nr_pages) |
| 4411 | max_reclaim = 0; |
| 4412 | else |
| 4413 | max_reclaim -= nr_pages; |
| 4414 | |
| 4415 | wait_event(root->fs_info->async_submit_wait, |
| 4416 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4417 | (int)max_reclaim); |
| 4418 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4419 | if (!trans) |
| 4420 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4421 | else |
| 4422 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4423 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4424 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4425 | spin_unlock(&space_info->lock); |
| 4426 | break; |
| 4427 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4428 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4429 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4430 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4431 | if (wait_ordered && !trans) { |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4432 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4433 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4434 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4435 | if (time_left) |
| 4436 | break; |
| 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); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4440 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4441 | } |
| 4442 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4443 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4444 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4445 | * @root - the root we're allocating for |
| 4446 | * @bytes - the number of bytes we want to reserve |
| 4447 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4448 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4449 | * This will check to make sure that committing the transaction will actually |
| 4450 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4451 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4452 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4453 | static int may_commit_transaction(struct btrfs_root *root, |
| 4454 | struct btrfs_space_info *space_info, |
| 4455 | u64 bytes, int force) |
| 4456 | { |
| 4457 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4458 | struct btrfs_trans_handle *trans; |
| 4459 | |
| 4460 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4461 | if (trans) |
| 4462 | return -EAGAIN; |
| 4463 | |
| 4464 | if (force) |
| 4465 | goto commit; |
| 4466 | |
| 4467 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4468 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4469 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4470 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4471 | |
| 4472 | /* |
| 4473 | * See if there is some space in the delayed insertion reservation for |
| 4474 | * this reservation. |
| 4475 | */ |
| 4476 | if (space_info != delayed_rsv->space_info) |
| 4477 | return -ENOSPC; |
| 4478 | |
| 4479 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4480 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4481 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4482 | spin_unlock(&delayed_rsv->lock); |
| 4483 | return -ENOSPC; |
| 4484 | } |
| 4485 | spin_unlock(&delayed_rsv->lock); |
| 4486 | |
| 4487 | commit: |
| 4488 | trans = btrfs_join_transaction(root); |
| 4489 | if (IS_ERR(trans)) |
| 4490 | return -ENOSPC; |
| 4491 | |
| 4492 | return btrfs_commit_transaction(trans, root); |
| 4493 | } |
| 4494 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4495 | enum flush_state { |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4496 | FLUSH_DELAYED_ITEMS_NR = 1, |
| 4497 | FLUSH_DELAYED_ITEMS = 2, |
| 4498 | FLUSH_DELALLOC = 3, |
| 4499 | FLUSH_DELALLOC_WAIT = 4, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4500 | ALLOC_CHUNK = 5, |
| 4501 | COMMIT_TRANS = 6, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4502 | }; |
| 4503 | |
| 4504 | static int flush_space(struct btrfs_root *root, |
| 4505 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4506 | u64 orig_bytes, int state) |
| 4507 | { |
| 4508 | struct btrfs_trans_handle *trans; |
| 4509 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4510 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4511 | |
| 4512 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4513 | case FLUSH_DELAYED_ITEMS_NR: |
| 4514 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4515 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4516 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4517 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4518 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4519 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4520 | trans = btrfs_join_transaction(root); |
| 4521 | if (IS_ERR(trans)) { |
| 4522 | ret = PTR_ERR(trans); |
| 4523 | break; |
| 4524 | } |
| 4525 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4526 | btrfs_end_transaction(trans, root); |
| 4527 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4528 | case FLUSH_DELALLOC: |
| 4529 | case FLUSH_DELALLOC_WAIT: |
Miao Xie | 24af7dd | 2014-03-06 13:55:00 +0800 | [diff] [blame] | 4530 | shrink_delalloc(root, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4531 | state == FLUSH_DELALLOC_WAIT); |
| 4532 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4533 | case ALLOC_CHUNK: |
| 4534 | trans = btrfs_join_transaction(root); |
| 4535 | if (IS_ERR(trans)) { |
| 4536 | ret = PTR_ERR(trans); |
| 4537 | break; |
| 4538 | } |
| 4539 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4540 | btrfs_get_alloc_profile(root, 0), |
| 4541 | CHUNK_ALLOC_NO_FORCE); |
| 4542 | btrfs_end_transaction(trans, root); |
| 4543 | if (ret == -ENOSPC) |
| 4544 | ret = 0; |
| 4545 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4546 | case COMMIT_TRANS: |
| 4547 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4548 | break; |
| 4549 | default: |
| 4550 | ret = -ENOSPC; |
| 4551 | break; |
| 4552 | } |
| 4553 | |
| 4554 | return ret; |
| 4555 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4556 | |
| 4557 | static inline u64 |
| 4558 | btrfs_calc_reclaim_metadata_size(struct btrfs_root *root, |
| 4559 | struct btrfs_space_info *space_info) |
| 4560 | { |
| 4561 | u64 used; |
| 4562 | u64 expected; |
| 4563 | u64 to_reclaim; |
| 4564 | |
| 4565 | to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024, |
| 4566 | 16 * 1024 * 1024); |
| 4567 | spin_lock(&space_info->lock); |
| 4568 | if (can_overcommit(root, space_info, to_reclaim, |
| 4569 | BTRFS_RESERVE_FLUSH_ALL)) { |
| 4570 | to_reclaim = 0; |
| 4571 | goto out; |
| 4572 | } |
| 4573 | |
| 4574 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4575 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4576 | space_info->bytes_may_use; |
| 4577 | if (can_overcommit(root, space_info, 1024 * 1024, |
| 4578 | BTRFS_RESERVE_FLUSH_ALL)) |
| 4579 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4580 | else |
| 4581 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4582 | |
| 4583 | if (used > expected) |
| 4584 | to_reclaim = used - expected; |
| 4585 | else |
| 4586 | to_reclaim = 0; |
| 4587 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4588 | space_info->bytes_reserved); |
| 4589 | out: |
| 4590 | spin_unlock(&space_info->lock); |
| 4591 | |
| 4592 | return to_reclaim; |
| 4593 | } |
| 4594 | |
| 4595 | static inline int need_do_async_reclaim(struct btrfs_space_info *space_info, |
| 4596 | struct btrfs_fs_info *fs_info, u64 used) |
| 4597 | { |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4598 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4599 | |
| 4600 | /* If we're just plain full then async reclaim just slows us down. */ |
| 4601 | if (space_info->bytes_used >= thresh) |
| 4602 | return 0; |
| 4603 | |
| 4604 | return (used >= thresh && !btrfs_fs_closing(fs_info) && |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4605 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
| 4606 | } |
| 4607 | |
| 4608 | 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] | 4609 | struct btrfs_fs_info *fs_info, |
| 4610 | int flush_state) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4611 | { |
| 4612 | u64 used; |
| 4613 | |
| 4614 | spin_lock(&space_info->lock); |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4615 | /* |
| 4616 | * We run out of space and have not got any free space via flush_space, |
| 4617 | * so don't bother doing async reclaim. |
| 4618 | */ |
| 4619 | if (flush_state > COMMIT_TRANS && space_info->full) { |
| 4620 | spin_unlock(&space_info->lock); |
| 4621 | return 0; |
| 4622 | } |
| 4623 | |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4624 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4625 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4626 | space_info->bytes_may_use; |
| 4627 | if (need_do_async_reclaim(space_info, fs_info, used)) { |
| 4628 | spin_unlock(&space_info->lock); |
| 4629 | return 1; |
| 4630 | } |
| 4631 | spin_unlock(&space_info->lock); |
| 4632 | |
| 4633 | return 0; |
| 4634 | } |
| 4635 | |
| 4636 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4637 | { |
| 4638 | struct btrfs_fs_info *fs_info; |
| 4639 | struct btrfs_space_info *space_info; |
| 4640 | u64 to_reclaim; |
| 4641 | int flush_state; |
| 4642 | |
| 4643 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 4644 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4645 | |
| 4646 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 4647 | space_info); |
| 4648 | if (!to_reclaim) |
| 4649 | return; |
| 4650 | |
| 4651 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 4652 | do { |
| 4653 | flush_space(fs_info->fs_root, space_info, to_reclaim, |
| 4654 | to_reclaim, flush_state); |
| 4655 | flush_state++; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4656 | if (!btrfs_need_do_async_reclaim(space_info, fs_info, |
| 4657 | flush_state)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4658 | return; |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4659 | } while (flush_state < COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4660 | } |
| 4661 | |
| 4662 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 4663 | { |
| 4664 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 4665 | } |
| 4666 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4667 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4668 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 4669 | * @root - the root we're allocating for |
| 4670 | * @block_rsv - the block_rsv we're allocating for |
| 4671 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 4672 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4673 | * |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4674 | * This will reserve orgi_bytes number of bytes from the space info associated |
| 4675 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 4676 | * flush out space to make room. It will do this by flushing delalloc if |
| 4677 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 4678 | * regain reservations will be made and this will fail if there is not enough |
| 4679 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4680 | */ |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4681 | static int reserve_metadata_bytes(struct btrfs_root *root, |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4682 | struct btrfs_block_rsv *block_rsv, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4683 | u64 orig_bytes, |
| 4684 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4685 | { |
| 4686 | struct btrfs_space_info *space_info = block_rsv->space_info; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4687 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4688 | u64 num_bytes = orig_bytes; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4689 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4690 | int ret = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4691 | bool flushing = false; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4692 | |
| 4693 | again: |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4694 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4695 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4696 | /* |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4697 | * We only want to wait if somebody other than us is flushing and we |
| 4698 | * are actually allowed to flush all things. |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4699 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4700 | while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing && |
| 4701 | space_info->flush) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4702 | spin_unlock(&space_info->lock); |
| 4703 | /* |
| 4704 | * If we have a trans handle we can't wait because the flusher |
| 4705 | * may have to commit the transaction, which would mean we would |
| 4706 | * deadlock since we are waiting for the flusher to finish, but |
| 4707 | * hold the current transaction open. |
| 4708 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4709 | if (current->journal_info) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4710 | return -EAGAIN; |
Arne Jansen | b9688bb | 2012-04-18 10:27:16 +0200 | [diff] [blame] | 4711 | ret = wait_event_killable(space_info->wait, !space_info->flush); |
| 4712 | /* Must have been killed, return */ |
| 4713 | if (ret) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4714 | return -EINTR; |
| 4715 | |
| 4716 | spin_lock(&space_info->lock); |
| 4717 | } |
| 4718 | |
| 4719 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4720 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4721 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4722 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4723 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4724 | /* |
| 4725 | * The idea here is that we've not already over-reserved the block group |
| 4726 | * then we can go ahead and save our reservation first and then start |
| 4727 | * flushing if we need to. Otherwise if we've already overcommitted |
| 4728 | * lets start flushing stuff first and then come back and try to make |
| 4729 | * our reservation. |
| 4730 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4731 | if (used <= space_info->total_bytes) { |
| 4732 | if (used + orig_bytes <= space_info->total_bytes) { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4733 | space_info->bytes_may_use += orig_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4734 | trace_btrfs_space_reservation(root->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4735 | "space_info", space_info->flags, orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4736 | ret = 0; |
| 4737 | } else { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4738 | /* |
| 4739 | * Ok set num_bytes to orig_bytes since we aren't |
| 4740 | * overocmmitted, this way we only try and reclaim what |
| 4741 | * we need. |
| 4742 | */ |
| 4743 | num_bytes = orig_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4744 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4745 | } else { |
| 4746 | /* |
| 4747 | * Ok we're over committed, set num_bytes to the overcommitted |
| 4748 | * amount plus the amount of bytes that we need for this |
| 4749 | * reservation. |
| 4750 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4751 | num_bytes = used - space_info->total_bytes + |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4752 | (orig_bytes * 2); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4753 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4754 | |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 4755 | if (ret && can_overcommit(root, space_info, orig_bytes, flush)) { |
| 4756 | space_info->bytes_may_use += orig_bytes; |
| 4757 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4758 | space_info->flags, orig_bytes, |
| 4759 | 1); |
| 4760 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4761 | } |
| 4762 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4763 | /* |
| 4764 | * Couldn't make our reservation, save our place so while we're trying |
| 4765 | * to reclaim space we can actually use it instead of somebody else |
| 4766 | * stealing it from us. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4767 | * |
| 4768 | * We make the other tasks wait for the flush only when we can flush |
| 4769 | * all things. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4770 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 4771 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4772 | flushing = true; |
| 4773 | space_info->flush = 1; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4774 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 4775 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 4776 | /* |
| 4777 | * We will do the space reservation dance during log replay, |
| 4778 | * which means we won't have fs_info->fs_root set, so don't do |
| 4779 | * the async reclaim as we will panic. |
| 4780 | */ |
| 4781 | if (!root->fs_info->log_root_recovering && |
| 4782 | need_do_async_reclaim(space_info, root->fs_info, used) && |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4783 | !work_busy(&root->fs_info->async_reclaim_work)) |
| 4784 | queue_work(system_unbound_wq, |
| 4785 | &root->fs_info->async_reclaim_work); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4786 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4787 | spin_unlock(&space_info->lock); |
| 4788 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4789 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4790 | goto out; |
| 4791 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4792 | ret = flush_space(root, space_info, num_bytes, orig_bytes, |
| 4793 | flush_state); |
| 4794 | flush_state++; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4795 | |
| 4796 | /* |
| 4797 | * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock |
| 4798 | * would happen. So skip delalloc flush. |
| 4799 | */ |
| 4800 | if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4801 | (flush_state == FLUSH_DELALLOC || |
| 4802 | flush_state == FLUSH_DELALLOC_WAIT)) |
| 4803 | flush_state = ALLOC_CHUNK; |
| 4804 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4805 | if (!ret) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4806 | goto again; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4807 | else if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4808 | flush_state < COMMIT_TRANS) |
| 4809 | goto again; |
| 4810 | else if (flush == BTRFS_RESERVE_FLUSH_ALL && |
| 4811 | flush_state <= COMMIT_TRANS) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4812 | goto again; |
| 4813 | |
| 4814 | out: |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 4815 | if (ret == -ENOSPC && |
| 4816 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 4817 | struct btrfs_block_rsv *global_rsv = |
| 4818 | &root->fs_info->global_block_rsv; |
| 4819 | |
| 4820 | if (block_rsv != global_rsv && |
| 4821 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 4822 | ret = 0; |
| 4823 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4824 | if (ret == -ENOSPC) |
| 4825 | trace_btrfs_space_reservation(root->fs_info, |
| 4826 | "space_info:enospc", |
| 4827 | space_info->flags, orig_bytes, 1); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4828 | if (flushing) { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4829 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4830 | space_info->flush = 0; |
| 4831 | wake_up_all(&space_info->wait); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4832 | spin_unlock(&space_info->lock); |
| 4833 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4834 | return ret; |
| 4835 | } |
| 4836 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4837 | static struct btrfs_block_rsv *get_block_rsv( |
| 4838 | const struct btrfs_trans_handle *trans, |
| 4839 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4840 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4841 | struct btrfs_block_rsv *block_rsv = NULL; |
| 4842 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4843 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4844 | block_rsv = trans->block_rsv; |
| 4845 | |
| 4846 | if (root == root->fs_info->csum_root && trans->adding_csums) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4847 | block_rsv = trans->block_rsv; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4848 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4849 | if (root == root->fs_info->uuid_root) |
| 4850 | block_rsv = trans->block_rsv; |
| 4851 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4852 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4853 | block_rsv = root->block_rsv; |
| 4854 | |
| 4855 | if (!block_rsv) |
| 4856 | block_rsv = &root->fs_info->empty_block_rsv; |
| 4857 | |
| 4858 | return block_rsv; |
| 4859 | } |
| 4860 | |
| 4861 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 4862 | u64 num_bytes) |
| 4863 | { |
| 4864 | int ret = -ENOSPC; |
| 4865 | spin_lock(&block_rsv->lock); |
| 4866 | if (block_rsv->reserved >= num_bytes) { |
| 4867 | block_rsv->reserved -= num_bytes; |
| 4868 | if (block_rsv->reserved < block_rsv->size) |
| 4869 | block_rsv->full = 0; |
| 4870 | ret = 0; |
| 4871 | } |
| 4872 | spin_unlock(&block_rsv->lock); |
| 4873 | return ret; |
| 4874 | } |
| 4875 | |
| 4876 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 4877 | u64 num_bytes, int update_size) |
| 4878 | { |
| 4879 | spin_lock(&block_rsv->lock); |
| 4880 | block_rsv->reserved += num_bytes; |
| 4881 | if (update_size) |
| 4882 | block_rsv->size += num_bytes; |
| 4883 | else if (block_rsv->reserved >= block_rsv->size) |
| 4884 | block_rsv->full = 1; |
| 4885 | spin_unlock(&block_rsv->lock); |
| 4886 | } |
| 4887 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 4888 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 4889 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 4890 | int min_factor) |
| 4891 | { |
| 4892 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 4893 | u64 min_bytes; |
| 4894 | |
| 4895 | if (global_rsv->space_info != dest->space_info) |
| 4896 | return -ENOSPC; |
| 4897 | |
| 4898 | spin_lock(&global_rsv->lock); |
| 4899 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 4900 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 4901 | spin_unlock(&global_rsv->lock); |
| 4902 | return -ENOSPC; |
| 4903 | } |
| 4904 | global_rsv->reserved -= num_bytes; |
| 4905 | if (global_rsv->reserved < global_rsv->size) |
| 4906 | global_rsv->full = 0; |
| 4907 | spin_unlock(&global_rsv->lock); |
| 4908 | |
| 4909 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 4910 | return 0; |
| 4911 | } |
| 4912 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4913 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 4914 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 4915 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4916 | { |
| 4917 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 4918 | |
| 4919 | spin_lock(&block_rsv->lock); |
| 4920 | if (num_bytes == (u64)-1) |
| 4921 | num_bytes = block_rsv->size; |
| 4922 | block_rsv->size -= num_bytes; |
| 4923 | if (block_rsv->reserved >= block_rsv->size) { |
| 4924 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 4925 | block_rsv->reserved = block_rsv->size; |
| 4926 | block_rsv->full = 1; |
| 4927 | } else { |
| 4928 | num_bytes = 0; |
| 4929 | } |
| 4930 | spin_unlock(&block_rsv->lock); |
| 4931 | |
| 4932 | if (num_bytes > 0) { |
| 4933 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 4934 | spin_lock(&dest->lock); |
| 4935 | if (!dest->full) { |
| 4936 | u64 bytes_to_add; |
| 4937 | |
| 4938 | bytes_to_add = dest->size - dest->reserved; |
| 4939 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 4940 | dest->reserved += bytes_to_add; |
| 4941 | if (dest->reserved >= dest->size) |
| 4942 | dest->full = 1; |
| 4943 | num_bytes -= bytes_to_add; |
| 4944 | } |
| 4945 | spin_unlock(&dest->lock); |
| 4946 | } |
| 4947 | if (num_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4948 | spin_lock(&space_info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4949 | space_info->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4950 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4951 | space_info->flags, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4952 | spin_unlock(&space_info->lock); |
| 4953 | } |
| 4954 | } |
| 4955 | } |
| 4956 | |
| 4957 | static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src, |
| 4958 | struct btrfs_block_rsv *dst, u64 num_bytes) |
| 4959 | { |
| 4960 | int ret; |
| 4961 | |
| 4962 | ret = block_rsv_use_bytes(src, num_bytes); |
| 4963 | if (ret) |
| 4964 | return ret; |
| 4965 | |
| 4966 | block_rsv_add_bytes(dst, num_bytes, 1); |
| 4967 | return 0; |
| 4968 | } |
| 4969 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4970 | 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] | 4971 | { |
| 4972 | memset(rsv, 0, sizeof(*rsv)); |
| 4973 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4974 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4975 | } |
| 4976 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4977 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 4978 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4979 | { |
| 4980 | struct btrfs_block_rsv *block_rsv; |
| 4981 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4982 | |
| 4983 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 4984 | if (!block_rsv) |
| 4985 | return NULL; |
| 4986 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4987 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4988 | block_rsv->space_info = __find_space_info(fs_info, |
| 4989 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4990 | return block_rsv; |
| 4991 | } |
| 4992 | |
| 4993 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 4994 | struct btrfs_block_rsv *rsv) |
| 4995 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4996 | if (!rsv) |
| 4997 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4998 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 4999 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5000 | } |
| 5001 | |
Chris Mason | cdfb080 | 2015-04-06 18:17:00 -0700 | [diff] [blame] | 5002 | void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv) |
| 5003 | { |
| 5004 | kfree(rsv); |
| 5005 | } |
| 5006 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5007 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5008 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5009 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5010 | { |
| 5011 | int ret; |
| 5012 | |
| 5013 | if (num_bytes == 0) |
| 5014 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5015 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5016 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5017 | if (!ret) { |
| 5018 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 5019 | return 0; |
| 5020 | } |
| 5021 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5022 | return ret; |
| 5023 | } |
| 5024 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5025 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5026 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5027 | { |
| 5028 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5029 | int ret = -ENOSPC; |
| 5030 | |
| 5031 | if (!block_rsv) |
| 5032 | return 0; |
| 5033 | |
| 5034 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5035 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5036 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5037 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5038 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5039 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5040 | return ret; |
| 5041 | } |
| 5042 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5043 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5044 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5045 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5046 | { |
| 5047 | u64 num_bytes = 0; |
| 5048 | int ret = -ENOSPC; |
| 5049 | |
| 5050 | if (!block_rsv) |
| 5051 | return 0; |
| 5052 | |
| 5053 | spin_lock(&block_rsv->lock); |
| 5054 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5055 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5056 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5057 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5058 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5059 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5060 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5061 | if (!ret) |
| 5062 | return 0; |
| 5063 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5064 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5065 | if (!ret) { |
| 5066 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5067 | return 0; |
| 5068 | } |
| 5069 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5070 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5071 | } |
| 5072 | |
| 5073 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv, |
| 5074 | struct btrfs_block_rsv *dst_rsv, |
| 5075 | u64 num_bytes) |
| 5076 | { |
| 5077 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 5078 | } |
| 5079 | |
| 5080 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 5081 | struct btrfs_block_rsv *block_rsv, |
| 5082 | u64 num_bytes) |
| 5083 | { |
| 5084 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 5085 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5086 | block_rsv->space_info != global_rsv->space_info) |
| 5087 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5088 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 5089 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5090 | } |
| 5091 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5092 | /* |
| 5093 | * helper to calculate size of global block reservation. |
| 5094 | * the desired value is sum of space used by extent tree, |
| 5095 | * checksum tree and root tree |
| 5096 | */ |
| 5097 | static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info) |
| 5098 | { |
| 5099 | struct btrfs_space_info *sinfo; |
| 5100 | u64 num_bytes; |
| 5101 | u64 meta_used; |
| 5102 | u64 data_used; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5103 | int csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5104 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5105 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 5106 | spin_lock(&sinfo->lock); |
| 5107 | data_used = sinfo->bytes_used; |
| 5108 | spin_unlock(&sinfo->lock); |
| 5109 | |
| 5110 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 5111 | spin_lock(&sinfo->lock); |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 5112 | if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA) |
| 5113 | data_used = 0; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5114 | meta_used = sinfo->bytes_used; |
| 5115 | spin_unlock(&sinfo->lock); |
| 5116 | |
| 5117 | num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) * |
| 5118 | csum_size * 2; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 5119 | num_bytes += div_u64(data_used + meta_used, 50); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5120 | |
| 5121 | if (num_bytes * 3 > meta_used) |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 5122 | num_bytes = div_u64(meta_used, 3); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5123 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5124 | return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5125 | } |
| 5126 | |
| 5127 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5128 | { |
| 5129 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5130 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5131 | u64 num_bytes; |
| 5132 | |
| 5133 | num_bytes = calc_global_metadata_size(fs_info); |
| 5134 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5135 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5136 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5137 | |
Josef Bacik | fdf30d1 | 2013-03-26 15:31:45 -0400 | [diff] [blame] | 5138 | block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5139 | |
| 5140 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 5141 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 5142 | sinfo->bytes_may_use; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5143 | |
| 5144 | if (sinfo->total_bytes > num_bytes) { |
| 5145 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5146 | block_rsv->reserved += num_bytes; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5147 | sinfo->bytes_may_use += num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5148 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5149 | sinfo->flags, num_bytes, 1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5150 | } |
| 5151 | |
| 5152 | if (block_rsv->reserved >= block_rsv->size) { |
| 5153 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5154 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5155 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5156 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5157 | block_rsv->reserved = block_rsv->size; |
| 5158 | block_rsv->full = 1; |
| 5159 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5160 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5161 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5162 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5163 | } |
| 5164 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5165 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5166 | { |
| 5167 | struct btrfs_space_info *space_info; |
| 5168 | |
| 5169 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5170 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5171 | |
| 5172 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5173 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5174 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5175 | fs_info->trans_block_rsv.space_info = space_info; |
| 5176 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5177 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5178 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5179 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 5180 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 5181 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5182 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5183 | if (fs_info->quota_root) |
| 5184 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5185 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5186 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5187 | update_global_block_rsv(fs_info); |
| 5188 | } |
| 5189 | |
| 5190 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5191 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5192 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 5193 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5194 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 5195 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 5196 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5197 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5198 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5199 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5200 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5201 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5202 | } |
| 5203 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5204 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 5205 | struct btrfs_root *root) |
| 5206 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 5207 | if (!trans->block_rsv) |
| 5208 | return; |
| 5209 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5210 | if (!trans->bytes_reserved) |
| 5211 | return; |
| 5212 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 5213 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5214 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 5215 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5216 | trans->bytes_reserved = 0; |
| 5217 | } |
| 5218 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5219 | /* |
| 5220 | * To be called after all the new block groups attached to the transaction |
| 5221 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5222 | */ |
| 5223 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5224 | { |
| 5225 | struct btrfs_fs_info *fs_info = trans->root->fs_info; |
| 5226 | |
| 5227 | if (!trans->chunk_bytes_reserved) |
| 5228 | return; |
| 5229 | |
| 5230 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5231 | |
| 5232 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
| 5233 | trans->chunk_bytes_reserved); |
| 5234 | trans->chunk_bytes_reserved = 0; |
| 5235 | } |
| 5236 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5237 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5238 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 5239 | struct inode *inode) |
| 5240 | { |
| 5241 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5242 | struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root); |
| 5243 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 5244 | |
| 5245 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5246 | * We need to hold space in order to delete our orphan item once we've |
| 5247 | * added it, so this takes the reservation so we can release it later |
| 5248 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5249 | */ |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5250 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5251 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5252 | btrfs_ino(inode), num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5253 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 5254 | } |
| 5255 | |
| 5256 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 5257 | { |
| 5258 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5259 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5260 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5261 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5262 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 5263 | } |
| 5264 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5265 | /* |
| 5266 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 5267 | * root: the root of the parent directory |
| 5268 | * rsv: block reservation |
| 5269 | * items: the number of items that we need do reservation |
| 5270 | * qgroup_reserved: used to return the reserved size in qgroup |
| 5271 | * |
| 5272 | * This function is used to reserve the space for snapshot/subvolume |
| 5273 | * creation and deletion. Those operations are different with the |
| 5274 | * common file/directory operations, they change two fs/file trees |
| 5275 | * and root tree, the number of items that the qgroup reserves is |
| 5276 | * different with the free space reservation. So we can not use |
| 5277 | * the space reseravtion mechanism in start_transaction(). |
| 5278 | */ |
| 5279 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 5280 | struct btrfs_block_rsv *rsv, |
| 5281 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5282 | u64 *qgroup_reserved, |
| 5283 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5284 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5285 | u64 num_bytes; |
| 5286 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5287 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5288 | |
| 5289 | if (root->fs_info->quota_enabled) { |
| 5290 | /* One for parent inode, two for dir entries */ |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5291 | num_bytes = 3 * root->nodesize; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5292 | ret = btrfs_qgroup_reserve(root, num_bytes); |
| 5293 | if (ret) |
| 5294 | return ret; |
| 5295 | } else { |
| 5296 | num_bytes = 0; |
| 5297 | } |
| 5298 | |
| 5299 | *qgroup_reserved = num_bytes; |
| 5300 | |
| 5301 | num_bytes = btrfs_calc_trans_metadata_size(root, items); |
| 5302 | rsv->space_info = __find_space_info(root->fs_info, |
| 5303 | BTRFS_BLOCK_GROUP_METADATA); |
| 5304 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5305 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5306 | |
| 5307 | if (ret == -ENOSPC && use_global_rsv) |
| 5308 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes); |
| 5309 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5310 | if (ret) { |
| 5311 | if (*qgroup_reserved) |
| 5312 | btrfs_qgroup_free(root, *qgroup_reserved); |
| 5313 | } |
| 5314 | |
| 5315 | return ret; |
| 5316 | } |
| 5317 | |
| 5318 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 5319 | struct btrfs_block_rsv *rsv, |
| 5320 | u64 qgroup_reserved) |
| 5321 | { |
| 5322 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5323 | } |
| 5324 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5325 | /** |
| 5326 | * drop_outstanding_extent - drop an outstanding extent |
| 5327 | * @inode: the inode we're dropping the extent for |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5328 | * @num_bytes: the number of bytes we're relaseing. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5329 | * |
| 5330 | * This is called when we are freeing up an outstanding extent, either called |
| 5331 | * after an error or after an extent is written. This will return the number of |
| 5332 | * reserved extents that need to be freed. This must be called with |
| 5333 | * BTRFS_I(inode)->lock held. |
| 5334 | */ |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5335 | static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5336 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5337 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5338 | unsigned dropped_extents = 0; |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5339 | unsigned num_extents = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5340 | |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5341 | num_extents = (unsigned)div64_u64(num_bytes + |
| 5342 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5343 | BTRFS_MAX_EXTENT_SIZE); |
| 5344 | ASSERT(num_extents); |
| 5345 | ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents); |
| 5346 | BTRFS_I(inode)->outstanding_extents -= num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5347 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5348 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5349 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5350 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5351 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5352 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5353 | /* |
| 5354 | * If we have more or the same amount of outsanding extents than we have |
| 5355 | * reserved then we need to leave the reserved extents count alone. |
| 5356 | */ |
| 5357 | if (BTRFS_I(inode)->outstanding_extents >= |
| 5358 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5359 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5360 | |
| 5361 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 5362 | BTRFS_I(inode)->outstanding_extents; |
| 5363 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5364 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5365 | } |
| 5366 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5367 | /** |
| 5368 | * calc_csum_metadata_size - return the amount of metada space that must be |
| 5369 | * reserved/free'd for the given bytes. |
| 5370 | * @inode: the inode we're manipulating |
| 5371 | * @num_bytes: the number of bytes in question |
| 5372 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5373 | * |
| 5374 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5375 | * correct amount of metadata that must either be reserved or freed. We |
| 5376 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5377 | * number of bytes that will need to be checksumed by this value to figure out |
| 5378 | * how many checksums will be required. If we are adding bytes then the number |
| 5379 | * may go up and we will return the number of additional bytes that must be |
| 5380 | * reserved. If it is going down we will return the number of bytes that must |
| 5381 | * be freed. |
| 5382 | * |
| 5383 | * This must be called with BTRFS_I(inode)->lock held. |
| 5384 | */ |
| 5385 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 5386 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5387 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5388 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 5389 | u64 old_csums, num_csums; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5390 | |
| 5391 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 5392 | BTRFS_I(inode)->csum_bytes == 0) |
| 5393 | return 0; |
| 5394 | |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5395 | 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] | 5396 | if (reserve) |
| 5397 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 5398 | else |
| 5399 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5400 | 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] | 5401 | |
| 5402 | /* No change, no need to reserve more */ |
| 5403 | if (old_csums == num_csums) |
| 5404 | return 0; |
| 5405 | |
| 5406 | if (reserve) |
| 5407 | return btrfs_calc_trans_metadata_size(root, |
| 5408 | num_csums - old_csums); |
| 5409 | |
| 5410 | return btrfs_calc_trans_metadata_size(root, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5411 | } |
| 5412 | |
| 5413 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 5414 | { |
| 5415 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5416 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5417 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5418 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5419 | unsigned nr_extents = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5420 | int extra_reserve = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5421 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5422 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5423 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5424 | u64 to_free = 0; |
| 5425 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5426 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5427 | /* If we are a free space inode we need to not flush since we will be in |
| 5428 | * the middle of a transaction commit. We also don't need the delalloc |
| 5429 | * mutex since we won't race with anybody. We need this mostly to make |
| 5430 | * lockdep shut its filthy mouth. |
| 5431 | */ |
| 5432 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5433 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5434 | delalloc_lock = false; |
| 5435 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5436 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5437 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 5438 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5439 | schedule_timeout(1); |
| 5440 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5441 | if (delalloc_lock) |
| 5442 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 5443 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5444 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5445 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5446 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 6a41dd0 | 2015-03-13 15:12:23 -0400 | [diff] [blame] | 5447 | nr_extents = (unsigned)div64_u64(num_bytes + |
| 5448 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5449 | BTRFS_MAX_EXTENT_SIZE); |
| 5450 | BTRFS_I(inode)->outstanding_extents += nr_extents; |
| 5451 | nr_extents = 0; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5452 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5453 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5454 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5455 | nr_extents = BTRFS_I(inode)->outstanding_extents - |
| 5456 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5457 | |
| 5458 | /* |
| 5459 | * Add an item to reserve for updating the inode when we complete the |
| 5460 | * delalloc io. |
| 5461 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5462 | if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5463 | &BTRFS_I(inode)->runtime_flags)) { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5464 | nr_extents++; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5465 | extra_reserve = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5466 | } |
| 5467 | |
| 5468 | to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5469 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5470 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5471 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5472 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5473 | if (root->fs_info->quota_enabled) { |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 5474 | ret = btrfs_qgroup_reserve(root, nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5475 | if (ret) |
| 5476 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5477 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5478 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5479 | ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush); |
| 5480 | if (unlikely(ret)) { |
| 5481 | if (root->fs_info->quota_enabled) |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 5482 | btrfs_qgroup_free(root, nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5483 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5484 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5485 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5486 | spin_lock(&BTRFS_I(inode)->lock); |
| 5487 | if (extra_reserve) { |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5488 | set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5489 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5490 | nr_extents--; |
| 5491 | } |
| 5492 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 5493 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5494 | |
| 5495 | if (delalloc_lock) |
| 5496 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5497 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5498 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 5499 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5500 | btrfs_ino(inode), to_reserve, 1); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5501 | block_rsv_add_bytes(block_rsv, to_reserve, 1); |
| 5502 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5503 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5504 | |
| 5505 | out_fail: |
| 5506 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5507 | dropped = drop_outstanding_extent(inode, num_bytes); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5508 | /* |
| 5509 | * If the inodes csum_bytes is the same as the original |
| 5510 | * csum_bytes then we know we haven't raced with any free()ers |
| 5511 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5512 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5513 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5514 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5515 | } else { |
| 5516 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 5517 | u64 bytes; |
| 5518 | |
| 5519 | /* |
| 5520 | * This is tricky, but first we need to figure out how much we |
| 5521 | * free'd from any free-ers that occured during this |
| 5522 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 5523 | * before we dropped our lock, and then call the free for the |
| 5524 | * number of bytes that were freed while we were trying our |
| 5525 | * reservation. |
| 5526 | */ |
| 5527 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 5528 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 5529 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 5530 | |
| 5531 | |
| 5532 | /* |
| 5533 | * Now we need to see how much we would have freed had we not |
| 5534 | * been making this reservation and our ->csum_bytes were not |
| 5535 | * artificially inflated. |
| 5536 | */ |
| 5537 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 5538 | bytes = csum_bytes - orig_csum_bytes; |
| 5539 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 5540 | |
| 5541 | /* |
| 5542 | * Now reset ->csum_bytes to what it should be. If bytes is |
| 5543 | * more than to_free then we would have free'd more space had we |
| 5544 | * not had an artificially high ->csum_bytes, so we need to free |
| 5545 | * the remainder. If bytes is the same or less then we don't |
| 5546 | * need to do anything, the other free-ers did the correct |
| 5547 | * thing. |
| 5548 | */ |
| 5549 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 5550 | if (bytes > to_free) |
| 5551 | to_free = bytes - to_free; |
| 5552 | else |
| 5553 | to_free = 0; |
| 5554 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5555 | spin_unlock(&BTRFS_I(inode)->lock); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 5556 | if (dropped) |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5557 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
| 5558 | |
| 5559 | if (to_free) { |
| 5560 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 5561 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5562 | btrfs_ino(inode), to_free, 0); |
| 5563 | } |
| 5564 | if (delalloc_lock) |
| 5565 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 5566 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5567 | } |
| 5568 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5569 | /** |
| 5570 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 5571 | * @inode: the inode to release the reservation for |
| 5572 | * @num_bytes: the number of bytes we're releasing |
| 5573 | * |
| 5574 | * This will release the metadata reservation for an inode. This can be called |
| 5575 | * once we complete IO for a given set of bytes to release their metadata |
| 5576 | * reservations. |
| 5577 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5578 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 5579 | { |
| 5580 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5581 | u64 to_free = 0; |
| 5582 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5583 | |
| 5584 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5585 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5586 | dropped = drop_outstanding_extent(inode, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5587 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 5588 | if (num_bytes) |
| 5589 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5590 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5591 | if (dropped > 0) |
| 5592 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5593 | |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 5594 | if (btrfs_test_is_dummy_root(root)) |
| 5595 | return; |
| 5596 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5597 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5598 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5599 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5600 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 5601 | to_free); |
| 5602 | } |
| 5603 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5604 | /** |
| 5605 | * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc |
| 5606 | * @inode: inode we're writing to |
| 5607 | * @num_bytes: the number of bytes we want to allocate |
| 5608 | * |
| 5609 | * This will do the following things |
| 5610 | * |
| 5611 | * o reserve space in the data space info for num_bytes |
| 5612 | * o reserve space in the metadata space info based on number of outstanding |
| 5613 | * extents and how much csums will be needed |
| 5614 | * o add to the inodes ->delalloc_bytes |
| 5615 | * o add it to the fs_info's delalloc inodes list. |
| 5616 | * |
| 5617 | * This will return 0 for success and -ENOSPC if there is no space left. |
| 5618 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5619 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes) |
| 5620 | { |
| 5621 | int ret; |
| 5622 | |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 5623 | ret = btrfs_check_data_free_space(inode, num_bytes, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5624 | if (ret) |
| 5625 | return ret; |
| 5626 | |
| 5627 | ret = btrfs_delalloc_reserve_metadata(inode, num_bytes); |
| 5628 | if (ret) { |
| 5629 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5630 | return ret; |
| 5631 | } |
| 5632 | |
| 5633 | return 0; |
| 5634 | } |
| 5635 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5636 | /** |
| 5637 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
| 5638 | * @inode: inode we're releasing space for |
| 5639 | * @num_bytes: the number of bytes we want to free up |
| 5640 | * |
| 5641 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 5642 | * called in the case that we don't need the metadata AND data reservations |
| 5643 | * anymore. So if there is an error or we insert an inline extent. |
| 5644 | * |
| 5645 | * This function will release the metadata space that was not used and will |
| 5646 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 5647 | * list if there are no delalloc bytes left. |
| 5648 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5649 | void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes) |
| 5650 | { |
| 5651 | btrfs_delalloc_release_metadata(inode, num_bytes); |
| 5652 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5653 | } |
| 5654 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 5655 | static int update_block_group(struct btrfs_trans_handle *trans, |
| 5656 | struct btrfs_root *root, u64 bytenr, |
| 5657 | u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5658 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5659 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5660 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5661 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5662 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5663 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5664 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 5665 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5666 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5667 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5668 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5669 | if (alloc) |
| 5670 | old_val += num_bytes; |
| 5671 | else |
| 5672 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5673 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5674 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5675 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5676 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5677 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5678 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5679 | return -ENOENT; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5680 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 5681 | BTRFS_BLOCK_GROUP_RAID1 | |
| 5682 | BTRFS_BLOCK_GROUP_RAID10)) |
| 5683 | factor = 2; |
| 5684 | else |
| 5685 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 5686 | /* |
| 5687 | * If this block group has free space cache written out, we |
| 5688 | * need to make sure to load it if we are removing space. This |
| 5689 | * is because we need the unpinning stage to actually add the |
| 5690 | * space back to the block group, otherwise we will leak space. |
| 5691 | */ |
| 5692 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5693 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5694 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5695 | byte_in_group = bytenr - cache->key.objectid; |
| 5696 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5697 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5698 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5699 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5700 | |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 5701 | if (btrfs_test_opt(root, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5702 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 5703 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 5704 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5705 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5706 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5707 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5708 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5709 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5710 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5711 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5712 | cache->space_info->bytes_used += num_bytes; |
| 5713 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5714 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5715 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5716 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5717 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 5718 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5719 | cache->pinned += num_bytes; |
| 5720 | cache->space_info->bytes_pinned += num_bytes; |
| 5721 | cache->space_info->bytes_used -= num_bytes; |
| 5722 | cache->space_info->disk_used -= num_bytes * factor; |
| 5723 | spin_unlock(&cache->lock); |
| 5724 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 5725 | |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 5726 | set_extent_dirty(info->pinned_extents, |
| 5727 | bytenr, bytenr + num_bytes - 1, |
| 5728 | GFP_NOFS | __GFP_NOFAIL); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 5729 | /* |
| 5730 | * No longer have used bytes in this block group, queue |
| 5731 | * it for deletion. |
| 5732 | */ |
| 5733 | if (old_val == 0) { |
| 5734 | spin_lock(&info->unused_bgs_lock); |
| 5735 | if (list_empty(&cache->bg_list)) { |
| 5736 | btrfs_get_block_group(cache); |
| 5737 | list_add_tail(&cache->bg_list, |
| 5738 | &info->unused_bgs); |
| 5739 | } |
| 5740 | spin_unlock(&info->unused_bgs_lock); |
| 5741 | } |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5742 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 5743 | |
| 5744 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 5745 | if (list_empty(&cache->dirty_list)) { |
| 5746 | list_add_tail(&cache->dirty_list, |
| 5747 | &trans->transaction->dirty_bgs); |
| 5748 | trans->transaction->num_dirty_bgs++; |
| 5749 | btrfs_get_block_group(cache); |
| 5750 | } |
| 5751 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 5752 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5753 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5754 | total -= num_bytes; |
| 5755 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5756 | } |
| 5757 | return 0; |
| 5758 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 5759 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5760 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 5761 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5762 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5763 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5764 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 5765 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 5766 | bytenr = root->fs_info->first_logical_byte; |
| 5767 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 5768 | |
| 5769 | if (bytenr < (u64)-1) |
| 5770 | return bytenr; |
| 5771 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5772 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 5773 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5774 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5775 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5776 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5777 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5778 | |
| 5779 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5780 | } |
| 5781 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5782 | static int pin_down_extent(struct btrfs_root *root, |
| 5783 | struct btrfs_block_group_cache *cache, |
| 5784 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5785 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5786 | spin_lock(&cache->space_info->lock); |
| 5787 | spin_lock(&cache->lock); |
| 5788 | cache->pinned += num_bytes; |
| 5789 | cache->space_info->bytes_pinned += num_bytes; |
| 5790 | if (reserved) { |
| 5791 | cache->reserved -= num_bytes; |
| 5792 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5793 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5794 | spin_unlock(&cache->lock); |
| 5795 | spin_unlock(&cache->space_info->lock); |
| 5796 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5797 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 5798 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 5799 | if (reserved) |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 5800 | trace_btrfs_reserved_extent_free(root, bytenr, num_bytes); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5801 | return 0; |
| 5802 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5803 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5804 | /* |
| 5805 | * this function must be called within transaction |
| 5806 | */ |
| 5807 | int btrfs_pin_extent(struct btrfs_root *root, |
| 5808 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5809 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5810 | struct btrfs_block_group_cache *cache; |
| 5811 | |
| 5812 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5813 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5814 | |
| 5815 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 5816 | |
| 5817 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5818 | return 0; |
| 5819 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5820 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5821 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5822 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5823 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 5824 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5825 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5826 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5827 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5828 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5829 | |
| 5830 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5831 | if (!cache) |
| 5832 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5833 | |
| 5834 | /* |
| 5835 | * pull in the free space cache (if any) so that our pin |
| 5836 | * removes the free space from the cache. We have load_only set |
| 5837 | * to one because the slow code to read in the free extents does check |
| 5838 | * the pinned extents. |
| 5839 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5840 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5841 | |
| 5842 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 5843 | |
| 5844 | /* 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] | 5845 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5846 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5847 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5848 | } |
| 5849 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 5850 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 5851 | { |
| 5852 | int ret; |
| 5853 | struct btrfs_block_group_cache *block_group; |
| 5854 | struct btrfs_caching_control *caching_ctl; |
| 5855 | |
| 5856 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 5857 | if (!block_group) |
| 5858 | return -EINVAL; |
| 5859 | |
| 5860 | cache_block_group(block_group, 0); |
| 5861 | caching_ctl = get_caching_control(block_group); |
| 5862 | |
| 5863 | if (!caching_ctl) { |
| 5864 | /* Logic error */ |
| 5865 | BUG_ON(!block_group_cache_done(block_group)); |
| 5866 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 5867 | } else { |
| 5868 | mutex_lock(&caching_ctl->mutex); |
| 5869 | |
| 5870 | if (start >= caching_ctl->progress) { |
| 5871 | ret = add_excluded_extent(root, start, num_bytes); |
| 5872 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 5873 | ret = btrfs_remove_free_space(block_group, |
| 5874 | start, num_bytes); |
| 5875 | } else { |
| 5876 | num_bytes = caching_ctl->progress - start; |
| 5877 | ret = btrfs_remove_free_space(block_group, |
| 5878 | start, num_bytes); |
| 5879 | if (ret) |
| 5880 | goto out_lock; |
| 5881 | |
| 5882 | num_bytes = (start + num_bytes) - |
| 5883 | caching_ctl->progress; |
| 5884 | start = caching_ctl->progress; |
| 5885 | ret = add_excluded_extent(root, start, num_bytes); |
| 5886 | } |
| 5887 | out_lock: |
| 5888 | mutex_unlock(&caching_ctl->mutex); |
| 5889 | put_caching_control(caching_ctl); |
| 5890 | } |
| 5891 | btrfs_put_block_group(block_group); |
| 5892 | return ret; |
| 5893 | } |
| 5894 | |
| 5895 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 5896 | struct extent_buffer *eb) |
| 5897 | { |
| 5898 | struct btrfs_file_extent_item *item; |
| 5899 | struct btrfs_key key; |
| 5900 | int found_type; |
| 5901 | int i; |
| 5902 | |
| 5903 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 5904 | return 0; |
| 5905 | |
| 5906 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 5907 | btrfs_item_key_to_cpu(eb, &key, i); |
| 5908 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 5909 | continue; |
| 5910 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 5911 | found_type = btrfs_file_extent_type(eb, item); |
| 5912 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 5913 | continue; |
| 5914 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 5915 | continue; |
| 5916 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 5917 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 5918 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 5919 | } |
| 5920 | |
| 5921 | return 0; |
| 5922 | } |
| 5923 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5924 | /** |
| 5925 | * btrfs_update_reserved_bytes - update the block_group and space info counters |
| 5926 | * @cache: The cache we are manipulating |
| 5927 | * @num_bytes: The number of bytes in question |
| 5928 | * @reserve: One of the reservation enums |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5929 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5930 | * |
| 5931 | * This is called by the allocator when it reserves space, or by somebody who is |
| 5932 | * freeing space that was never actually used on disk. For example if you |
| 5933 | * reserve some space for a new leaf in transaction A and before transaction A |
| 5934 | * commits you free that leaf, you call this with reserve set to 0 in order to |
| 5935 | * clear the reservation. |
| 5936 | * |
| 5937 | * Metadata reservations should be called with RESERVE_ALLOC so we do the proper |
| 5938 | * ENOSPC accounting. For data we handle the reservation through clearing the |
| 5939 | * delalloc bits in the io_tree. We have to do this since we could end up |
| 5940 | * allocating less disk space for the amount of data we have reserved in the |
| 5941 | * case of compression. |
| 5942 | * |
| 5943 | * If this is a reservation and the block group has become read only we cannot |
| 5944 | * make the reservation and return -EAGAIN, otherwise this function always |
| 5945 | * succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5946 | */ |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5947 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5948 | u64 num_bytes, int reserve, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5949 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5950 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5951 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5952 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5953 | spin_lock(&space_info->lock); |
| 5954 | spin_lock(&cache->lock); |
| 5955 | if (reserve != RESERVE_FREE) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5956 | if (cache->ro) { |
| 5957 | ret = -EAGAIN; |
| 5958 | } else { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5959 | cache->reserved += num_bytes; |
| 5960 | space_info->bytes_reserved += num_bytes; |
| 5961 | if (reserve == RESERVE_ALLOC) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5962 | trace_btrfs_space_reservation(cache->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5963 | "space_info", space_info->flags, |
| 5964 | num_bytes, 0); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5965 | space_info->bytes_may_use -= num_bytes; |
| 5966 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5967 | |
| 5968 | if (delalloc) |
| 5969 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5970 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5971 | } else { |
| 5972 | if (cache->ro) |
| 5973 | space_info->bytes_readonly += num_bytes; |
| 5974 | cache->reserved -= num_bytes; |
| 5975 | space_info->bytes_reserved -= num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5976 | |
| 5977 | if (delalloc) |
| 5978 | cache->delalloc_bytes -= num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5979 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5980 | spin_unlock(&cache->lock); |
| 5981 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5982 | return ret; |
| 5983 | } |
| 5984 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 5985 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5986 | struct btrfs_root *root) |
| 5987 | { |
| 5988 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5989 | struct btrfs_caching_control *next; |
| 5990 | struct btrfs_caching_control *caching_ctl; |
| 5991 | struct btrfs_block_group_cache *cache; |
| 5992 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 5993 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5994 | |
| 5995 | list_for_each_entry_safe(caching_ctl, next, |
| 5996 | &fs_info->caching_block_groups, list) { |
| 5997 | cache = caching_ctl->block_group; |
| 5998 | if (block_group_cache_done(cache)) { |
| 5999 | cache->last_byte_to_unpin = (u64)-1; |
| 6000 | list_del_init(&caching_ctl->list); |
| 6001 | put_caching_control(caching_ctl); |
| 6002 | } else { |
| 6003 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6004 | } |
| 6005 | } |
| 6006 | |
| 6007 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6008 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6009 | else |
| 6010 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6011 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6012 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6013 | |
| 6014 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6015 | } |
| 6016 | |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6017 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end, |
| 6018 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6019 | { |
| 6020 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6021 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6022 | struct btrfs_space_info *space_info; |
| 6023 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6024 | u64 len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6025 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6026 | |
| 6027 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6028 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6029 | if (!cache || |
| 6030 | start >= cache->key.objectid + cache->key.offset) { |
| 6031 | if (cache) |
| 6032 | btrfs_put_block_group(cache); |
| 6033 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6034 | BUG_ON(!cache); /* Logic error */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6035 | } |
| 6036 | |
| 6037 | len = cache->key.objectid + cache->key.offset - start; |
| 6038 | len = min(len, end + 1 - start); |
| 6039 | |
| 6040 | if (start < cache->last_byte_to_unpin) { |
| 6041 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6042 | if (return_free_space) |
| 6043 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6044 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6045 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6046 | start += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6047 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6048 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6049 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6050 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6051 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6052 | space_info->bytes_pinned -= len; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 6053 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6054 | if (cache->ro) { |
| 6055 | space_info->bytes_readonly += len; |
| 6056 | readonly = true; |
| 6057 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6058 | spin_unlock(&cache->lock); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6059 | if (!readonly && global_rsv->space_info == space_info) { |
| 6060 | spin_lock(&global_rsv->lock); |
| 6061 | if (!global_rsv->full) { |
| 6062 | len = min(len, global_rsv->size - |
| 6063 | global_rsv->reserved); |
| 6064 | global_rsv->reserved += len; |
| 6065 | space_info->bytes_may_use += len; |
| 6066 | if (global_rsv->reserved >= global_rsv->size) |
| 6067 | global_rsv->full = 1; |
| 6068 | } |
| 6069 | spin_unlock(&global_rsv->lock); |
| 6070 | } |
| 6071 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6072 | } |
| 6073 | |
| 6074 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6075 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6076 | return 0; |
| 6077 | } |
| 6078 | |
| 6079 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6080 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6081 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6082 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6083 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6084 | u64 start; |
| 6085 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6086 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6087 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6088 | if (trans->aborted) |
| 6089 | return 0; |
| 6090 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6091 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6092 | unpin = &fs_info->freed_extents[1]; |
| 6093 | else |
| 6094 | unpin = &fs_info->freed_extents[0]; |
| 6095 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6096 | while (1) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6097 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6098 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 6099 | EXTENT_DIRTY, NULL); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6100 | if (ret) { |
| 6101 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6102 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6103 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6104 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6105 | if (btrfs_test_opt(root, DISCARD)) |
| 6106 | ret = btrfs_discard_extent(root, start, |
| 6107 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6108 | |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6109 | clear_extent_dirty(unpin, start, end, GFP_NOFS); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6110 | unpin_extent_range(root, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6111 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6112 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6113 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6114 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6115 | return 0; |
| 6116 | } |
| 6117 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6118 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 6119 | u64 owner, u64 root_objectid) |
| 6120 | { |
| 6121 | struct btrfs_space_info *space_info; |
| 6122 | u64 flags; |
| 6123 | |
| 6124 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 6125 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 6126 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 6127 | else |
| 6128 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 6129 | } else { |
| 6130 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 6131 | } |
| 6132 | |
| 6133 | space_info = __find_space_info(fs_info, flags); |
| 6134 | BUG_ON(!space_info); /* Logic bug */ |
| 6135 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 6136 | } |
| 6137 | |
| 6138 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6139 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 6140 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6141 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6142 | u64 root_objectid, u64 owner_objectid, |
| 6143 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6144 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6145 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6146 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6147 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6148 | struct btrfs_fs_info *info = root->fs_info; |
| 6149 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6150 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6151 | struct btrfs_extent_item *ei; |
| 6152 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6153 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6154 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6155 | int extent_slot = 0; |
| 6156 | int found_extent = 0; |
| 6157 | int num_to_del = 1; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6158 | int no_quota = node->no_quota; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6159 | u32 item_size; |
| 6160 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6161 | u64 bytenr = node->bytenr; |
| 6162 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6163 | int last_ref = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6164 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 6165 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6166 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6167 | if (!info->quota_enabled || !is_fstree(root_objectid)) |
| 6168 | no_quota = 1; |
| 6169 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6170 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6171 | if (!path) |
| 6172 | return -ENOMEM; |
| 6173 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 6174 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6175 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6176 | |
| 6177 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6178 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6179 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6180 | if (is_data) |
| 6181 | skinny_metadata = 0; |
| 6182 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6183 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 6184 | bytenr, num_bytes, parent, |
| 6185 | root_objectid, owner_objectid, |
| 6186 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6187 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6188 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6189 | while (extent_slot >= 0) { |
| 6190 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6191 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6192 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6193 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6194 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6195 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6196 | found_extent = 1; |
| 6197 | break; |
| 6198 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6199 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6200 | key.offset == owner_objectid) { |
| 6201 | found_extent = 1; |
| 6202 | break; |
| 6203 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6204 | if (path->slots[0] - extent_slot > 5) |
| 6205 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6206 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6207 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6208 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6209 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 6210 | if (found_extent && item_size < sizeof(*ei)) |
| 6211 | found_extent = 0; |
| 6212 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6213 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6214 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6215 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6216 | NULL, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6217 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6218 | if (ret) { |
| 6219 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6220 | goto out; |
| 6221 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6222 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6223 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6224 | |
| 6225 | key.objectid = bytenr; |
| 6226 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6227 | key.offset = num_bytes; |
| 6228 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6229 | if (!is_data && skinny_metadata) { |
| 6230 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6231 | key.offset = owner_objectid; |
| 6232 | } |
| 6233 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6234 | ret = btrfs_search_slot(trans, extent_root, |
| 6235 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6236 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6237 | /* |
| 6238 | * Couldn't find our skinny metadata item, |
| 6239 | * see if we have ye olde extent item. |
| 6240 | */ |
| 6241 | path->slots[0]--; |
| 6242 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6243 | path->slots[0]); |
| 6244 | if (key.objectid == bytenr && |
| 6245 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6246 | key.offset == num_bytes) |
| 6247 | ret = 0; |
| 6248 | } |
| 6249 | |
| 6250 | if (ret > 0 && skinny_metadata) { |
| 6251 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6252 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6253 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6254 | key.offset = num_bytes; |
| 6255 | btrfs_release_path(path); |
| 6256 | ret = btrfs_search_slot(trans, extent_root, |
| 6257 | &key, path, -1, 1); |
| 6258 | } |
| 6259 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6260 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6261 | 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] | 6262 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6263 | if (ret > 0) |
| 6264 | btrfs_print_leaf(extent_root, |
| 6265 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6266 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6267 | if (ret < 0) { |
| 6268 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6269 | goto out; |
| 6270 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6271 | extent_slot = path->slots[0]; |
| 6272 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6273 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6274 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6275 | btrfs_err(info, |
| 6276 | "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] | 6277 | bytenr, parent, root_objectid, owner_objectid, |
| 6278 | owner_offset); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 6279 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6280 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6281 | } else { |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6282 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6283 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6284 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6285 | |
| 6286 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6287 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6288 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6289 | if (item_size < sizeof(*ei)) { |
| 6290 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 6291 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 6292 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6293 | if (ret < 0) { |
| 6294 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6295 | goto out; |
| 6296 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6297 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6298 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6299 | path->leave_spinning = 1; |
| 6300 | |
| 6301 | key.objectid = bytenr; |
| 6302 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6303 | key.offset = num_bytes; |
| 6304 | |
| 6305 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 6306 | -1, 1); |
| 6307 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6308 | 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] | 6309 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6310 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 6311 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6312 | if (ret < 0) { |
| 6313 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6314 | goto out; |
| 6315 | } |
| 6316 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6317 | extent_slot = path->slots[0]; |
| 6318 | leaf = path->nodes[0]; |
| 6319 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6320 | } |
| 6321 | #endif |
| 6322 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6323 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 6324 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6325 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 6326 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6327 | struct btrfs_tree_block_info *bi; |
| 6328 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 6329 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 6330 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6331 | } |
| 6332 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6333 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6334 | if (refs < refs_to_drop) { |
| 6335 | 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] | 6336 | "for bytenr %Lu", refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6337 | ret = -EINVAL; |
| 6338 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6339 | goto out; |
| 6340 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6341 | refs -= refs_to_drop; |
| 6342 | |
| 6343 | if (refs > 0) { |
| 6344 | if (extent_op) |
| 6345 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 6346 | /* |
| 6347 | * In the case of inline back ref, reference count will |
| 6348 | * be updated by remove_extent_backref |
| 6349 | */ |
| 6350 | if (iref) { |
| 6351 | BUG_ON(!found_extent); |
| 6352 | } else { |
| 6353 | btrfs_set_extent_refs(leaf, ei, refs); |
| 6354 | btrfs_mark_buffer_dirty(leaf); |
| 6355 | } |
| 6356 | if (found_extent) { |
| 6357 | ret = remove_extent_backref(trans, extent_root, path, |
| 6358 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6359 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6360 | if (ret) { |
| 6361 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6362 | goto out; |
| 6363 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6364 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6365 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 6366 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6367 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6368 | if (found_extent) { |
| 6369 | BUG_ON(is_data && refs_to_drop != |
| 6370 | extent_data_ref_count(root, path, iref)); |
| 6371 | if (iref) { |
| 6372 | BUG_ON(path->slots[0] != extent_slot); |
| 6373 | } else { |
| 6374 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 6375 | path->slots[0] = extent_slot; |
| 6376 | num_to_del = 2; |
| 6377 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 6378 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6379 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6380 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6381 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 6382 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6383 | if (ret) { |
| 6384 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6385 | goto out; |
| 6386 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6387 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 6388 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6389 | if (is_data) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6390 | ret = btrfs_del_csums(trans, root, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6391 | if (ret) { |
| 6392 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6393 | goto out; |
| 6394 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6395 | } |
| 6396 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6397 | ret = update_block_group(trans, root, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6398 | if (ret) { |
| 6399 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6400 | goto out; |
| 6401 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6402 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6403 | btrfs_release_path(path); |
| 6404 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6405 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6406 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6407 | return ret; |
| 6408 | } |
| 6409 | |
| 6410 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6411 | * 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] | 6412 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 6413 | * a given extent, and if there are no other delayed refs to be processed, it |
| 6414 | * removes it from the tree. |
| 6415 | */ |
| 6416 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 6417 | struct btrfs_root *root, u64 bytenr) |
| 6418 | { |
| 6419 | struct btrfs_delayed_ref_head *head; |
| 6420 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6421 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6422 | |
| 6423 | delayed_refs = &trans->transaction->delayed_refs; |
| 6424 | spin_lock(&delayed_refs->lock); |
| 6425 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 6426 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6427 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6428 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6429 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 6430 | if (!list_empty(&head->ref_list)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6431 | goto out; |
| 6432 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6433 | if (head->extent_op) { |
| 6434 | if (!head->must_insert_reserved) |
| 6435 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 6436 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6437 | head->extent_op = NULL; |
| 6438 | } |
| 6439 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6440 | /* |
| 6441 | * waiting for the lock here would deadlock. If someone else has it |
| 6442 | * locked they are already in the process of dropping it anyway |
| 6443 | */ |
| 6444 | if (!mutex_trylock(&head->mutex)) |
| 6445 | goto out; |
| 6446 | |
| 6447 | /* |
| 6448 | * at this point we have a head with no other entries. Go |
| 6449 | * ahead and process it. |
| 6450 | */ |
| 6451 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 6452 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6453 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6454 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6455 | |
| 6456 | /* |
| 6457 | * we don't take a ref on the node because we're removing it from the |
| 6458 | * tree, so we just steal the ref the tree was holding. |
| 6459 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6460 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6461 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6462 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6463 | head->processing = 0; |
| 6464 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6465 | spin_unlock(&delayed_refs->lock); |
| 6466 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6467 | BUG_ON(head->extent_op); |
| 6468 | if (head->must_insert_reserved) |
| 6469 | ret = 1; |
| 6470 | |
| 6471 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6472 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6473 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6474 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6475 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6476 | |
| 6477 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6478 | spin_unlock(&delayed_refs->lock); |
| 6479 | return 0; |
| 6480 | } |
| 6481 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6482 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 6483 | struct btrfs_root *root, |
| 6484 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6485 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6486 | { |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6487 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6488 | int ret; |
| 6489 | |
| 6490 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6491 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 6492 | buf->start, buf->len, |
| 6493 | parent, root->root_key.objectid, |
| 6494 | btrfs_header_level(buf), |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6495 | BTRFS_DROP_DELAYED_REF, NULL, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6496 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6497 | } |
| 6498 | |
| 6499 | if (!last_ref) |
| 6500 | return; |
| 6501 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6502 | if (btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6503 | struct btrfs_block_group_cache *cache; |
| 6504 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6505 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 6506 | ret = check_ref_cleanup(trans, root, buf->start); |
| 6507 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6508 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6509 | } |
| 6510 | |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6511 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
| 6512 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6513 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 6514 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6515 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6516 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6517 | } |
| 6518 | |
| 6519 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 6520 | |
| 6521 | btrfs_add_free_space(cache, buf->start, buf->len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6522 | btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 6523 | btrfs_put_block_group(cache); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6524 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6525 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6526 | } |
| 6527 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6528 | if (pin) |
| 6529 | add_pinned_bytes(root->fs_info, buf->len, |
| 6530 | btrfs_header_level(buf), |
| 6531 | root->root_key.objectid); |
| 6532 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 6533 | /* |
| 6534 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 6535 | * anymore. |
| 6536 | */ |
| 6537 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6538 | } |
| 6539 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6540 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6541 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6542 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6543 | u64 owner, u64 offset, int no_quota) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6544 | { |
| 6545 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6546 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6547 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 6548 | if (btrfs_test_is_dummy_root(root)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 6549 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 6550 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6551 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 6552 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6553 | /* |
| 6554 | * tree log blocks never actually go into the extent allocation |
| 6555 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6556 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6557 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 6558 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6559 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6560 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6561 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6562 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6563 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 6564 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6565 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6566 | BTRFS_DROP_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6567 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6568 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 6569 | num_bytes, |
| 6570 | parent, root_objectid, owner, |
| 6571 | offset, BTRFS_DROP_DELAYED_REF, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6572 | NULL, no_quota); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6573 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6574 | return ret; |
| 6575 | } |
| 6576 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6577 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6578 | * when we wait for progress in the block group caching, its because |
| 6579 | * our allocation attempt failed at least once. So, we must sleep |
| 6580 | * and let some progress happen before we try again. |
| 6581 | * |
| 6582 | * This function will sleep at least once waiting for new free space to |
| 6583 | * show up, and then it will check the block group free space numbers |
| 6584 | * for our min num_bytes. Another option is to have it go ahead |
| 6585 | * and look in the rbtree for a free extent of a given size, but this |
| 6586 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6587 | * |
| 6588 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 6589 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6590 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6591 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6592 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 6593 | u64 num_bytes) |
| 6594 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6595 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6596 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6597 | caching_ctl = get_caching_control(cache); |
| 6598 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6599 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6600 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6601 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 6602 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6603 | |
| 6604 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6605 | } |
| 6606 | |
| 6607 | static noinline int |
| 6608 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 6609 | { |
| 6610 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6611 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6612 | |
| 6613 | caching_ctl = get_caching_control(cache); |
| 6614 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6615 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6616 | |
| 6617 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6618 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 6619 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6620 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6621 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6622 | } |
| 6623 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6624 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6625 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6626 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6627 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6628 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6629 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6630 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6631 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6632 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6633 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6634 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6635 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6636 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6637 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6638 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6639 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6640 | } |
| 6641 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6642 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6643 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6644 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6645 | } |
| 6646 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6647 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 6648 | [BTRFS_RAID_RAID10] = "raid10", |
| 6649 | [BTRFS_RAID_RAID1] = "raid1", |
| 6650 | [BTRFS_RAID_DUP] = "dup", |
| 6651 | [BTRFS_RAID_RAID0] = "raid0", |
| 6652 | [BTRFS_RAID_SINGLE] = "single", |
| 6653 | [BTRFS_RAID_RAID5] = "raid5", |
| 6654 | [BTRFS_RAID_RAID6] = "raid6", |
| 6655 | }; |
| 6656 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 6657 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6658 | { |
| 6659 | if (type >= BTRFS_NR_RAID_TYPES) |
| 6660 | return NULL; |
| 6661 | |
| 6662 | return btrfs_raid_type_names[type]; |
| 6663 | } |
| 6664 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6665 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6666 | LOOP_CACHING_NOWAIT = 0, |
| 6667 | LOOP_CACHING_WAIT = 1, |
| 6668 | LOOP_ALLOC_CHUNK = 2, |
| 6669 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6670 | }; |
| 6671 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6672 | static inline void |
| 6673 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 6674 | int delalloc) |
| 6675 | { |
| 6676 | if (delalloc) |
| 6677 | down_read(&cache->data_rwsem); |
| 6678 | } |
| 6679 | |
| 6680 | static inline void |
| 6681 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 6682 | int delalloc) |
| 6683 | { |
| 6684 | btrfs_get_block_group(cache); |
| 6685 | if (delalloc) |
| 6686 | down_read(&cache->data_rwsem); |
| 6687 | } |
| 6688 | |
| 6689 | static struct btrfs_block_group_cache * |
| 6690 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 6691 | struct btrfs_free_cluster *cluster, |
| 6692 | int delalloc) |
| 6693 | { |
| 6694 | struct btrfs_block_group_cache *used_bg; |
| 6695 | bool locked = false; |
| 6696 | again: |
| 6697 | spin_lock(&cluster->refill_lock); |
| 6698 | if (locked) { |
| 6699 | if (used_bg == cluster->block_group) |
| 6700 | return used_bg; |
| 6701 | |
| 6702 | up_read(&used_bg->data_rwsem); |
| 6703 | btrfs_put_block_group(used_bg); |
| 6704 | } |
| 6705 | |
| 6706 | used_bg = cluster->block_group; |
| 6707 | if (!used_bg) |
| 6708 | return NULL; |
| 6709 | |
| 6710 | if (used_bg == block_group) |
| 6711 | return used_bg; |
| 6712 | |
| 6713 | btrfs_get_block_group(used_bg); |
| 6714 | |
| 6715 | if (!delalloc) |
| 6716 | return used_bg; |
| 6717 | |
| 6718 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 6719 | return used_bg; |
| 6720 | |
| 6721 | spin_unlock(&cluster->refill_lock); |
| 6722 | down_read(&used_bg->data_rwsem); |
| 6723 | locked = true; |
| 6724 | goto again; |
| 6725 | } |
| 6726 | |
| 6727 | static inline void |
| 6728 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 6729 | int delalloc) |
| 6730 | { |
| 6731 | if (delalloc) |
| 6732 | up_read(&cache->data_rwsem); |
| 6733 | btrfs_put_block_group(cache); |
| 6734 | } |
| 6735 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6736 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6737 | * walks the btree of allocated extents and find a hole of a given size. |
| 6738 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6739 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 6740 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6741 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6742 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6743 | * |
| 6744 | * If there is no suitable free space, we will record the max size of |
| 6745 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6746 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6747 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6748 | u64 num_bytes, u64 empty_size, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6749 | u64 hint_byte, struct btrfs_key *ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6750 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6751 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6752 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6753 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6754 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6755 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 6756 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6757 | u64 max_extent_size = 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6758 | int empty_cluster = 2 * 1024 * 1024; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6759 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6760 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6761 | int index = __get_raid_index(flags); |
| 6762 | int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ? |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6763 | RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC; |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6764 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6765 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6766 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6767 | bool have_caching_bg = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6768 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6769 | WARN_ON(num_bytes < root->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 6770 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6771 | ins->objectid = 0; |
| 6772 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6773 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6774 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6775 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6776 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6777 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6778 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6779 | return -ENOSPC; |
| 6780 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6781 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6782 | /* |
| 6783 | * If the space info is for both data and metadata it means we have a |
| 6784 | * small filesystem and we can't use the clustering stuff. |
| 6785 | */ |
| 6786 | if (btrfs_mixed_space_info(space_info)) |
| 6787 | use_cluster = false; |
| 6788 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6789 | if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6790 | last_ptr = &root->fs_info->meta_alloc_cluster; |
Chris Mason | 536ac8a | 2009-02-12 09:41:38 -0500 | [diff] [blame] | 6791 | if (!btrfs_test_opt(root, SSD)) |
| 6792 | empty_cluster = 64 * 1024; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6793 | } |
| 6794 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6795 | if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster && |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6796 | btrfs_test_opt(root, SSD)) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6797 | last_ptr = &root->fs_info->data_alloc_cluster; |
| 6798 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6799 | |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6800 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6801 | spin_lock(&last_ptr->lock); |
| 6802 | if (last_ptr->block_group) |
| 6803 | hint_byte = last_ptr->window_start; |
| 6804 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6805 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6806 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6807 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6808 | search_start = max(search_start, hint_byte); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6809 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6810 | if (!last_ptr) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6811 | empty_cluster = 0; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6812 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6813 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6814 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 6815 | search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6816 | /* |
| 6817 | * we don't want to use the block group if it doesn't match our |
| 6818 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6819 | * |
| 6820 | * However if we are re-searching with an ideal block group |
| 6821 | * 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] | 6822 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6823 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6824 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6825 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6826 | if (list_empty(&block_group->list) || |
| 6827 | block_group->ro) { |
| 6828 | /* |
| 6829 | * someone is removing this block group, |
| 6830 | * we can't jump into the have_block_group |
| 6831 | * target because our list pointers are not |
| 6832 | * valid |
| 6833 | */ |
| 6834 | btrfs_put_block_group(block_group); |
| 6835 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6836 | } else { |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6837 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6838 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6839 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6840 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6841 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6842 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6843 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6844 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6845 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6846 | have_caching_bg = false; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6847 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6848 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 6849 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6850 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6851 | int cached; |
Chris Mason | 8a1413a2 | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 6852 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6853 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6854 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6855 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6856 | /* |
| 6857 | * this can happen if we end up cycling through all the |
| 6858 | * raid types, but we want to make sure we only allocate |
| 6859 | * for the proper type. |
| 6860 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6861 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6862 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 6863 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6864 | BTRFS_BLOCK_GROUP_RAID5 | |
| 6865 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6866 | BTRFS_BLOCK_GROUP_RAID10; |
| 6867 | |
| 6868 | /* |
| 6869 | * if they asked for extra copies and this block group |
| 6870 | * doesn't provide them, bail. This does allow us to |
| 6871 | * fill raid0 from raid1. |
| 6872 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6873 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6874 | goto loop; |
| 6875 | } |
| 6876 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6877 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6878 | cached = block_group_cache_done(block_group); |
| 6879 | if (unlikely(!cached)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6880 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 6881 | BUG_ON(ret < 0); |
| 6882 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6883 | } |
| 6884 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6885 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 6886 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6887 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6888 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6889 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6890 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6891 | * Ok we want to try and use the cluster allocator, so |
| 6892 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6893 | */ |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6894 | if (last_ptr) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6895 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6896 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6897 | /* |
| 6898 | * the refill lock keeps out other |
| 6899 | * people trying to start a new cluster |
| 6900 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6901 | used_block_group = btrfs_lock_cluster(block_group, |
| 6902 | last_ptr, |
| 6903 | delalloc); |
| 6904 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6905 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6906 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6907 | if (used_block_group != block_group && |
| 6908 | (used_block_group->ro || |
| 6909 | !block_group_bits(used_block_group, flags))) |
| 6910 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6911 | |
| 6912 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6913 | last_ptr, |
| 6914 | num_bytes, |
| 6915 | used_block_group->key.objectid, |
| 6916 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6917 | if (offset) { |
| 6918 | /* we have a block, we're done */ |
| 6919 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6920 | trace_btrfs_reserve_extent_cluster(root, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 6921 | used_block_group, |
| 6922 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6923 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6924 | btrfs_release_block_group(block_group, |
| 6925 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6926 | block_group = used_block_group; |
| 6927 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6928 | goto checks; |
| 6929 | } |
| 6930 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6931 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6932 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6933 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 6934 | * set up a new clusters, so lets just skip it |
| 6935 | * and let the allocator find whatever block |
| 6936 | * it can find. If we reach this point, we |
| 6937 | * will have tried the cluster allocator |
| 6938 | * plenty of times and not have found |
| 6939 | * anything, so we are likely way too |
| 6940 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6941 | * anything. |
| 6942 | * |
| 6943 | * However, if the cluster is taken from the |
| 6944 | * current block group, release the cluster |
| 6945 | * first, so that we stand a better chance of |
| 6946 | * succeeding in the unclustered |
| 6947 | * allocation. */ |
| 6948 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6949 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6950 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6951 | btrfs_release_block_group(used_block_group, |
| 6952 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6953 | goto unclustered_alloc; |
| 6954 | } |
| 6955 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6956 | /* |
| 6957 | * this cluster didn't work out, free it and |
| 6958 | * start over |
| 6959 | */ |
| 6960 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 6961 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6962 | if (used_block_group != block_group) |
| 6963 | btrfs_release_block_group(used_block_group, |
| 6964 | delalloc); |
| 6965 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6966 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 6967 | spin_unlock(&last_ptr->refill_lock); |
| 6968 | goto unclustered_alloc; |
| 6969 | } |
| 6970 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6971 | aligned_cluster = max_t(unsigned long, |
| 6972 | empty_cluster + empty_size, |
| 6973 | block_group->full_stripe_len); |
| 6974 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6975 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6976 | ret = btrfs_find_space_cluster(root, block_group, |
| 6977 | last_ptr, search_start, |
| 6978 | num_bytes, |
| 6979 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6980 | if (ret == 0) { |
| 6981 | /* |
| 6982 | * now pull our allocation out of this |
| 6983 | * cluster |
| 6984 | */ |
| 6985 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6986 | last_ptr, |
| 6987 | num_bytes, |
| 6988 | search_start, |
| 6989 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6990 | if (offset) { |
| 6991 | /* we found one, proceed */ |
| 6992 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6993 | trace_btrfs_reserve_extent_cluster(root, |
| 6994 | block_group, search_start, |
| 6995 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6996 | goto checks; |
| 6997 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6998 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 6999 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7000 | spin_unlock(&last_ptr->refill_lock); |
| 7001 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7002 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7003 | wait_block_group_cache_progress(block_group, |
| 7004 | num_bytes + empty_cluster + empty_size); |
| 7005 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7006 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7007 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7008 | /* |
| 7009 | * at this point we either didn't find a cluster |
| 7010 | * or we weren't able to allocate a block from our |
| 7011 | * cluster. Free the cluster we've been trying |
| 7012 | * to use, and go to the next block group |
| 7013 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7014 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7015 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7016 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7017 | } |
| 7018 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7019 | unclustered_alloc: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7020 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 7021 | if (cached && |
| 7022 | block_group->free_space_ctl->free_space < |
| 7023 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7024 | if (block_group->free_space_ctl->free_space > |
| 7025 | max_extent_size) |
| 7026 | max_extent_size = |
| 7027 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7028 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7029 | goto loop; |
| 7030 | } |
| 7031 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7032 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7033 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7034 | num_bytes, empty_size, |
| 7035 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7036 | /* |
| 7037 | * If we didn't find a chunk, and we haven't failed on this |
| 7038 | * block group before, and this block group is in the middle of |
| 7039 | * caching and we are ok with waiting, then go ahead and wait |
| 7040 | * for progress to be made, and set failed_alloc to true. |
| 7041 | * |
| 7042 | * If failed_alloc is true then we've already waited on this |
| 7043 | * block group once and should move on to the next block group. |
| 7044 | */ |
| 7045 | if (!offset && !failed_alloc && !cached && |
| 7046 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7047 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7048 | num_bytes + empty_size); |
| 7049 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7050 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7051 | } else if (!offset) { |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7052 | if (!cached) |
| 7053 | have_caching_bg = true; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7054 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7055 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7056 | checks: |
David Sterba | 4e54b17 | 2014-06-05 01:39:19 +0200 | [diff] [blame] | 7057 | search_start = ALIGN(offset, root->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7058 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7059 | /* move on to the next group */ |
| 7060 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7061 | block_group->key.objectid + block_group->key.offset) { |
| 7062 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7063 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7064 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7065 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7066 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7067 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7068 | search_start - offset); |
| 7069 | BUG_ON(offset > search_start); |
| 7070 | |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7071 | ret = btrfs_update_reserved_bytes(block_group, num_bytes, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7072 | alloc_type, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7073 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7074 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7075 | goto loop; |
| 7076 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7077 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7078 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7079 | ins->objectid = search_start; |
| 7080 | ins->offset = num_bytes; |
| 7081 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7082 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 7083 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7084 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7085 | break; |
| 7086 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7087 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7088 | failed_alloc = false; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7089 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7090 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7091 | } |
| 7092 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 7093 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7094 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 7095 | goto search; |
| 7096 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7097 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 7098 | goto search; |
| 7099 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7100 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7101 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7102 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7103 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7104 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7105 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7106 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7107 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7108 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7109 | index = 0; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7110 | loop++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7111 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7112 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7113 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7114 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7115 | trans = current->journal_info; |
| 7116 | if (trans) |
| 7117 | exist = 1; |
| 7118 | else |
| 7119 | trans = btrfs_join_transaction(root); |
| 7120 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7121 | if (IS_ERR(trans)) { |
| 7122 | ret = PTR_ERR(trans); |
| 7123 | goto out; |
| 7124 | } |
| 7125 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7126 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7127 | CHUNK_ALLOC_FORCE); |
| 7128 | /* |
| 7129 | * Do not bail out on ENOSPC since we |
| 7130 | * can do more things. |
| 7131 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7132 | if (ret < 0 && ret != -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7133 | btrfs_abort_transaction(trans, |
| 7134 | root, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7135 | else |
| 7136 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7137 | if (!exist) |
| 7138 | btrfs_end_transaction(trans, root); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7139 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7140 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7141 | } |
| 7142 | |
| 7143 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7144 | empty_size = 0; |
| 7145 | empty_cluster = 0; |
| 7146 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7147 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7148 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7149 | } else if (!ins->objectid) { |
| 7150 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7151 | } else if (ins->objectid) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7152 | ret = 0; |
| 7153 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7154 | out: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7155 | if (ret == -ENOSPC) |
| 7156 | ins->offset = max_extent_size; |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 7157 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7158 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7159 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7160 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 7161 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7162 | { |
| 7163 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7164 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7165 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7166 | spin_lock(&info->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7167 | 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] | 7168 | info->flags, |
| 7169 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 7170 | info->bytes_reserved - info->bytes_readonly, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7171 | (info->full) ? "" : "not "); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7172 | printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, " |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 7173 | "reserved=%llu, may_use=%llu, readonly=%llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7174 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 7175 | info->bytes_reserved, info->bytes_may_use, |
| 7176 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7177 | spin_unlock(&info->lock); |
| 7178 | |
| 7179 | if (!dump_block_groups) |
| 7180 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7181 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7182 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7183 | again: |
| 7184 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7185 | spin_lock(&cache->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7186 | printk(KERN_INFO "BTRFS: " |
| 7187 | "block group %llu has %llu bytes, " |
| 7188 | "%llu used %llu pinned %llu reserved %s\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7189 | cache->key.objectid, cache->key.offset, |
| 7190 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 7191 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7192 | btrfs_dump_free_space(cache, bytes); |
| 7193 | spin_unlock(&cache->lock); |
| 7194 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7195 | if (++index < BTRFS_NR_RAID_TYPES) |
| 7196 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7197 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7198 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 7199 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7200 | int btrfs_reserve_extent(struct btrfs_root *root, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7201 | u64 num_bytes, u64 min_alloc_size, |
| 7202 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7203 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7204 | { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7205 | bool final_tried = false; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7206 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7207 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7208 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7209 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 7210 | again: |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 7211 | WARN_ON(num_bytes < root->sectorsize); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7212 | ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7213 | flags, delalloc); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 7214 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7215 | if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7216 | if (!final_tried && ins->offset) { |
| 7217 | num_bytes = min(num_bytes >> 1, ins->offset); |
Zach Brown | 24542bf | 2012-11-16 00:04:43 +0000 | [diff] [blame] | 7218 | num_bytes = round_down(num_bytes, root->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7219 | num_bytes = max(num_bytes, min_alloc_size); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7220 | if (num_bytes == min_alloc_size) |
| 7221 | final_tried = true; |
| 7222 | goto again; |
| 7223 | } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 7224 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7225 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7226 | sinfo = __find_space_info(root->fs_info, flags); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7227 | btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7228 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 7229 | if (sinfo) |
| 7230 | dump_space_info(sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7231 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7232 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7233 | |
| 7234 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7235 | } |
| 7236 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7237 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7238 | u64 start, u64 len, |
| 7239 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7240 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7241 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 7242 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7243 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7244 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 7245 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7246 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7247 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7248 | return -ENOSPC; |
| 7249 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 7250 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7251 | if (pin) |
| 7252 | pin_down_extent(root, cache, start, len, 1); |
| 7253 | else { |
Filipe Manana | dcc82f4 | 2015-03-23 14:07:40 +0000 | [diff] [blame] | 7254 | if (btrfs_test_opt(root, DISCARD)) |
| 7255 | ret = btrfs_discard_extent(root, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7256 | btrfs_add_free_space(cache, start, len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7257 | btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7258 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 7259 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7260 | btrfs_put_block_group(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7261 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 7262 | trace_btrfs_reserved_extent_free(root, start, len); |
| 7263 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7264 | return ret; |
| 7265 | } |
| 7266 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7267 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7268 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7269 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7270 | return __btrfs_free_reserved_extent(root, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7271 | } |
| 7272 | |
| 7273 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 7274 | u64 start, u64 len) |
| 7275 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7276 | return __btrfs_free_reserved_extent(root, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7277 | } |
| 7278 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7279 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 7280 | struct btrfs_root *root, |
| 7281 | u64 parent, u64 root_objectid, |
| 7282 | u64 flags, u64 owner, u64 offset, |
| 7283 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7284 | { |
| 7285 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7286 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7287 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7288 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7289 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7290 | struct extent_buffer *leaf; |
| 7291 | int type; |
| 7292 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 7293 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7294 | if (parent > 0) |
| 7295 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 7296 | else |
| 7297 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 7298 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7299 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7300 | |
| 7301 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 7302 | if (!path) |
| 7303 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7304 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7305 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7306 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 7307 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7308 | if (ret) { |
| 7309 | btrfs_free_path(path); |
| 7310 | return ret; |
| 7311 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7312 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7313 | leaf = path->nodes[0]; |
| 7314 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7315 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7316 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 7317 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7318 | btrfs_set_extent_flags(leaf, extent_item, |
| 7319 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7320 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7321 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 7322 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 7323 | if (parent > 0) { |
| 7324 | struct btrfs_shared_data_ref *ref; |
| 7325 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 7326 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7327 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 7328 | } else { |
| 7329 | struct btrfs_extent_data_ref *ref; |
| 7330 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 7331 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 7332 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 7333 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 7334 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 7335 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7336 | |
| 7337 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7338 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 7339 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 7340 | ret = update_block_group(trans, root, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7341 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7342 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7343 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 7344 | BUG(); |
| 7345 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7346 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7347 | return ret; |
| 7348 | } |
| 7349 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7350 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 7351 | struct btrfs_root *root, |
| 7352 | u64 parent, u64 root_objectid, |
| 7353 | u64 flags, struct btrfs_disk_key *key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7354 | int level, struct btrfs_key *ins, |
| 7355 | int no_quota) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7356 | { |
| 7357 | int ret; |
| 7358 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 7359 | struct btrfs_extent_item *extent_item; |
| 7360 | struct btrfs_tree_block_info *block_info; |
| 7361 | struct btrfs_extent_inline_ref *iref; |
| 7362 | struct btrfs_path *path; |
| 7363 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7364 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7365 | u64 num_bytes = ins->offset; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7366 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7367 | SKINNY_METADATA); |
| 7368 | |
| 7369 | if (!skinny_metadata) |
| 7370 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7371 | |
| 7372 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7373 | if (!path) { |
| 7374 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7375 | root->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 7376 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7377 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7378 | |
| 7379 | path->leave_spinning = 1; |
| 7380 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 7381 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7382 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 7383 | btrfs_free_path(path); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7384 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7385 | root->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7386 | return ret; |
| 7387 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7388 | |
| 7389 | leaf = path->nodes[0]; |
| 7390 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 7391 | struct btrfs_extent_item); |
| 7392 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 7393 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7394 | btrfs_set_extent_flags(leaf, extent_item, |
| 7395 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7396 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7397 | if (skinny_metadata) { |
| 7398 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7399 | num_bytes = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7400 | } else { |
| 7401 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 7402 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 7403 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 7404 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 7405 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7406 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7407 | if (parent > 0) { |
| 7408 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 7409 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7410 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 7411 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7412 | } else { |
| 7413 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7414 | BTRFS_TREE_BLOCK_REF_KEY); |
| 7415 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 7416 | } |
| 7417 | |
| 7418 | btrfs_mark_buffer_dirty(leaf); |
| 7419 | btrfs_free_path(path); |
| 7420 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 7421 | ret = update_block_group(trans, root, ins->objectid, root->nodesize, |
| 7422 | 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7423 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7424 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7425 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7426 | BUG(); |
| 7427 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7428 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7429 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7430 | return ret; |
| 7431 | } |
| 7432 | |
| 7433 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 7434 | struct btrfs_root *root, |
| 7435 | u64 root_objectid, u64 owner, |
| 7436 | u64 offset, struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7437 | { |
| 7438 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 7439 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7440 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7441 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7442 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 7443 | ins->offset, 0, |
| 7444 | root_objectid, owner, offset, |
| 7445 | BTRFS_ADD_DELAYED_EXTENT, NULL, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7446 | return ret; |
| 7447 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7448 | |
| 7449 | /* |
| 7450 | * this is used by the tree logging recovery code. It records that |
| 7451 | * an extent has been allocated and makes sure to clear the free |
| 7452 | * space cache bits as well |
| 7453 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7454 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 7455 | struct btrfs_root *root, |
| 7456 | u64 root_objectid, u64 owner, u64 offset, |
| 7457 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7458 | { |
| 7459 | int ret; |
| 7460 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7461 | |
| 7462 | /* |
| 7463 | * Mixed block groups will exclude before processing the log so we only |
| 7464 | * need to do the exlude dance if this fs isn't mixed. |
| 7465 | */ |
| 7466 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 7467 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 7468 | if (ret) |
| 7469 | return ret; |
| 7470 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7471 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7472 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7473 | if (!block_group) |
| 7474 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7475 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 7476 | ret = btrfs_update_reserved_bytes(block_group, ins->offset, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7477 | RESERVE_ALLOC_NO_ACCOUNT, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7478 | BUG_ON(ret); /* logic error */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7479 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 7480 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 7481 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7482 | return ret; |
| 7483 | } |
| 7484 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7485 | static struct extent_buffer * |
| 7486 | 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] | 7487 | u64 bytenr, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7488 | { |
| 7489 | struct extent_buffer *buf; |
| 7490 | |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 7491 | buf = btrfs_find_create_tree_block(root, bytenr); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7492 | if (!buf) |
| 7493 | return ERR_PTR(-ENOMEM); |
| 7494 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 7495 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7496 | btrfs_tree_lock(buf); |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 7497 | clean_tree_block(trans, root->fs_info, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 7498 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7499 | |
| 7500 | btrfs_set_lock_blocking(buf); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7501 | btrfs_set_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7502 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7503 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7504 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 7505 | /* |
| 7506 | * we allow two log transactions at a time, use different |
| 7507 | * EXENT bit to differentiate dirty pages. |
| 7508 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7509 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 7510 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 7511 | buf->start + buf->len - 1, GFP_NOFS); |
| 7512 | else |
| 7513 | set_extent_new(&root->dirty_log_pages, buf->start, |
| 7514 | buf->start + buf->len - 1, GFP_NOFS); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7515 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7516 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7517 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 7518 | buf->start + buf->len - 1, GFP_NOFS); |
| 7519 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7520 | trans->blocks_used++; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7521 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7522 | return buf; |
| 7523 | } |
| 7524 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7525 | static struct btrfs_block_rsv * |
| 7526 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 7527 | struct btrfs_root *root, u32 blocksize) |
| 7528 | { |
| 7529 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 7530 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7531 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7532 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7533 | |
| 7534 | block_rsv = get_block_rsv(trans, root); |
| 7535 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7536 | if (unlikely(block_rsv->size == 0)) |
| 7537 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7538 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7539 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 7540 | if (!ret) |
| 7541 | return block_rsv; |
| 7542 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7543 | if (block_rsv->failfast) |
| 7544 | return ERR_PTR(ret); |
| 7545 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7546 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 7547 | global_updated = true; |
| 7548 | update_global_block_rsv(root->fs_info); |
| 7549 | goto again; |
| 7550 | } |
| 7551 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7552 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 7553 | static DEFINE_RATELIMIT_STATE(_rs, |
| 7554 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 7555 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 7556 | if (__ratelimit(&_rs)) |
| 7557 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7558 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7559 | } |
| 7560 | try_reserve: |
| 7561 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 7562 | BTRFS_RESERVE_NO_FLUSH); |
| 7563 | if (!ret) |
| 7564 | return block_rsv; |
| 7565 | /* |
| 7566 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7567 | * the global reserve if its space type is the same as the global |
| 7568 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7569 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7570 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 7571 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7572 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 7573 | if (!ret) |
| 7574 | return global_rsv; |
| 7575 | } |
| 7576 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7577 | } |
| 7578 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7579 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 7580 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7581 | { |
| 7582 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7583 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7584 | } |
| 7585 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7586 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7587 | * finds a free extent and does all the dirty work required for allocation |
| 7588 | * returns the key for the extent through ins, and a tree buffer for |
| 7589 | * the first block of the extent through buf. |
| 7590 | * |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7591 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7592 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 7593 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
| 7594 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7595 | u64 parent, u64 root_objectid, |
| 7596 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7597 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7598 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 7599 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7600 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7601 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7602 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7603 | u64 flags = 0; |
| 7604 | int ret; |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 7605 | u32 blocksize = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7606 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7607 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7608 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7609 | if (btrfs_test_is_dummy_root(root)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7610 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 7611 | level); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7612 | if (!IS_ERR(buf)) |
| 7613 | root->alloc_bytenr += blocksize; |
| 7614 | return buf; |
| 7615 | } |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7616 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7617 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 7618 | if (IS_ERR(block_rsv)) |
| 7619 | return ERR_CAST(block_rsv); |
| 7620 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7621 | ret = btrfs_reserve_extent(root, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7622 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7623 | if (ret) |
| 7624 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 7625 | |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 7626 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7627 | if (IS_ERR(buf)) { |
| 7628 | ret = PTR_ERR(buf); |
| 7629 | goto out_free_reserved; |
| 7630 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7631 | |
| 7632 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 7633 | if (parent == 0) |
| 7634 | parent = ins.objectid; |
| 7635 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7636 | } else |
| 7637 | BUG_ON(parent > 0); |
| 7638 | |
| 7639 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7640 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7641 | if (!extent_op) { |
| 7642 | ret = -ENOMEM; |
| 7643 | goto out_free_buf; |
| 7644 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7645 | if (key) |
| 7646 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 7647 | else |
| 7648 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 7649 | extent_op->flags_to_set = flags; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7650 | if (skinny_metadata) |
| 7651 | extent_op->update_key = 0; |
| 7652 | else |
| 7653 | extent_op->update_key = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7654 | extent_op->update_flags = 1; |
| 7655 | extent_op->is_data = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7656 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7657 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7658 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7659 | ins.objectid, ins.offset, |
| 7660 | parent, root_objectid, level, |
| 7661 | BTRFS_ADD_DELAYED_EXTENT, |
| 7662 | extent_op, 0); |
| 7663 | if (ret) |
| 7664 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7665 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7666 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 7667 | |
| 7668 | out_free_delayed: |
| 7669 | btrfs_free_delayed_extent_op(extent_op); |
| 7670 | out_free_buf: |
| 7671 | free_extent_buffer(buf); |
| 7672 | out_free_reserved: |
| 7673 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0); |
| 7674 | out_unuse: |
| 7675 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
| 7676 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7677 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7678 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7679 | struct walk_control { |
| 7680 | u64 refs[BTRFS_MAX_LEVEL]; |
| 7681 | u64 flags[BTRFS_MAX_LEVEL]; |
| 7682 | struct btrfs_key update_progress; |
| 7683 | int stage; |
| 7684 | int level; |
| 7685 | int shared_level; |
| 7686 | int update_ref; |
| 7687 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7688 | int reada_slot; |
| 7689 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7690 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7691 | }; |
| 7692 | |
| 7693 | #define DROP_REFERENCE 1 |
| 7694 | #define UPDATE_BACKREF 2 |
| 7695 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7696 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 7697 | struct btrfs_root *root, |
| 7698 | struct walk_control *wc, |
| 7699 | struct btrfs_path *path) |
| 7700 | { |
| 7701 | u64 bytenr; |
| 7702 | u64 generation; |
| 7703 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7704 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7705 | u32 nritems; |
| 7706 | u32 blocksize; |
| 7707 | struct btrfs_key key; |
| 7708 | struct extent_buffer *eb; |
| 7709 | int ret; |
| 7710 | int slot; |
| 7711 | int nread = 0; |
| 7712 | |
| 7713 | if (path->slots[wc->level] < wc->reada_slot) { |
| 7714 | wc->reada_count = wc->reada_count * 2 / 3; |
| 7715 | wc->reada_count = max(wc->reada_count, 2); |
| 7716 | } else { |
| 7717 | wc->reada_count = wc->reada_count * 3 / 2; |
| 7718 | wc->reada_count = min_t(int, wc->reada_count, |
| 7719 | BTRFS_NODEPTRS_PER_BLOCK(root)); |
| 7720 | } |
| 7721 | |
| 7722 | eb = path->nodes[wc->level]; |
| 7723 | nritems = btrfs_header_nritems(eb); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7724 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7725 | |
| 7726 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 7727 | if (nread >= wc->reada_count) |
| 7728 | break; |
| 7729 | |
| 7730 | cond_resched(); |
| 7731 | bytenr = btrfs_node_blockptr(eb, slot); |
| 7732 | generation = btrfs_node_ptr_generation(eb, slot); |
| 7733 | |
| 7734 | if (slot == path->slots[wc->level]) |
| 7735 | goto reada; |
| 7736 | |
| 7737 | if (wc->stage == UPDATE_BACKREF && |
| 7738 | generation <= root->root_key.offset) |
| 7739 | continue; |
| 7740 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7741 | /* 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] | 7742 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 7743 | wc->level - 1, 1, &refs, |
| 7744 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7745 | /* We don't care about errors in readahead. */ |
| 7746 | if (ret < 0) |
| 7747 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7748 | BUG_ON(refs == 0); |
| 7749 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7750 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7751 | if (refs == 1) |
| 7752 | goto reada; |
| 7753 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7754 | if (wc->level == 1 && |
| 7755 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7756 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7757 | if (!wc->update_ref || |
| 7758 | generation <= root->root_key.offset) |
| 7759 | continue; |
| 7760 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 7761 | ret = btrfs_comp_cpu_keys(&key, |
| 7762 | &wc->update_progress); |
| 7763 | if (ret < 0) |
| 7764 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7765 | } else { |
| 7766 | if (wc->level == 1 && |
| 7767 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7768 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7769 | } |
| 7770 | reada: |
David Sterba | d3e46fe | 2014-06-15 02:04:19 +0200 | [diff] [blame] | 7771 | readahead_tree_block(root, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7772 | nread++; |
| 7773 | } |
| 7774 | wc->reada_slot = slot; |
| 7775 | } |
| 7776 | |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 7777 | /* |
| 7778 | * TODO: Modify related function to add related node/leaf to dirty_extent_root, |
| 7779 | * for later qgroup accounting. |
| 7780 | * |
| 7781 | * Current, this function does nothing. |
| 7782 | */ |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7783 | static int account_leaf_items(struct btrfs_trans_handle *trans, |
| 7784 | struct btrfs_root *root, |
| 7785 | struct extent_buffer *eb) |
| 7786 | { |
| 7787 | int nr = btrfs_header_nritems(eb); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 7788 | int i, extent_type; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7789 | struct btrfs_key key; |
| 7790 | struct btrfs_file_extent_item *fi; |
| 7791 | u64 bytenr, num_bytes; |
| 7792 | |
| 7793 | for (i = 0; i < nr; i++) { |
| 7794 | btrfs_item_key_to_cpu(eb, &key, i); |
| 7795 | |
| 7796 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 7797 | continue; |
| 7798 | |
| 7799 | fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 7800 | /* filter out non qgroup-accountable extents */ |
| 7801 | extent_type = btrfs_file_extent_type(eb, fi); |
| 7802 | |
| 7803 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) |
| 7804 | continue; |
| 7805 | |
| 7806 | bytenr = btrfs_file_extent_disk_bytenr(eb, fi); |
| 7807 | if (!bytenr) |
| 7808 | continue; |
| 7809 | |
| 7810 | num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7811 | } |
| 7812 | return 0; |
| 7813 | } |
| 7814 | |
| 7815 | /* |
| 7816 | * Walk up the tree from the bottom, freeing leaves and any interior |
| 7817 | * nodes which have had all slots visited. If a node (leaf or |
| 7818 | * interior) is freed, the node above it will have it's slot |
| 7819 | * incremented. The root node will never be freed. |
| 7820 | * |
| 7821 | * At the end of this function, we should have a path which has all |
| 7822 | * slots incremented to the next position for a search. If we need to |
| 7823 | * read a new node it will be NULL and the node above it will have the |
| 7824 | * correct slot selected for a later read. |
| 7825 | * |
| 7826 | * If we increment the root nodes slot counter past the number of |
| 7827 | * elements, 1 is returned to signal completion of the search. |
| 7828 | */ |
| 7829 | static int adjust_slots_upwards(struct btrfs_root *root, |
| 7830 | struct btrfs_path *path, int root_level) |
| 7831 | { |
| 7832 | int level = 0; |
| 7833 | int nr, slot; |
| 7834 | struct extent_buffer *eb; |
| 7835 | |
| 7836 | if (root_level == 0) |
| 7837 | return 1; |
| 7838 | |
| 7839 | while (level <= root_level) { |
| 7840 | eb = path->nodes[level]; |
| 7841 | nr = btrfs_header_nritems(eb); |
| 7842 | path->slots[level]++; |
| 7843 | slot = path->slots[level]; |
| 7844 | if (slot >= nr || level == 0) { |
| 7845 | /* |
| 7846 | * Don't free the root - we will detect this |
| 7847 | * condition after our loop and return a |
| 7848 | * positive value for caller to stop walking the tree. |
| 7849 | */ |
| 7850 | if (level != root_level) { |
| 7851 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
| 7852 | path->locks[level] = 0; |
| 7853 | |
| 7854 | free_extent_buffer(eb); |
| 7855 | path->nodes[level] = NULL; |
| 7856 | path->slots[level] = 0; |
| 7857 | } |
| 7858 | } else { |
| 7859 | /* |
| 7860 | * We have a valid slot to walk back down |
| 7861 | * from. Stop here so caller can process these |
| 7862 | * new nodes. |
| 7863 | */ |
| 7864 | break; |
| 7865 | } |
| 7866 | |
| 7867 | level++; |
| 7868 | } |
| 7869 | |
| 7870 | eb = path->nodes[root_level]; |
| 7871 | if (path->slots[root_level] >= btrfs_header_nritems(eb)) |
| 7872 | return 1; |
| 7873 | |
| 7874 | return 0; |
| 7875 | } |
| 7876 | |
| 7877 | /* |
| 7878 | * 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] | 7879 | * TODO: Modify this function to mark all (including complete shared node) |
| 7880 | * to dirty_extent_root to allow it get accounted in qgroup. |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7881 | */ |
| 7882 | static int account_shared_subtree(struct btrfs_trans_handle *trans, |
| 7883 | struct btrfs_root *root, |
| 7884 | struct extent_buffer *root_eb, |
| 7885 | u64 root_gen, |
| 7886 | int root_level) |
| 7887 | { |
| 7888 | int ret = 0; |
| 7889 | int level; |
| 7890 | struct extent_buffer *eb = root_eb; |
| 7891 | struct btrfs_path *path = NULL; |
| 7892 | |
| 7893 | BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL); |
| 7894 | BUG_ON(root_eb == NULL); |
| 7895 | |
| 7896 | if (!root->fs_info->quota_enabled) |
| 7897 | return 0; |
| 7898 | |
| 7899 | if (!extent_buffer_uptodate(root_eb)) { |
| 7900 | ret = btrfs_read_buffer(root_eb, root_gen); |
| 7901 | if (ret) |
| 7902 | goto out; |
| 7903 | } |
| 7904 | |
| 7905 | if (root_level == 0) { |
| 7906 | ret = account_leaf_items(trans, root, root_eb); |
| 7907 | goto out; |
| 7908 | } |
| 7909 | |
| 7910 | path = btrfs_alloc_path(); |
| 7911 | if (!path) |
| 7912 | return -ENOMEM; |
| 7913 | |
| 7914 | /* |
| 7915 | * Walk down the tree. Missing extent blocks are filled in as |
| 7916 | * we go. Metadata is accounted every time we read a new |
| 7917 | * extent block. |
| 7918 | * |
| 7919 | * When we reach a leaf, we account for file extent items in it, |
| 7920 | * walk back up the tree (adjusting slot pointers as we go) |
| 7921 | * and restart the search process. |
| 7922 | */ |
| 7923 | extent_buffer_get(root_eb); /* For path */ |
| 7924 | path->nodes[root_level] = root_eb; |
| 7925 | path->slots[root_level] = 0; |
| 7926 | path->locks[root_level] = 0; /* so release_path doesn't try to unlock */ |
| 7927 | walk_down: |
| 7928 | level = root_level; |
| 7929 | while (level >= 0) { |
| 7930 | if (path->nodes[level] == NULL) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7931 | int parent_slot; |
| 7932 | u64 child_gen; |
| 7933 | u64 child_bytenr; |
| 7934 | |
| 7935 | /* We need to get child blockptr/gen from |
| 7936 | * parent before we can read it. */ |
| 7937 | eb = path->nodes[level + 1]; |
| 7938 | parent_slot = path->slots[level + 1]; |
| 7939 | child_bytenr = btrfs_node_blockptr(eb, parent_slot); |
| 7940 | child_gen = btrfs_node_ptr_generation(eb, parent_slot); |
| 7941 | |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 7942 | eb = read_tree_block(root, child_bytenr, child_gen); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 7943 | if (IS_ERR(eb)) { |
| 7944 | ret = PTR_ERR(eb); |
| 7945 | goto out; |
| 7946 | } else if (!extent_buffer_uptodate(eb)) { |
Liu Bo | 8635eda | 2015-05-25 17:30:14 +0800 | [diff] [blame] | 7947 | free_extent_buffer(eb); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 7948 | ret = -EIO; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7949 | goto out; |
| 7950 | } |
| 7951 | |
| 7952 | path->nodes[level] = eb; |
| 7953 | path->slots[level] = 0; |
| 7954 | |
| 7955 | btrfs_tree_read_lock(eb); |
| 7956 | btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); |
| 7957 | path->locks[level] = BTRFS_READ_LOCK_BLOCKING; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7958 | } |
| 7959 | |
| 7960 | if (level == 0) { |
| 7961 | ret = account_leaf_items(trans, root, path->nodes[level]); |
| 7962 | if (ret) |
| 7963 | goto out; |
| 7964 | |
| 7965 | /* Nonzero return here means we completed our search */ |
| 7966 | ret = adjust_slots_upwards(root, path, root_level); |
| 7967 | if (ret) |
| 7968 | break; |
| 7969 | |
| 7970 | /* Restart search with new slots */ |
| 7971 | goto walk_down; |
| 7972 | } |
| 7973 | |
| 7974 | level--; |
| 7975 | } |
| 7976 | |
| 7977 | ret = 0; |
| 7978 | out: |
| 7979 | btrfs_free_path(path); |
| 7980 | |
| 7981 | return ret; |
| 7982 | } |
| 7983 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7984 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7985 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7986 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7987 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 7988 | * back refs for pointers in the block. |
| 7989 | * |
| 7990 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7991 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7992 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 7993 | struct btrfs_root *root, |
| 7994 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7995 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7996 | { |
| 7997 | int level = wc->level; |
| 7998 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7999 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8000 | int ret; |
| 8001 | |
| 8002 | if (wc->stage == UPDATE_BACKREF && |
| 8003 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8004 | return 1; |
| 8005 | |
| 8006 | /* |
| 8007 | * when reference count of tree block is 1, it won't increase |
| 8008 | * again. once full backref flag is set, we never clear it. |
| 8009 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8010 | if (lookup_info && |
| 8011 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8012 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8013 | BUG_ON(!path->locks[level]); |
| 8014 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8015 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8016 | &wc->refs[level], |
| 8017 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8018 | BUG_ON(ret == -ENOMEM); |
| 8019 | if (ret) |
| 8020 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8021 | BUG_ON(wc->refs[level] == 0); |
| 8022 | } |
| 8023 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8024 | if (wc->stage == DROP_REFERENCE) { |
| 8025 | if (wc->refs[level] > 1) |
| 8026 | return 1; |
| 8027 | |
| 8028 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8029 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8030 | path->locks[level] = 0; |
| 8031 | } |
| 8032 | return 0; |
| 8033 | } |
| 8034 | |
| 8035 | /* wc->stage == UPDATE_BACKREF */ |
| 8036 | if (!(wc->flags[level] & flag)) { |
| 8037 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8038 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8039 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8040 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8041 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8042 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8043 | eb->len, flag, |
| 8044 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8045 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8046 | wc->flags[level] |= flag; |
| 8047 | } |
| 8048 | |
| 8049 | /* |
| 8050 | * the block is shared by multiple trees, so it's not good to |
| 8051 | * keep the tree lock |
| 8052 | */ |
| 8053 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8054 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8055 | path->locks[level] = 0; |
| 8056 | } |
| 8057 | return 0; |
| 8058 | } |
| 8059 | |
| 8060 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8061 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8062 | * |
| 8063 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8064 | * reference count of the block pointed to. if the block |
| 8065 | * is shared and we need update back refs for the subtree |
| 8066 | * rooted at the block, this function changes wc->stage to |
| 8067 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8068 | * need to update back, this function drops the reference |
| 8069 | * to the block. |
| 8070 | * |
| 8071 | * NOTE: return value 1 means we should stop walking down. |
| 8072 | */ |
| 8073 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8074 | struct btrfs_root *root, |
| 8075 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8076 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8077 | { |
| 8078 | u64 bytenr; |
| 8079 | u64 generation; |
| 8080 | u64 parent; |
| 8081 | u32 blocksize; |
| 8082 | struct btrfs_key key; |
| 8083 | struct extent_buffer *next; |
| 8084 | int level = wc->level; |
| 8085 | int reada = 0; |
| 8086 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8087 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8088 | |
| 8089 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8090 | path->slots[level]); |
| 8091 | /* |
| 8092 | * if the lower level block was created before the snapshot |
| 8093 | * was created, we know there is no need to update back refs |
| 8094 | * for the subtree |
| 8095 | */ |
| 8096 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8097 | generation <= root->root_key.offset) { |
| 8098 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8099 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8100 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8101 | |
| 8102 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8103 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8104 | |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8105 | next = btrfs_find_tree_block(root->fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8106 | if (!next) { |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 8107 | next = btrfs_find_create_tree_block(root, bytenr); |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8108 | if (!next) |
| 8109 | return -ENOMEM; |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8110 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8111 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8112 | reada = 1; |
| 8113 | } |
| 8114 | btrfs_tree_lock(next); |
| 8115 | btrfs_set_lock_blocking(next); |
| 8116 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8117 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8118 | &wc->refs[level - 1], |
| 8119 | &wc->flags[level - 1]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8120 | if (ret < 0) { |
| 8121 | btrfs_tree_unlock(next); |
| 8122 | return ret; |
| 8123 | } |
| 8124 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8125 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 8126 | btrfs_err(root->fs_info, "Missing references."); |
| 8127 | BUG(); |
| 8128 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8129 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8130 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8131 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8132 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8133 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8134 | if (level == 1 && |
| 8135 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8136 | goto skip; |
| 8137 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8138 | if (!wc->update_ref || |
| 8139 | generation <= root->root_key.offset) |
| 8140 | goto skip; |
| 8141 | |
| 8142 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8143 | path->slots[level]); |
| 8144 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8145 | if (ret < 0) |
| 8146 | goto skip; |
| 8147 | |
| 8148 | wc->stage = UPDATE_BACKREF; |
| 8149 | wc->shared_level = level - 1; |
| 8150 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8151 | } else { |
| 8152 | if (level == 1 && |
| 8153 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8154 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8155 | } |
| 8156 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8157 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8158 | btrfs_tree_unlock(next); |
| 8159 | free_extent_buffer(next); |
| 8160 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8161 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8162 | } |
| 8163 | |
| 8164 | if (!next) { |
| 8165 | if (reada && level == 1) |
| 8166 | reada_walk_down(trans, root, wc, path); |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 8167 | next = read_tree_block(root, bytenr, generation); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8168 | if (IS_ERR(next)) { |
| 8169 | return PTR_ERR(next); |
| 8170 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8171 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8172 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8173 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8174 | btrfs_tree_lock(next); |
| 8175 | btrfs_set_lock_blocking(next); |
| 8176 | } |
| 8177 | |
| 8178 | level--; |
| 8179 | BUG_ON(level != btrfs_header_level(next)); |
| 8180 | path->nodes[level] = next; |
| 8181 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8182 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8183 | wc->level = level; |
| 8184 | if (wc->level == 1) |
| 8185 | wc->reada_slot = 0; |
| 8186 | return 0; |
| 8187 | skip: |
| 8188 | wc->refs[level - 1] = 0; |
| 8189 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8190 | if (wc->stage == DROP_REFERENCE) { |
| 8191 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 8192 | parent = path->nodes[level]->start; |
| 8193 | } else { |
| 8194 | BUG_ON(root->root_key.objectid != |
| 8195 | btrfs_header_owner(path->nodes[level])); |
| 8196 | parent = 0; |
| 8197 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8198 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8199 | if (need_account) { |
| 8200 | ret = account_shared_subtree(trans, root, next, |
| 8201 | generation, level - 1); |
| 8202 | if (ret) { |
| 8203 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 8204 | "%d accounting shared subtree. Quota " |
| 8205 | "is out of sync, rescan required.\n", |
| 8206 | root->fs_info->sb->s_id, ret); |
| 8207 | } |
| 8208 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8209 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8210 | root->root_key.objectid, level - 1, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8211 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8212 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8213 | btrfs_tree_unlock(next); |
| 8214 | free_extent_buffer(next); |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8215 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8216 | return 1; |
| 8217 | } |
| 8218 | |
| 8219 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8220 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8221 | * |
| 8222 | * when wc->stage == DROP_REFERENCE, this function drops |
| 8223 | * reference count on the block. |
| 8224 | * |
| 8225 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 8226 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 8227 | * to UPDATE_BACKREF previously while processing the block. |
| 8228 | * |
| 8229 | * NOTE: return value 1 means we should stop walking up. |
| 8230 | */ |
| 8231 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 8232 | struct btrfs_root *root, |
| 8233 | struct btrfs_path *path, |
| 8234 | struct walk_control *wc) |
| 8235 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8236 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8237 | int level = wc->level; |
| 8238 | struct extent_buffer *eb = path->nodes[level]; |
| 8239 | u64 parent = 0; |
| 8240 | |
| 8241 | if (wc->stage == UPDATE_BACKREF) { |
| 8242 | BUG_ON(wc->shared_level < level); |
| 8243 | if (level < wc->shared_level) |
| 8244 | goto out; |
| 8245 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8246 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 8247 | if (ret > 0) |
| 8248 | wc->update_ref = 0; |
| 8249 | |
| 8250 | wc->stage = DROP_REFERENCE; |
| 8251 | wc->shared_level = -1; |
| 8252 | path->slots[level] = 0; |
| 8253 | |
| 8254 | /* |
| 8255 | * check reference count again if the block isn't locked. |
| 8256 | * we should start walking down the tree again if reference |
| 8257 | * count is one. |
| 8258 | */ |
| 8259 | if (!path->locks[level]) { |
| 8260 | BUG_ON(level == 0); |
| 8261 | btrfs_tree_lock(eb); |
| 8262 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8263 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8264 | |
| 8265 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8266 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8267 | &wc->refs[level], |
| 8268 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8269 | if (ret < 0) { |
| 8270 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8271 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8272 | return ret; |
| 8273 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8274 | BUG_ON(wc->refs[level] == 0); |
| 8275 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8276 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8277 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8278 | return 1; |
| 8279 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8280 | } |
| 8281 | } |
| 8282 | |
| 8283 | /* wc->stage == DROP_REFERENCE */ |
| 8284 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 8285 | |
| 8286 | if (wc->refs[level] == 1) { |
| 8287 | if (level == 0) { |
| 8288 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8289 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8290 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8291 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8292 | BUG_ON(ret); /* -ENOMEM */ |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8293 | ret = account_leaf_items(trans, root, eb); |
| 8294 | if (ret) { |
| 8295 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 8296 | "%d accounting leaf items. Quota " |
| 8297 | "is out of sync, rescan required.\n", |
| 8298 | root->fs_info->sb->s_id, ret); |
| 8299 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8300 | } |
| 8301 | /* make block locked assertion in clean_tree_block happy */ |
| 8302 | if (!path->locks[level] && |
| 8303 | btrfs_header_generation(eb) == trans->transid) { |
| 8304 | btrfs_tree_lock(eb); |
| 8305 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8306 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8307 | } |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8308 | clean_tree_block(trans, root->fs_info, eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8309 | } |
| 8310 | |
| 8311 | if (eb == root->node) { |
| 8312 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8313 | parent = eb->start; |
| 8314 | else |
| 8315 | BUG_ON(root->root_key.objectid != |
| 8316 | btrfs_header_owner(eb)); |
| 8317 | } else { |
| 8318 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8319 | parent = path->nodes[level + 1]->start; |
| 8320 | else |
| 8321 | BUG_ON(root->root_key.objectid != |
| 8322 | btrfs_header_owner(path->nodes[level + 1])); |
| 8323 | } |
| 8324 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8325 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8326 | out: |
| 8327 | wc->refs[level] = 0; |
| 8328 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8329 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8330 | } |
| 8331 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8332 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8333 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8334 | struct btrfs_path *path, |
| 8335 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8336 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8337 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8338 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8339 | int ret; |
| 8340 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8341 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8342 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8343 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8344 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8345 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8346 | if (level == 0) |
| 8347 | break; |
| 8348 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8349 | if (path->slots[level] >= |
| 8350 | btrfs_header_nritems(path->nodes[level])) |
| 8351 | break; |
| 8352 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8353 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8354 | if (ret > 0) { |
| 8355 | path->slots[level]++; |
| 8356 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8357 | } else if (ret < 0) |
| 8358 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8359 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8360 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8361 | return 0; |
| 8362 | } |
| 8363 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8364 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8365 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8366 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8367 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8368 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8369 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8370 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8371 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8372 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8373 | while (level < max_level && path->nodes[level]) { |
| 8374 | wc->level = level; |
| 8375 | if (path->slots[level] + 1 < |
| 8376 | btrfs_header_nritems(path->nodes[level])) { |
| 8377 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8378 | return 0; |
| 8379 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8380 | ret = walk_up_proc(trans, root, path, wc); |
| 8381 | if (ret > 0) |
| 8382 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8383 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8384 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8385 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8386 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8387 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8388 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8389 | free_extent_buffer(path->nodes[level]); |
| 8390 | path->nodes[level] = NULL; |
| 8391 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8392 | } |
| 8393 | } |
| 8394 | return 1; |
| 8395 | } |
| 8396 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8397 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8398 | * drop a subvolume tree. |
| 8399 | * |
| 8400 | * this function traverses the tree freeing any blocks that only |
| 8401 | * referenced by the tree. |
| 8402 | * |
| 8403 | * when a shared tree block is found. this function decreases its |
| 8404 | * reference count by one. if update_ref is true, this function |
| 8405 | * also make sure backrefs for the shared block and all lower level |
| 8406 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8407 | * |
| 8408 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8409 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8410 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8411 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 8412 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8413 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8414 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8415 | struct btrfs_trans_handle *trans; |
| 8416 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8417 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8418 | struct walk_control *wc; |
| 8419 | struct btrfs_key key; |
| 8420 | int err = 0; |
| 8421 | int ret; |
| 8422 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8423 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8424 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8425 | btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid); |
| 8426 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8427 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8428 | if (!path) { |
| 8429 | err = -ENOMEM; |
| 8430 | goto out; |
| 8431 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8432 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8433 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8434 | if (!wc) { |
| 8435 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8436 | err = -ENOMEM; |
| 8437 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8438 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8439 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8440 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8441 | if (IS_ERR(trans)) { |
| 8442 | err = PTR_ERR(trans); |
| 8443 | goto out_free; |
| 8444 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 8445 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8446 | if (block_rsv) |
| 8447 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8448 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8449 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8450 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8451 | path->nodes[level] = btrfs_lock_root_node(root); |
| 8452 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8453 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8454 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8455 | memset(&wc->update_progress, 0, |
| 8456 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8457 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8458 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8459 | memcpy(&wc->update_progress, &key, |
| 8460 | sizeof(wc->update_progress)); |
| 8461 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8462 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8463 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8464 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8465 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 8466 | path->lowest_level = 0; |
| 8467 | if (ret < 0) { |
| 8468 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8469 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8470 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8471 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8472 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8473 | /* |
| 8474 | * unlock our path, this is safe because only this |
| 8475 | * function is allowed to delete this snapshot |
| 8476 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8477 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8478 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8479 | level = btrfs_header_level(root->node); |
| 8480 | while (1) { |
| 8481 | btrfs_tree_lock(path->nodes[level]); |
| 8482 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8483 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8484 | |
| 8485 | ret = btrfs_lookup_extent_info(trans, root, |
| 8486 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8487 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8488 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8489 | if (ret < 0) { |
| 8490 | err = ret; |
| 8491 | goto out_end_trans; |
| 8492 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8493 | BUG_ON(wc->refs[level] == 0); |
| 8494 | |
| 8495 | if (level == root_item->drop_level) |
| 8496 | break; |
| 8497 | |
| 8498 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8499 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8500 | WARN_ON(wc->refs[level] != 1); |
| 8501 | level--; |
| 8502 | } |
| 8503 | } |
| 8504 | |
| 8505 | wc->level = level; |
| 8506 | wc->shared_level = -1; |
| 8507 | wc->stage = DROP_REFERENCE; |
| 8508 | wc->update_ref = update_ref; |
| 8509 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8510 | wc->for_reloc = for_reloc; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8511 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8512 | |
| 8513 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8514 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8515 | ret = walk_down_tree(trans, root, path, wc); |
| 8516 | if (ret < 0) { |
| 8517 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 8518 | break; |
| 8519 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8520 | |
| 8521 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 8522 | if (ret < 0) { |
| 8523 | err = ret; |
| 8524 | break; |
| 8525 | } |
| 8526 | |
| 8527 | if (ret > 0) { |
| 8528 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 8529 | break; |
| 8530 | } |
| 8531 | |
| 8532 | if (wc->stage == DROP_REFERENCE) { |
| 8533 | level = wc->level; |
| 8534 | btrfs_node_key(path->nodes[level], |
| 8535 | &root_item->drop_progress, |
| 8536 | path->slots[level]); |
| 8537 | root_item->drop_level = level; |
| 8538 | } |
| 8539 | |
| 8540 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8541 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 8542 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8543 | ret = btrfs_update_root(trans, tree_root, |
| 8544 | &root->root_key, |
| 8545 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8546 | if (ret) { |
| 8547 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8548 | err = ret; |
| 8549 | goto out_end_trans; |
| 8550 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8551 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8552 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8553 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8554 | pr_debug("BTRFS: drop snapshot early exit\n"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8555 | err = -EAGAIN; |
| 8556 | goto out_free; |
| 8557 | } |
| 8558 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8559 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8560 | if (IS_ERR(trans)) { |
| 8561 | err = PTR_ERR(trans); |
| 8562 | goto out_free; |
| 8563 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8564 | if (block_rsv) |
| 8565 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 8566 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8567 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8568 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8569 | if (err) |
| 8570 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8571 | |
| 8572 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8573 | if (ret) { |
| 8574 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8575 | goto out_end_trans; |
| 8576 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8577 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8578 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8579 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 8580 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8581 | if (ret < 0) { |
| 8582 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8583 | err = ret; |
| 8584 | goto out_end_trans; |
| 8585 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 8586 | /* if we fail to delete the orphan item this time |
| 8587 | * around, it'll get picked up the next time. |
| 8588 | * |
| 8589 | * The most common failure here is just -ENOENT. |
| 8590 | */ |
| 8591 | btrfs_del_orphan_item(trans, tree_root, |
| 8592 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8593 | } |
| 8594 | } |
| 8595 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 8596 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8597 | btrfs_drop_and_free_fs_root(tree_root->fs_info, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8598 | } else { |
| 8599 | free_extent_buffer(root->node); |
| 8600 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 8601 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8602 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8603 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8604 | out_end_trans: |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8605 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8606 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8607 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8608 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8609 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8610 | /* |
| 8611 | * So if we need to stop dropping the snapshot for whatever reason we |
| 8612 | * need to make sure to add it back to the dead root list so that we |
| 8613 | * keep trying to do the work later. This also cleans up roots if we |
| 8614 | * don't have it in the radix (like when we recover after a power fail |
| 8615 | * or unmount) so we don't leak memory. |
| 8616 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 8617 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8618 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 8619 | if (err && err != -EAGAIN) |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8620 | btrfs_std_error(root->fs_info, err); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8621 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8622 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8623 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8624 | /* |
| 8625 | * drop subtree rooted at tree block 'node'. |
| 8626 | * |
| 8627 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8628 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8629 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8630 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 8631 | struct btrfs_root *root, |
| 8632 | struct extent_buffer *node, |
| 8633 | struct extent_buffer *parent) |
| 8634 | { |
| 8635 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8636 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8637 | int level; |
| 8638 | int parent_level; |
| 8639 | int ret = 0; |
| 8640 | int wret; |
| 8641 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8642 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 8643 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8644 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8645 | if (!path) |
| 8646 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8647 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8648 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8649 | if (!wc) { |
| 8650 | btrfs_free_path(path); |
| 8651 | return -ENOMEM; |
| 8652 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8653 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8654 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8655 | parent_level = btrfs_header_level(parent); |
| 8656 | extent_buffer_get(parent); |
| 8657 | path->nodes[parent_level] = parent; |
| 8658 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 8659 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8660 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8661 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8662 | path->nodes[level] = node; |
| 8663 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8664 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8665 | |
| 8666 | wc->refs[parent_level] = 1; |
| 8667 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8668 | wc->level = level; |
| 8669 | wc->shared_level = -1; |
| 8670 | wc->stage = DROP_REFERENCE; |
| 8671 | wc->update_ref = 0; |
| 8672 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8673 | wc->for_reloc = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8674 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8675 | |
| 8676 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8677 | wret = walk_down_tree(trans, root, path, wc); |
| 8678 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8679 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8680 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8681 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8682 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8683 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8684 | if (wret < 0) |
| 8685 | ret = wret; |
| 8686 | if (wret != 0) |
| 8687 | break; |
| 8688 | } |
| 8689 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8690 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8691 | btrfs_free_path(path); |
| 8692 | return ret; |
| 8693 | } |
| 8694 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8695 | static u64 update_block_group_flags(struct btrfs_root *root, u64 flags) |
| 8696 | { |
| 8697 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8698 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8699 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8700 | /* |
| 8701 | * if restripe for this chunk_type is on pick target profile and |
| 8702 | * return, otherwise do the usual balance |
| 8703 | */ |
| 8704 | stripped = get_restripe_target(root->fs_info, flags); |
| 8705 | if (stripped) |
| 8706 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 8707 | |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 8708 | num_devices = root->fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 8709 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8710 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8711 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8712 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 8713 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8714 | if (num_devices == 1) { |
| 8715 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8716 | stripped = flags & ~stripped; |
| 8717 | |
| 8718 | /* turn raid0 into single device chunks */ |
| 8719 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 8720 | return stripped; |
| 8721 | |
| 8722 | /* turn mirroring into duplication */ |
| 8723 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8724 | BTRFS_BLOCK_GROUP_RAID10)) |
| 8725 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8726 | } else { |
| 8727 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8728 | if (flags & stripped) |
| 8729 | return flags; |
| 8730 | |
| 8731 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8732 | stripped = flags & ~stripped; |
| 8733 | |
| 8734 | /* switch duplicated blocks with raid1 */ |
| 8735 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 8736 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 8737 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8738 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8739 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8740 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8741 | return flags; |
| 8742 | } |
| 8743 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8744 | 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] | 8745 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8746 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8747 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8748 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8749 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8750 | |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8751 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8752 | /* |
| 8753 | * We need some metadata space and system metadata space for |
| 8754 | * allocating chunks in some corner cases until we force to set |
| 8755 | * it to be readonly. |
| 8756 | */ |
| 8757 | if ((sinfo->flags & |
| 8758 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 8759 | !force) |
| 8760 | min_allocable_bytes = 1 * 1024 * 1024; |
| 8761 | else |
| 8762 | min_allocable_bytes = 0; |
| 8763 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8764 | spin_lock(&sinfo->lock); |
| 8765 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8766 | |
| 8767 | if (cache->ro) { |
| 8768 | ret = 0; |
| 8769 | goto out; |
| 8770 | } |
| 8771 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8772 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8773 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8774 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8775 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 8776 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 8777 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8778 | sinfo->bytes_readonly += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8779 | cache->ro = 1; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8780 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8781 | ret = 0; |
| 8782 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8783 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8784 | spin_unlock(&cache->lock); |
| 8785 | spin_unlock(&sinfo->lock); |
| 8786 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8787 | } |
| 8788 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8789 | int btrfs_set_block_group_ro(struct btrfs_root *root, |
| 8790 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8791 | |
| 8792 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8793 | struct btrfs_trans_handle *trans; |
| 8794 | u64 alloc_flags; |
| 8795 | int ret; |
| 8796 | |
| 8797 | BUG_ON(cache->ro); |
| 8798 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8799 | again: |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 8800 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8801 | if (IS_ERR(trans)) |
| 8802 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8803 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8804 | /* |
| 8805 | * we're not allowed to set block groups readonly after the dirty |
| 8806 | * block groups cache has started writing. If it already started, |
| 8807 | * back off and let this transaction commit |
| 8808 | */ |
| 8809 | mutex_lock(&root->fs_info->ro_block_group_mutex); |
| 8810 | if (trans->transaction->dirty_bg_run) { |
| 8811 | u64 transid = trans->transid; |
| 8812 | |
| 8813 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
| 8814 | btrfs_end_transaction(trans, root); |
| 8815 | |
| 8816 | ret = btrfs_wait_for_commit(root, transid); |
| 8817 | if (ret) |
| 8818 | return ret; |
| 8819 | goto again; |
| 8820 | } |
| 8821 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 8822 | /* |
| 8823 | * if we are changing raid levels, try to allocate a corresponding |
| 8824 | * block group with the new raid level. |
| 8825 | */ |
| 8826 | alloc_flags = update_block_group_flags(root, cache->flags); |
| 8827 | if (alloc_flags != cache->flags) { |
| 8828 | ret = do_chunk_alloc(trans, root, alloc_flags, |
| 8829 | CHUNK_ALLOC_FORCE); |
| 8830 | /* |
| 8831 | * ENOSPC is allowed here, we may have enough space |
| 8832 | * already allocated at the new raid level to |
| 8833 | * carry on |
| 8834 | */ |
| 8835 | if (ret == -ENOSPC) |
| 8836 | ret = 0; |
| 8837 | if (ret < 0) |
| 8838 | goto out; |
| 8839 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8840 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8841 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8842 | if (!ret) |
| 8843 | goto out; |
| 8844 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8845 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8846 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8847 | if (ret < 0) |
| 8848 | goto out; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8849 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8850 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 8851 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 8852 | alloc_flags = update_block_group_flags(root, cache->flags); |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 8853 | lock_chunks(root->fs_info->chunk_root); |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 8854 | check_system_chunk(trans, root, alloc_flags); |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 8855 | unlock_chunks(root->fs_info->chunk_root); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 8856 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 8857 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 8858 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8859 | btrfs_end_transaction(trans, root); |
| 8860 | return ret; |
| 8861 | } |
| 8862 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8863 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 8864 | struct btrfs_root *root, u64 type) |
| 8865 | { |
| 8866 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8867 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8868 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8869 | } |
| 8870 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8871 | /* |
| 8872 | * 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] | 8873 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8874 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8875 | 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] | 8876 | { |
| 8877 | struct btrfs_block_group_cache *block_group; |
| 8878 | u64 free_bytes = 0; |
| 8879 | int factor; |
| 8880 | |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8881 | /* It's df, we don't care if it's racey */ |
| 8882 | if (list_empty(&sinfo->ro_bgs)) |
| 8883 | return 0; |
| 8884 | |
| 8885 | spin_lock(&sinfo->lock); |
| 8886 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8887 | spin_lock(&block_group->lock); |
| 8888 | |
| 8889 | if (!block_group->ro) { |
| 8890 | spin_unlock(&block_group->lock); |
| 8891 | continue; |
| 8892 | } |
| 8893 | |
| 8894 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8895 | BTRFS_BLOCK_GROUP_RAID10 | |
| 8896 | BTRFS_BLOCK_GROUP_DUP)) |
| 8897 | factor = 2; |
| 8898 | else |
| 8899 | factor = 1; |
| 8900 | |
| 8901 | free_bytes += (block_group->key.offset - |
| 8902 | btrfs_block_group_used(&block_group->item)) * |
| 8903 | factor; |
| 8904 | |
| 8905 | spin_unlock(&block_group->lock); |
| 8906 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8907 | spin_unlock(&sinfo->lock); |
| 8908 | |
| 8909 | return free_bytes; |
| 8910 | } |
| 8911 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 8912 | void btrfs_set_block_group_rw(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8913 | struct btrfs_block_group_cache *cache) |
| 8914 | { |
| 8915 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8916 | u64 num_bytes; |
| 8917 | |
| 8918 | BUG_ON(!cache->ro); |
| 8919 | |
| 8920 | spin_lock(&sinfo->lock); |
| 8921 | spin_lock(&cache->lock); |
| 8922 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8923 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
| 8924 | sinfo->bytes_readonly -= num_bytes; |
| 8925 | cache->ro = 0; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8926 | list_del_init(&cache->ro_list); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8927 | spin_unlock(&cache->lock); |
| 8928 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8929 | } |
| 8930 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8931 | /* |
| 8932 | * checks to see if its even possible to relocate this block group. |
| 8933 | * |
| 8934 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 8935 | * ok to go ahead and try. |
| 8936 | */ |
| 8937 | int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8938 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8939 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8940 | struct btrfs_space_info *space_info; |
| 8941 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 8942 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8943 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8944 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8945 | u64 dev_min = 1; |
| 8946 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8947 | u64 target; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8948 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8949 | int full = 0; |
| 8950 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8951 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8952 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8953 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8954 | /* odd, couldn't find the block group, leave it alone */ |
| 8955 | if (!block_group) |
| 8956 | return -1; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8957 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8958 | min_free = btrfs_block_group_used(&block_group->item); |
| 8959 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8960 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8961 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8962 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8963 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8964 | space_info = block_group->space_info; |
| 8965 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8966 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8967 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8968 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8969 | /* |
| 8970 | * 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] | 8971 | * relocate it unless we're able to allocate a new chunk below. |
| 8972 | * |
| 8973 | * Otherwise, we need to make sure we have room in the space to handle |
| 8974 | * 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] | 8975 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 8976 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8977 | (space_info->bytes_used + space_info->bytes_reserved + |
| 8978 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 8979 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8980 | spin_unlock(&space_info->lock); |
| 8981 | goto out; |
| 8982 | } |
| 8983 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8984 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8985 | /* |
| 8986 | * ok we don't have enough space, but maybe we have free space on our |
| 8987 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8988 | * alloc devices and guess if we have enough space. if this block |
| 8989 | * group is going to be restriped, run checks against the target |
| 8990 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8991 | */ |
| 8992 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 8993 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8994 | /* |
| 8995 | * index: |
| 8996 | * 0: raid10 |
| 8997 | * 1: raid1 |
| 8998 | * 2: dup |
| 8999 | * 3: raid0 |
| 9000 | * 4: single |
| 9001 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9002 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 9003 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 9004 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9005 | } else { |
| 9006 | /* |
| 9007 | * this is just a balance, so if we were marked as full |
| 9008 | * we know there is no space for a new chunk |
| 9009 | */ |
| 9010 | if (full) |
| 9011 | goto out; |
| 9012 | |
| 9013 | index = get_block_group_index(block_group); |
| 9014 | } |
| 9015 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9016 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9017 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9018 | /* Divide by 2 */ |
| 9019 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9020 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9021 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9022 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9023 | /* Multiply by 2 */ |
| 9024 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9025 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9026 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9027 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9028 | } |
| 9029 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9030 | /* We need to do this so that we can look at pending chunks */ |
| 9031 | trans = btrfs_join_transaction(root); |
| 9032 | if (IS_ERR(trans)) { |
| 9033 | ret = PTR_ERR(trans); |
| 9034 | goto out; |
| 9035 | } |
| 9036 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9037 | mutex_lock(&root->fs_info->chunk_mutex); |
| 9038 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9039 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9040 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9041 | /* |
| 9042 | * check to make sure we can actually find a chunk with enough |
| 9043 | * space to fit our block group in. |
| 9044 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9045 | if (device->total_bytes > device->bytes_used + min_free && |
| 9046 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9047 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9048 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9049 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9050 | dev_nr++; |
| 9051 | |
| 9052 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9053 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9054 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9055 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9056 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9057 | } |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9058 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9059 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9060 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9061 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9062 | return ret; |
| 9063 | } |
| 9064 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 9065 | static int find_first_block_group(struct btrfs_root *root, |
| 9066 | struct btrfs_path *path, struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9067 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9068 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9069 | struct btrfs_key found_key; |
| 9070 | struct extent_buffer *leaf; |
| 9071 | int slot; |
| 9072 | |
| 9073 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9074 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9075 | goto out; |
| 9076 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9077 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9078 | slot = path->slots[0]; |
| 9079 | leaf = path->nodes[0]; |
| 9080 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9081 | ret = btrfs_next_leaf(root, path); |
| 9082 | if (ret == 0) |
| 9083 | continue; |
| 9084 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9085 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9086 | break; |
| 9087 | } |
| 9088 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9089 | |
| 9090 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9091 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
| 9092 | ret = 0; |
| 9093 | goto out; |
| 9094 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9095 | path->slots[0]++; |
| 9096 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9097 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9098 | return ret; |
| 9099 | } |
| 9100 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9101 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 9102 | { |
| 9103 | struct btrfs_block_group_cache *block_group; |
| 9104 | u64 last = 0; |
| 9105 | |
| 9106 | while (1) { |
| 9107 | struct inode *inode; |
| 9108 | |
| 9109 | block_group = btrfs_lookup_first_block_group(info, last); |
| 9110 | while (block_group) { |
| 9111 | spin_lock(&block_group->lock); |
| 9112 | if (block_group->iref) |
| 9113 | break; |
| 9114 | spin_unlock(&block_group->lock); |
| 9115 | block_group = next_block_group(info->tree_root, |
| 9116 | block_group); |
| 9117 | } |
| 9118 | if (!block_group) { |
| 9119 | if (last == 0) |
| 9120 | break; |
| 9121 | last = 0; |
| 9122 | continue; |
| 9123 | } |
| 9124 | |
| 9125 | inode = block_group->inode; |
| 9126 | block_group->iref = 0; |
| 9127 | block_group->inode = NULL; |
| 9128 | spin_unlock(&block_group->lock); |
| 9129 | iput(inode); |
| 9130 | last = block_group->key.objectid + block_group->key.offset; |
| 9131 | btrfs_put_block_group(block_group); |
| 9132 | } |
| 9133 | } |
| 9134 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9135 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 9136 | { |
| 9137 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9138 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9139 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9140 | struct rb_node *n; |
| 9141 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9142 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9143 | while (!list_empty(&info->caching_block_groups)) { |
| 9144 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 9145 | struct btrfs_caching_control, list); |
| 9146 | list_del(&caching_ctl->list); |
| 9147 | put_caching_control(caching_ctl); |
| 9148 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9149 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9150 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9151 | spin_lock(&info->unused_bgs_lock); |
| 9152 | while (!list_empty(&info->unused_bgs)) { |
| 9153 | block_group = list_first_entry(&info->unused_bgs, |
| 9154 | struct btrfs_block_group_cache, |
| 9155 | bg_list); |
| 9156 | list_del_init(&block_group->bg_list); |
| 9157 | btrfs_put_block_group(block_group); |
| 9158 | } |
| 9159 | spin_unlock(&info->unused_bgs_lock); |
| 9160 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9161 | spin_lock(&info->block_group_cache_lock); |
| 9162 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 9163 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 9164 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9165 | rb_erase(&block_group->cache_node, |
| 9166 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9167 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9168 | spin_unlock(&info->block_group_cache_lock); |
| 9169 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9170 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9171 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9172 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 9173 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9174 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9175 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9176 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9177 | /* |
| 9178 | * We haven't cached this block group, which means we could |
| 9179 | * possibly have excluded extents on this block group. |
| 9180 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 9181 | if (block_group->cached == BTRFS_CACHE_NO || |
| 9182 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9183 | free_excluded_extents(info->extent_root, block_group); |
| 9184 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9185 | btrfs_remove_free_space_cache(block_group); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 9186 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9187 | |
| 9188 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9189 | } |
| 9190 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9191 | |
| 9192 | /* now that all the block groups are freed, go through and |
| 9193 | * free all the space_info structs. This is only called during |
| 9194 | * the final stages of unmount, and so we know nobody is |
| 9195 | * using them. We call synchronize_rcu() once before we start, |
| 9196 | * just to be on the safe side. |
| 9197 | */ |
| 9198 | synchronize_rcu(); |
| 9199 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 9200 | release_global_block_rsv(info); |
| 9201 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 9202 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9203 | int i; |
| 9204 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9205 | space_info = list_entry(info->space_info.next, |
| 9206 | struct btrfs_space_info, |
| 9207 | list); |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9208 | if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) { |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 9209 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9210 | space_info->bytes_reserved > 0 || |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 9211 | space_info->bytes_may_use > 0)) { |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9212 | dump_space_info(space_info, 0, 0); |
| 9213 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9214 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9215 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9216 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 9217 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9218 | kobj = space_info->block_group_kobjs[i]; |
| 9219 | space_info->block_group_kobjs[i] = NULL; |
| 9220 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9221 | kobject_del(kobj); |
| 9222 | kobject_put(kobj); |
| 9223 | } |
| 9224 | } |
| 9225 | kobject_del(&space_info->kobj); |
| 9226 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9227 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9228 | return 0; |
| 9229 | } |
| 9230 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9231 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 9232 | struct btrfs_block_group_cache *cache) |
| 9233 | { |
| 9234 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9235 | bool first = false; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9236 | |
| 9237 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9238 | if (list_empty(&space_info->block_groups[index])) |
| 9239 | first = true; |
| 9240 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 9241 | up_write(&space_info->groups_sem); |
| 9242 | |
| 9243 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9244 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9245 | int ret; |
| 9246 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9247 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 9248 | if (!rkobj) |
| 9249 | goto out_err; |
| 9250 | rkobj->raid_type = index; |
| 9251 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 9252 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 9253 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9254 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9255 | kobject_put(&rkobj->kobj); |
| 9256 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9257 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9258 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9259 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9260 | |
| 9261 | return; |
| 9262 | out_err: |
| 9263 | pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n"); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9264 | } |
| 9265 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9266 | static struct btrfs_block_group_cache * |
| 9267 | btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size) |
| 9268 | { |
| 9269 | struct btrfs_block_group_cache *cache; |
| 9270 | |
| 9271 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 9272 | if (!cache) |
| 9273 | return NULL; |
| 9274 | |
| 9275 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 9276 | GFP_NOFS); |
| 9277 | if (!cache->free_space_ctl) { |
| 9278 | kfree(cache); |
| 9279 | return NULL; |
| 9280 | } |
| 9281 | |
| 9282 | cache->key.objectid = start; |
| 9283 | cache->key.offset = size; |
| 9284 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 9285 | |
| 9286 | cache->sectorsize = root->sectorsize; |
| 9287 | cache->fs_info = root->fs_info; |
| 9288 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 9289 | &root->fs_info->mapping_tree, |
| 9290 | start); |
| 9291 | atomic_set(&cache->count, 1); |
| 9292 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 9293 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9294 | INIT_LIST_HEAD(&cache->list); |
| 9295 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9296 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9297 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9298 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 9299 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9300 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9301 | atomic_set(&cache->trimming, 0); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9302 | |
| 9303 | return cache; |
| 9304 | } |
| 9305 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9306 | int btrfs_read_block_groups(struct btrfs_root *root) |
| 9307 | { |
| 9308 | struct btrfs_path *path; |
| 9309 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9310 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 9311 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9312 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9313 | struct btrfs_key key; |
| 9314 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9315 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9316 | int need_clear = 0; |
| 9317 | u64 cache_gen; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9318 | |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 9319 | root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9320 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9321 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9322 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9323 | path = btrfs_alloc_path(); |
| 9324 | if (!path) |
| 9325 | return -ENOMEM; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 9326 | path->reada = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9327 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9328 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 9329 | if (btrfs_test_opt(root, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9330 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9331 | need_clear = 1; |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9332 | if (btrfs_test_opt(root, CLEAR_CACHE)) |
| 9333 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9334 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9335 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9336 | ret = find_first_block_group(root, path, &key); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9337 | if (ret > 0) |
| 9338 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9339 | if (ret != 0) |
| 9340 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9341 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9342 | leaf = path->nodes[0]; |
| 9343 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9344 | |
| 9345 | cache = btrfs_create_block_group_cache(root, found_key.objectid, |
| 9346 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9347 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9348 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9349 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9350 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9351 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9352 | if (need_clear) { |
| 9353 | /* |
| 9354 | * When we mount with old space cache, we need to |
| 9355 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 9356 | * |
| 9357 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 9358 | * truncate the old free space cache inode and |
| 9359 | * setup a new one. |
| 9360 | * b) Setting 'dirty flag' makes sure that we flush |
| 9361 | * the new space cache info onto disk. |
| 9362 | */ |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9363 | if (btrfs_test_opt(root, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9364 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9365 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9366 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9367 | read_extent_buffer(leaf, &cache->item, |
| 9368 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 9369 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9370 | cache->flags = btrfs_block_group_flags(&cache->item); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9371 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9372 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9373 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9374 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9375 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9376 | * We need to exclude the super stripes now so that the space |
| 9377 | * info has super bytes accounted for, otherwise we'll think |
| 9378 | * we have more space than we actually do. |
| 9379 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9380 | ret = exclude_super_stripes(root, cache); |
| 9381 | if (ret) { |
| 9382 | /* |
| 9383 | * We may have excluded something, so call this just in |
| 9384 | * case. |
| 9385 | */ |
| 9386 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9387 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9388 | goto error; |
| 9389 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9390 | |
| 9391 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9392 | * check for two cases, either we are full, and therefore |
| 9393 | * don't need to bother with the caching work since we won't |
| 9394 | * find any space, or we are empty, and we can just add all |
| 9395 | * the space in and be done with it. This saves us _alot_ of |
| 9396 | * time, particularly in the full case. |
| 9397 | */ |
| 9398 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9399 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9400 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9401 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9402 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9403 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9404 | cache->cached = BTRFS_CACHE_FINISHED; |
| 9405 | add_new_free_space(cache, root->fs_info, |
| 9406 | found_key.objectid, |
| 9407 | found_key.objectid + |
| 9408 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9409 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9410 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9411 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9412 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9413 | if (ret) { |
| 9414 | btrfs_remove_free_space_cache(cache); |
| 9415 | btrfs_put_block_group(cache); |
| 9416 | goto error; |
| 9417 | } |
| 9418 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9419 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 9420 | btrfs_block_group_used(&cache->item), |
| 9421 | &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9422 | if (ret) { |
| 9423 | btrfs_remove_free_space_cache(cache); |
| 9424 | spin_lock(&info->block_group_cache_lock); |
| 9425 | rb_erase(&cache->cache_node, |
| 9426 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9427 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9428 | spin_unlock(&info->block_group_cache_lock); |
| 9429 | btrfs_put_block_group(cache); |
| 9430 | goto error; |
| 9431 | } |
| 9432 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9433 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9434 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9435 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9436 | spin_unlock(&cache->space_info->lock); |
| 9437 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9438 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9439 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 9440 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9441 | if (btrfs_chunk_readonly(root, cache->key.objectid)) { |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9442 | set_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9443 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
| 9444 | spin_lock(&info->unused_bgs_lock); |
| 9445 | /* Should always be true but just in case. */ |
| 9446 | if (list_empty(&cache->bg_list)) { |
| 9447 | btrfs_get_block_group(cache); |
| 9448 | list_add_tail(&cache->bg_list, |
| 9449 | &info->unused_bgs); |
| 9450 | } |
| 9451 | spin_unlock(&info->unused_bgs_lock); |
| 9452 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9453 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9454 | |
| 9455 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 9456 | if (!(get_alloc_profile(root, space_info->flags) & |
| 9457 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 9458 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9459 | BTRFS_BLOCK_GROUP_RAID5 | |
| 9460 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9461 | BTRFS_BLOCK_GROUP_DUP))) |
| 9462 | continue; |
| 9463 | /* |
| 9464 | * avoid allocating from un-mirrored block group if there are |
| 9465 | * mirrored block groups. |
| 9466 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9467 | list_for_each_entry(cache, |
| 9468 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 9469 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9470 | set_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9471 | list_for_each_entry(cache, |
| 9472 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 9473 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9474 | set_block_group_ro(cache, 1); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9475 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9476 | |
| 9477 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9478 | ret = 0; |
| 9479 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9480 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9481 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9482 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9483 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9484 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
| 9485 | struct btrfs_root *root) |
| 9486 | { |
| 9487 | struct btrfs_block_group_cache *block_group, *tmp; |
| 9488 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 9489 | struct btrfs_block_group_item item; |
| 9490 | struct btrfs_key key; |
| 9491 | int ret = 0; |
| 9492 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9493 | 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] | 9494 | if (ret) |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 9495 | goto next; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9496 | |
| 9497 | spin_lock(&block_group->lock); |
| 9498 | memcpy(&item, &block_group->item, sizeof(item)); |
| 9499 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9500 | spin_unlock(&block_group->lock); |
| 9501 | |
| 9502 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 9503 | sizeof(item)); |
| 9504 | if (ret) |
| 9505 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9506 | ret = btrfs_finish_chunk_alloc(trans, extent_root, |
| 9507 | key.objectid, key.offset); |
| 9508 | if (ret) |
| 9509 | btrfs_abort_transaction(trans, extent_root, ret); |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 9510 | next: |
| 9511 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9512 | } |
| 9513 | } |
| 9514 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9515 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
| 9516 | struct btrfs_root *root, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 9517 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9518 | u64 size) |
| 9519 | { |
| 9520 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9521 | struct btrfs_root *extent_root; |
| 9522 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9523 | |
| 9524 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9525 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 9526 | btrfs_set_log_full_commit(root->fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 9527 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9528 | cache = btrfs_create_block_group_cache(root, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 9529 | if (!cache) |
| 9530 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9531 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9532 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9533 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9534 | btrfs_set_block_group_flags(&cache->item, type); |
| 9535 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9536 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9537 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9538 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9539 | ret = exclude_super_stripes(root, cache); |
| 9540 | if (ret) { |
| 9541 | /* |
| 9542 | * We may have excluded something, so call this just in |
| 9543 | * case. |
| 9544 | */ |
| 9545 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9546 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9547 | return ret; |
| 9548 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9549 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9550 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 9551 | chunk_offset + size); |
| 9552 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9553 | free_excluded_extents(root, cache); |
| 9554 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 9555 | /* |
| 9556 | * Call to ensure the corresponding space_info object is created and |
| 9557 | * assigned to our block group, but don't update its counters just yet. |
| 9558 | * We want our bg to be added to the rbtree with its ->space_info set. |
| 9559 | */ |
| 9560 | ret = update_space_info(root->fs_info, cache->flags, 0, 0, |
| 9561 | &cache->space_info); |
| 9562 | if (ret) { |
| 9563 | btrfs_remove_free_space_cache(cache); |
| 9564 | btrfs_put_block_group(cache); |
| 9565 | return ret; |
| 9566 | } |
| 9567 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9568 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9569 | if (ret) { |
| 9570 | btrfs_remove_free_space_cache(cache); |
| 9571 | btrfs_put_block_group(cache); |
| 9572 | return ret; |
| 9573 | } |
| 9574 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 9575 | /* |
| 9576 | * Now that our block group has its ->space_info set and is inserted in |
| 9577 | * the rbtree, update the space info's counters. |
| 9578 | */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9579 | ret = update_space_info(root->fs_info, cache->flags, size, bytes_used, |
| 9580 | &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9581 | if (ret) { |
| 9582 | btrfs_remove_free_space_cache(cache); |
| 9583 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 9584 | rb_erase(&cache->cache_node, |
| 9585 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9586 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9587 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 9588 | btrfs_put_block_group(cache); |
| 9589 | return ret; |
| 9590 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 9591 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9592 | |
| 9593 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9594 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9595 | spin_unlock(&cache->space_info->lock); |
| 9596 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9597 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9598 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9599 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9600 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 9601 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9602 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9603 | return 0; |
| 9604 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9605 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9606 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 9607 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9608 | u64 extra_flags = chunk_to_extended(flags) & |
| 9609 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9610 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9611 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9612 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 9613 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 9614 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 9615 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 9616 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 9617 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9618 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9619 | } |
| 9620 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9621 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9622 | struct btrfs_root *root, u64 group_start, |
| 9623 | struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9624 | { |
| 9625 | struct btrfs_path *path; |
| 9626 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9627 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9628 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9629 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9630 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9631 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9632 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9633 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9634 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 9635 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9636 | bool remove_em; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9637 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9638 | root = root->fs_info->extent_root; |
| 9639 | |
| 9640 | block_group = btrfs_lookup_block_group(root->fs_info, group_start); |
| 9641 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9642 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9643 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 9644 | /* |
| 9645 | * Free the reserved super bytes from this block group before |
| 9646 | * remove it. |
| 9647 | */ |
| 9648 | free_excluded_extents(root, block_group); |
| 9649 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9650 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9651 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9652 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 9653 | BTRFS_BLOCK_GROUP_RAID1 | |
| 9654 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9655 | factor = 2; |
| 9656 | else |
| 9657 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9658 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9659 | /* make sure this block group isn't part of an allocation cluster */ |
| 9660 | cluster = &root->fs_info->data_alloc_cluster; |
| 9661 | spin_lock(&cluster->refill_lock); |
| 9662 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9663 | spin_unlock(&cluster->refill_lock); |
| 9664 | |
| 9665 | /* |
| 9666 | * make sure this block group isn't part of a metadata |
| 9667 | * allocation cluster |
| 9668 | */ |
| 9669 | cluster = &root->fs_info->meta_alloc_cluster; |
| 9670 | spin_lock(&cluster->refill_lock); |
| 9671 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9672 | spin_unlock(&cluster->refill_lock); |
| 9673 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9674 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 9675 | if (!path) { |
| 9676 | ret = -ENOMEM; |
| 9677 | goto out; |
| 9678 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9679 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9680 | /* |
| 9681 | * get the inode first so any iput calls done for the io_list |
| 9682 | * aren't the final iput (no unlinks allowed now) |
| 9683 | */ |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 9684 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9685 | |
| 9686 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 9687 | /* |
| 9688 | * make sure our free spache cache IO is done before remove the |
| 9689 | * free space inode |
| 9690 | */ |
| 9691 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 9692 | if (!list_empty(&block_group->io_list)) { |
| 9693 | list_del_init(&block_group->io_list); |
| 9694 | |
| 9695 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 9696 | |
| 9697 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 9698 | btrfs_wait_cache_io(root, trans, block_group, |
| 9699 | &block_group->io_ctl, path, |
| 9700 | block_group->key.objectid); |
| 9701 | btrfs_put_block_group(block_group); |
| 9702 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 9703 | } |
| 9704 | |
| 9705 | if (!list_empty(&block_group->dirty_list)) { |
| 9706 | list_del_init(&block_group->dirty_list); |
| 9707 | btrfs_put_block_group(block_group); |
| 9708 | } |
| 9709 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 9710 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 9711 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9712 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 9713 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9714 | if (ret) { |
| 9715 | btrfs_add_delayed_iput(inode); |
| 9716 | goto out; |
| 9717 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9718 | clear_nlink(inode); |
| 9719 | /* One for the block groups ref */ |
| 9720 | spin_lock(&block_group->lock); |
| 9721 | if (block_group->iref) { |
| 9722 | block_group->iref = 0; |
| 9723 | block_group->inode = NULL; |
| 9724 | spin_unlock(&block_group->lock); |
| 9725 | iput(inode); |
| 9726 | } else { |
| 9727 | spin_unlock(&block_group->lock); |
| 9728 | } |
| 9729 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 9730 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9731 | } |
| 9732 | |
| 9733 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 9734 | key.offset = block_group->key.objectid; |
| 9735 | key.type = 0; |
| 9736 | |
| 9737 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 9738 | if (ret < 0) |
| 9739 | goto out; |
| 9740 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9741 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9742 | if (ret == 0) { |
| 9743 | ret = btrfs_del_item(trans, tree_root, path); |
| 9744 | if (ret) |
| 9745 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9746 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9747 | } |
| 9748 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9749 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9750 | rb_erase(&block_group->cache_node, |
| 9751 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 9752 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 9753 | |
| 9754 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 9755 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9756 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9757 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9758 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9759 | /* |
| 9760 | * we must use list_del_init so people can check to see if they |
| 9761 | * are still on the list after taking the semaphore |
| 9762 | */ |
| 9763 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9764 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9765 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 9766 | block_group->space_info->block_group_kobjs[index] = NULL; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9767 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9768 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9769 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9770 | if (kobj) { |
| 9771 | kobject_del(kobj); |
| 9772 | kobject_put(kobj); |
| 9773 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9774 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 9775 | if (block_group->has_caching_ctl) |
| 9776 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9777 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9778 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 9779 | if (block_group->has_caching_ctl) { |
| 9780 | down_write(&root->fs_info->commit_root_sem); |
| 9781 | if (!caching_ctl) { |
| 9782 | struct btrfs_caching_control *ctl; |
| 9783 | |
| 9784 | list_for_each_entry(ctl, |
| 9785 | &root->fs_info->caching_block_groups, list) |
| 9786 | if (ctl->block_group == block_group) { |
| 9787 | caching_ctl = ctl; |
| 9788 | atomic_inc(&caching_ctl->count); |
| 9789 | break; |
| 9790 | } |
| 9791 | } |
| 9792 | if (caching_ctl) |
| 9793 | list_del_init(&caching_ctl->list); |
| 9794 | up_write(&root->fs_info->commit_root_sem); |
| 9795 | if (caching_ctl) { |
| 9796 | /* Once for the caching bgs list and once for us. */ |
| 9797 | put_caching_control(caching_ctl); |
| 9798 | put_caching_control(caching_ctl); |
| 9799 | } |
| 9800 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9801 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9802 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 9803 | if (!list_empty(&block_group->dirty_list)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9804 | WARN_ON(1); |
| 9805 | } |
| 9806 | if (!list_empty(&block_group->io_list)) { |
| 9807 | WARN_ON(1); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9808 | } |
| 9809 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9810 | btrfs_remove_free_space_cache(block_group); |
| 9811 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9812 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 9813 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 9814 | |
| 9815 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 9816 | WARN_ON(block_group->space_info->total_bytes |
| 9817 | < block_group->key.offset); |
| 9818 | WARN_ON(block_group->space_info->bytes_readonly |
| 9819 | < block_group->key.offset); |
| 9820 | WARN_ON(block_group->space_info->disk_total |
| 9821 | < block_group->key.offset * factor); |
| 9822 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9823 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 9824 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9825 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 9826 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9827 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 9828 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9829 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9830 | |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9831 | lock_chunks(root); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 9832 | if (!list_empty(&em->list)) { |
| 9833 | /* We're in the transaction->pending_chunks list. */ |
| 9834 | free_extent_map(em); |
| 9835 | } |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9836 | spin_lock(&block_group->lock); |
| 9837 | block_group->removed = 1; |
| 9838 | /* |
| 9839 | * At this point trimming can't start on this block group, because we |
| 9840 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 9841 | * so no one can't find it anymore and even if someone already got this |
| 9842 | * block group before we removed it from the rbtree, they have already |
| 9843 | * incremented block_group->trimming - if they didn't, they won't find |
| 9844 | * any free space entries because we already removed them all when we |
| 9845 | * called btrfs_remove_free_space_cache(). |
| 9846 | * |
| 9847 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 9848 | * to prevent the same logical address range and physical device space |
| 9849 | * ranges from being reused for a new block group. This is because our |
| 9850 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 9851 | * completely transactionless, so while it is trimming a range the |
| 9852 | * currently running transaction might finish and a new one start, |
| 9853 | * allowing for new block groups to be created that can reuse the same |
| 9854 | * physical device locations unless we take this special care. |
| 9855 | */ |
| 9856 | remove_em = (atomic_read(&block_group->trimming) == 0); |
| 9857 | /* |
| 9858 | * Make sure a trimmer task always sees the em in the pinned_chunks list |
| 9859 | * if it sees block_group->removed == 1 (needs to lock block_group->lock |
| 9860 | * before checking block_group->removed). |
| 9861 | */ |
| 9862 | if (!remove_em) { |
| 9863 | /* |
| 9864 | * Our em might be in trans->transaction->pending_chunks which |
| 9865 | * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks), |
| 9866 | * and so is the fs_info->pinned_chunks list. |
| 9867 | * |
| 9868 | * So at this point we must be holding the chunk_mutex to avoid |
| 9869 | * any races with chunk allocation (more specifically at |
| 9870 | * volumes.c:contains_pending_extent()), to ensure it always |
| 9871 | * sees the em, either in the pending_chunks list or in the |
| 9872 | * pinned_chunks list. |
| 9873 | */ |
| 9874 | list_move_tail(&em->list, &root->fs_info->pinned_chunks); |
| 9875 | } |
| 9876 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9877 | |
| 9878 | if (remove_em) { |
| 9879 | struct extent_map_tree *em_tree; |
| 9880 | |
| 9881 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9882 | write_lock(&em_tree->lock); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 9883 | /* |
| 9884 | * The em might be in the pending_chunks list, so make sure the |
| 9885 | * chunk mutex is locked, since remove_extent_mapping() will |
| 9886 | * delete us from that list. |
| 9887 | */ |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9888 | remove_extent_mapping(em_tree, em); |
| 9889 | write_unlock(&em_tree->lock); |
| 9890 | /* once for the tree */ |
| 9891 | free_extent_map(em); |
| 9892 | } |
| 9893 | |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 9894 | unlock_chunks(root); |
| 9895 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 9896 | btrfs_put_block_group(block_group); |
| 9897 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9898 | |
| 9899 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 9900 | if (ret > 0) |
| 9901 | ret = -EIO; |
| 9902 | if (ret < 0) |
| 9903 | goto out; |
| 9904 | |
| 9905 | ret = btrfs_del_item(trans, root, path); |
| 9906 | out: |
| 9907 | btrfs_free_path(path); |
| 9908 | return ret; |
| 9909 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9910 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9911 | /* |
| 9912 | * Process the unused_bgs list and remove any that don't have any allocated |
| 9913 | * space inside of them. |
| 9914 | */ |
| 9915 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 9916 | { |
| 9917 | struct btrfs_block_group_cache *block_group; |
| 9918 | struct btrfs_space_info *space_info; |
| 9919 | struct btrfs_root *root = fs_info->extent_root; |
| 9920 | struct btrfs_trans_handle *trans; |
| 9921 | int ret = 0; |
| 9922 | |
| 9923 | if (!fs_info->open) |
| 9924 | return; |
| 9925 | |
| 9926 | spin_lock(&fs_info->unused_bgs_lock); |
| 9927 | while (!list_empty(&fs_info->unused_bgs)) { |
| 9928 | u64 start, end; |
| 9929 | |
| 9930 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 9931 | struct btrfs_block_group_cache, |
| 9932 | bg_list); |
| 9933 | space_info = block_group->space_info; |
| 9934 | list_del_init(&block_group->bg_list); |
| 9935 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 9936 | btrfs_put_block_group(block_group); |
| 9937 | continue; |
| 9938 | } |
| 9939 | spin_unlock(&fs_info->unused_bgs_lock); |
| 9940 | |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 9941 | mutex_lock(&root->fs_info->delete_unused_bgs_mutex); |
| 9942 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9943 | /* Don't want to race with allocators so take the groups_sem */ |
| 9944 | down_write(&space_info->groups_sem); |
| 9945 | spin_lock(&block_group->lock); |
| 9946 | if (block_group->reserved || |
| 9947 | btrfs_block_group_used(&block_group->item) || |
| 9948 | block_group->ro) { |
| 9949 | /* |
| 9950 | * We want to bail if we made new allocations or have |
| 9951 | * outstanding allocations in this block group. We do |
| 9952 | * the ro check in case balance is currently acting on |
| 9953 | * this block group. |
| 9954 | */ |
| 9955 | spin_unlock(&block_group->lock); |
| 9956 | up_write(&space_info->groups_sem); |
| 9957 | goto next; |
| 9958 | } |
| 9959 | spin_unlock(&block_group->lock); |
| 9960 | |
| 9961 | /* We don't want to force the issue, only flip if it's ok. */ |
| 9962 | ret = set_block_group_ro(block_group, 0); |
| 9963 | up_write(&space_info->groups_sem); |
| 9964 | if (ret < 0) { |
| 9965 | ret = 0; |
| 9966 | goto next; |
| 9967 | } |
| 9968 | |
| 9969 | /* |
| 9970 | * Want to do this before we do anything else so we can recover |
| 9971 | * properly if we fail to join the transaction. |
| 9972 | */ |
Forrest Liu | 3d84be7 | 2015-02-11 14:24:12 +0800 | [diff] [blame] | 9973 | /* 1 for btrfs_orphan_reserve_metadata() */ |
| 9974 | trans = btrfs_start_transaction(root, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9975 | if (IS_ERR(trans)) { |
| 9976 | btrfs_set_block_group_rw(root, block_group); |
| 9977 | ret = PTR_ERR(trans); |
| 9978 | goto next; |
| 9979 | } |
| 9980 | |
| 9981 | /* |
| 9982 | * We could have pending pinned extents for this block group, |
| 9983 | * just delete them, we don't care about them anymore. |
| 9984 | */ |
| 9985 | start = block_group->key.objectid; |
| 9986 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 9987 | /* |
| 9988 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 9989 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 9990 | * another task might be running finish_extent_commit() for the |
| 9991 | * previous transaction N - 1, and have seen a range belonging |
| 9992 | * to the block group in freed_extents[] before we were able to |
| 9993 | * clear the whole block group range from freed_extents[]. This |
| 9994 | * means that task can lookup for the block group after we |
| 9995 | * unpinned it from freed_extents[] and removed it, leading to |
| 9996 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 9997 | */ |
| 9998 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 9999 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10000 | EXTENT_DIRTY, GFP_NOFS); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10001 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10002 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10003 | btrfs_set_block_group_rw(root, block_group); |
| 10004 | goto end_trans; |
| 10005 | } |
| 10006 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10007 | EXTENT_DIRTY, GFP_NOFS); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10008 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10009 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10010 | btrfs_set_block_group_rw(root, block_group); |
| 10011 | goto end_trans; |
| 10012 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10013 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10014 | |
| 10015 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10016 | spin_lock(&space_info->lock); |
| 10017 | spin_lock(&block_group->lock); |
| 10018 | |
| 10019 | space_info->bytes_pinned -= block_group->pinned; |
| 10020 | space_info->bytes_readonly += block_group->pinned; |
| 10021 | percpu_counter_add(&space_info->total_bytes_pinned, |
| 10022 | -block_group->pinned); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10023 | block_group->pinned = 0; |
| 10024 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10025 | spin_unlock(&block_group->lock); |
| 10026 | spin_unlock(&space_info->lock); |
| 10027 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10028 | /* |
| 10029 | * Btrfs_remove_chunk will abort the transaction if things go |
| 10030 | * horribly wrong. |
| 10031 | */ |
| 10032 | ret = btrfs_remove_chunk(trans, root, |
| 10033 | block_group->key.objectid); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10034 | end_trans: |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10035 | btrfs_end_transaction(trans, root); |
| 10036 | next: |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10037 | mutex_unlock(&root->fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10038 | btrfs_put_block_group(block_group); |
| 10039 | spin_lock(&fs_info->unused_bgs_lock); |
| 10040 | } |
| 10041 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10042 | } |
| 10043 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10044 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 10045 | { |
| 10046 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10047 | struct btrfs_super_block *disk_super; |
| 10048 | u64 features; |
| 10049 | u64 flags; |
| 10050 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10051 | int ret; |
| 10052 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10053 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10054 | if (!btrfs_super_root(disk_super)) |
| 10055 | return 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10056 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10057 | features = btrfs_super_incompat_flags(disk_super); |
| 10058 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 10059 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10060 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10061 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 10062 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10063 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10064 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10065 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10066 | if (mixed) { |
| 10067 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
| 10068 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 10069 | } else { |
| 10070 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 10071 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 10072 | if (ret) |
| 10073 | goto out; |
| 10074 | |
| 10075 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 10076 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 10077 | } |
| 10078 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10079 | return ret; |
| 10080 | } |
| 10081 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10082 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 10083 | { |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 10084 | return unpin_extent_range(root, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10085 | } |
| 10086 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10087 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 10088 | { |
| 10089 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 10090 | struct btrfs_block_group_cache *cache = NULL; |
| 10091 | u64 group_trimmed; |
| 10092 | u64 start; |
| 10093 | u64 end; |
| 10094 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10095 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10096 | int ret = 0; |
| 10097 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10098 | /* |
| 10099 | * try to trim all FS space, our block group may start from non-zero. |
| 10100 | */ |
| 10101 | if (range->len == total_bytes) |
| 10102 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 10103 | else |
| 10104 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10105 | |
| 10106 | while (cache) { |
| 10107 | if (cache->key.objectid >= (range->start + range->len)) { |
| 10108 | btrfs_put_block_group(cache); |
| 10109 | break; |
| 10110 | } |
| 10111 | |
| 10112 | start = max(range->start, cache->key.objectid); |
| 10113 | end = min(range->start + range->len, |
| 10114 | cache->key.objectid + cache->key.offset); |
| 10115 | |
| 10116 | if (end - start >= range->minlen) { |
| 10117 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 10118 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 10119 | if (ret) { |
| 10120 | btrfs_put_block_group(cache); |
| 10121 | break; |
| 10122 | } |
| 10123 | ret = wait_block_group_cache_done(cache); |
| 10124 | if (ret) { |
| 10125 | btrfs_put_block_group(cache); |
| 10126 | break; |
| 10127 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10128 | } |
| 10129 | ret = btrfs_trim_block_group(cache, |
| 10130 | &group_trimmed, |
| 10131 | start, |
| 10132 | end, |
| 10133 | range->minlen); |
| 10134 | |
| 10135 | trimmed += group_trimmed; |
| 10136 | if (ret) { |
| 10137 | btrfs_put_block_group(cache); |
| 10138 | break; |
| 10139 | } |
| 10140 | } |
| 10141 | |
| 10142 | cache = next_block_group(fs_info->tree_root, cache); |
| 10143 | } |
| 10144 | |
| 10145 | range->len = trimmed; |
| 10146 | return ret; |
| 10147 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10148 | |
| 10149 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10150 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 10151 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 10152 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 10153 | * but flush the data into disk after the snapshot creation, or to prevent |
| 10154 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 10155 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10156 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10157 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10158 | { |
| 10159 | percpu_counter_dec(&root->subv_writers->counter); |
| 10160 | /* |
| 10161 | * Make sure counter is updated before we wake up |
| 10162 | * waiters. |
| 10163 | */ |
| 10164 | smp_mb(); |
| 10165 | if (waitqueue_active(&root->subv_writers->wait)) |
| 10166 | wake_up(&root->subv_writers->wait); |
| 10167 | } |
| 10168 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10169 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10170 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 10171 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10172 | return 0; |
| 10173 | |
| 10174 | percpu_counter_inc(&root->subv_writers->counter); |
| 10175 | /* |
| 10176 | * Make sure counter is updated before we check for snapshot creation. |
| 10177 | */ |
| 10178 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 10179 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10180 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10181 | return 0; |
| 10182 | } |
| 10183 | return 1; |
| 10184 | } |