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 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 77 | static int update_block_group(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 78 | u64 bytenr, u64 num_bytes, int alloc); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 79 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 80 | struct btrfs_root *root, |
| 81 | u64 bytenr, u64 num_bytes, u64 parent, |
| 82 | u64 root_objectid, u64 owner_objectid, |
| 83 | u64 owner_offset, int refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 84 | struct btrfs_delayed_extent_op *extra_op, |
| 85 | int no_quota); |
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); |
| 318 | if (cache->cached != BTRFS_CACHE_STARTED) { |
| 319 | spin_unlock(&cache->lock); |
| 320 | return NULL; |
| 321 | } |
| 322 | |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 323 | /* We're loading it the fast way, so we don't have a caching_ctl. */ |
| 324 | if (!cache->caching_ctl) { |
| 325 | spin_unlock(&cache->lock); |
| 326 | return NULL; |
| 327 | } |
| 328 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 329 | ctl = cache->caching_ctl; |
| 330 | atomic_inc(&ctl->count); |
| 331 | spin_unlock(&cache->lock); |
| 332 | return ctl; |
| 333 | } |
| 334 | |
| 335 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 336 | { |
| 337 | if (atomic_dec_and_test(&ctl->count)) |
| 338 | kfree(ctl); |
| 339 | } |
| 340 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 341 | /* |
| 342 | * this is only called by cache_block_group, since we could have freed extents |
| 343 | * we need to check the pinned_extents for any extents that can't be used yet |
| 344 | * since their free space will be released as soon as the transaction commits. |
| 345 | */ |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 346 | 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] | 347 | struct btrfs_fs_info *info, u64 start, u64 end) |
| 348 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 349 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 350 | int ret; |
| 351 | |
| 352 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 353 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 354 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 355 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 356 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 357 | if (ret) |
| 358 | break; |
| 359 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 360 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 361 | start = extent_end + 1; |
| 362 | } else if (extent_start > start && extent_start < end) { |
| 363 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 364 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 365 | ret = btrfs_add_free_space(block_group, start, |
| 366 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 367 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 368 | start = extent_end + 1; |
| 369 | } else { |
| 370 | break; |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | if (start < end) { |
| 375 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 376 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 377 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 378 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 379 | } |
| 380 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 381 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 382 | } |
| 383 | |
Qu Wenruo | d458b05 | 2014-02-28 10:46:19 +0800 | [diff] [blame] | 384 | static noinline void caching_thread(struct btrfs_work *work) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 385 | { |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 386 | struct btrfs_block_group_cache *block_group; |
| 387 | struct btrfs_fs_info *fs_info; |
| 388 | struct btrfs_caching_control *caching_ctl; |
| 389 | struct btrfs_root *extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 390 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 391 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 392 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 393 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 394 | u64 last = 0; |
| 395 | u32 nritems; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 396 | int ret = -ENOMEM; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 397 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 398 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 399 | block_group = caching_ctl->block_group; |
| 400 | fs_info = block_group->fs_info; |
| 401 | extent_root = fs_info->extent_root; |
| 402 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 403 | path = btrfs_alloc_path(); |
| 404 | if (!path) |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 405 | goto out; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 406 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 407 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 408 | |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 409 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 410 | * We don't want to deadlock with somebody trying to allocate a new |
| 411 | * extent for the extent root while also trying to search the extent |
| 412 | * root to add free space. So we skip locking and search the commit |
| 413 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 414 | */ |
| 415 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 416 | path->search_commit_root = 1; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 417 | path->reada = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 418 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 419 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 420 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 421 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 422 | again: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 423 | mutex_lock(&caching_ctl->mutex); |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 424 | /* need to make sure the commit_root doesn't disappear */ |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 425 | down_read(&fs_info->commit_root_sem); |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 426 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 427 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 428 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 429 | if (ret < 0) |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 430 | goto err; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 431 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 432 | leaf = path->nodes[0]; |
| 433 | nritems = btrfs_header_nritems(leaf); |
| 434 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 435 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 436 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 437 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 438 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 439 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 440 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 441 | if (path->slots[0] < nritems) { |
| 442 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 443 | } else { |
| 444 | ret = find_next_key(path, 0, &key); |
| 445 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 446 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 447 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 448 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 449 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 450 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 451 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 452 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 453 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 454 | cond_resched(); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 455 | goto again; |
| 456 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 457 | |
| 458 | ret = btrfs_next_leaf(extent_root, path); |
| 459 | if (ret < 0) |
| 460 | goto err; |
| 461 | if (ret) |
| 462 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 463 | leaf = path->nodes[0]; |
| 464 | nritems = btrfs_header_nritems(leaf); |
| 465 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 466 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 467 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 468 | if (key.objectid < last) { |
| 469 | key.objectid = last; |
| 470 | key.offset = 0; |
| 471 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 472 | |
| 473 | caching_ctl->progress = last; |
| 474 | btrfs_release_path(path); |
| 475 | goto next; |
| 476 | } |
| 477 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 478 | if (key.objectid < block_group->key.objectid) { |
| 479 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 480 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 481 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 482 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 483 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 484 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 485 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 486 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 487 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 488 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 489 | total_found += add_new_free_space(block_group, |
| 490 | fs_info, last, |
| 491 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 492 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 493 | last = key.objectid + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 494 | fs_info->tree_root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 495 | else |
| 496 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 497 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 498 | if (total_found > (1024 * 1024 * 2)) { |
| 499 | total_found = 0; |
| 500 | wake_up(&caching_ctl->wait); |
| 501 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 502 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 503 | path->slots[0]++; |
| 504 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 505 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 506 | |
| 507 | total_found += add_new_free_space(block_group, fs_info, last, |
| 508 | block_group->key.objectid + |
| 509 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 510 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 511 | |
| 512 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 513 | block_group->caching_ctl = NULL; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 514 | block_group->cached = BTRFS_CACHE_FINISHED; |
| 515 | spin_unlock(&block_group->lock); |
| 516 | |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 517 | err: |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 518 | btrfs_free_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 519 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 520 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 521 | free_excluded_extents(extent_root, block_group); |
| 522 | |
| 523 | mutex_unlock(&caching_ctl->mutex); |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 524 | out: |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 525 | if (ret) { |
| 526 | spin_lock(&block_group->lock); |
| 527 | block_group->caching_ctl = NULL; |
| 528 | block_group->cached = BTRFS_CACHE_ERROR; |
| 529 | spin_unlock(&block_group->lock); |
| 530 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 531 | wake_up(&caching_ctl->wait); |
| 532 | |
| 533 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 534 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 535 | } |
| 536 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 537 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 538 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 539 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 540 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 541 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 542 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 543 | int ret = 0; |
| 544 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 545 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 546 | if (!caching_ctl) |
| 547 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 548 | |
| 549 | INIT_LIST_HEAD(&caching_ctl->list); |
| 550 | mutex_init(&caching_ctl->mutex); |
| 551 | init_waitqueue_head(&caching_ctl->wait); |
| 552 | caching_ctl->block_group = cache; |
| 553 | caching_ctl->progress = cache->key.objectid; |
| 554 | atomic_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 555 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 556 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 557 | |
| 558 | spin_lock(&cache->lock); |
| 559 | /* |
| 560 | * This should be a rare occasion, but this could happen I think in the |
| 561 | * case where one thread starts to load the space cache info, and then |
| 562 | * some other thread starts a transaction commit which tries to do an |
| 563 | * allocation while the other thread is still loading the space cache |
| 564 | * info. The previous loop should have kept us from choosing this block |
| 565 | * group, but if we've moved to the state where we will wait on caching |
| 566 | * block groups we need to first check if we're doing a fast load here, |
| 567 | * so we can wait for it to finish, otherwise we could end up allocating |
| 568 | * from a block group who's cache gets evicted for one reason or |
| 569 | * another. |
| 570 | */ |
| 571 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 572 | struct btrfs_caching_control *ctl; |
| 573 | |
| 574 | ctl = cache->caching_ctl; |
| 575 | atomic_inc(&ctl->count); |
| 576 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 577 | spin_unlock(&cache->lock); |
| 578 | |
| 579 | schedule(); |
| 580 | |
| 581 | finish_wait(&ctl->wait, &wait); |
| 582 | put_caching_control(ctl); |
| 583 | spin_lock(&cache->lock); |
| 584 | } |
| 585 | |
| 586 | if (cache->cached != BTRFS_CACHE_NO) { |
| 587 | spin_unlock(&cache->lock); |
| 588 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 589 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 590 | } |
| 591 | WARN_ON(cache->caching_ctl); |
| 592 | cache->caching_ctl = caching_ctl; |
| 593 | cache->cached = BTRFS_CACHE_FAST; |
| 594 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 595 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 596 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 597 | ret = load_free_space_cache(fs_info, cache); |
| 598 | |
| 599 | spin_lock(&cache->lock); |
| 600 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 601 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 602 | cache->cached = BTRFS_CACHE_FINISHED; |
| 603 | cache->last_byte_to_unpin = (u64)-1; |
| 604 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 605 | if (load_cache_only) { |
| 606 | cache->caching_ctl = NULL; |
| 607 | cache->cached = BTRFS_CACHE_NO; |
| 608 | } else { |
| 609 | cache->cached = BTRFS_CACHE_STARTED; |
| 610 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 611 | } |
| 612 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 613 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 614 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 615 | put_caching_control(caching_ctl); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 616 | free_excluded_extents(fs_info->extent_root, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 617 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 618 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 619 | } else { |
| 620 | /* |
| 621 | * We are not going to do the fast caching, set cached to the |
| 622 | * appropriate value and wakeup any waiters. |
| 623 | */ |
| 624 | spin_lock(&cache->lock); |
| 625 | if (load_cache_only) { |
| 626 | cache->caching_ctl = NULL; |
| 627 | cache->cached = BTRFS_CACHE_NO; |
| 628 | } else { |
| 629 | cache->cached = BTRFS_CACHE_STARTED; |
| 630 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 631 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 632 | wake_up(&caching_ctl->wait); |
| 633 | } |
| 634 | |
| 635 | if (load_cache_only) { |
| 636 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 637 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 638 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 639 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 640 | down_write(&fs_info->commit_root_sem); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 641 | atomic_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 642 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 643 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 644 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 645 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 646 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 647 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 648 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 649 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 650 | } |
| 651 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 652 | /* |
| 653 | * return the block group that starts at or after bytenr |
| 654 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 655 | static struct btrfs_block_group_cache * |
| 656 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 657 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 658 | struct btrfs_block_group_cache *cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 659 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 660 | cache = block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 661 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 662 | return cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 663 | } |
| 664 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 665 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 666 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 667 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 668 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 669 | struct btrfs_fs_info *info, |
| 670 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 671 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 672 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 673 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 674 | cache = block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 675 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 676 | return cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 677 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 678 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 679 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 680 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 681 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 682 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 683 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 684 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 685 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 686 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 687 | rcu_read_lock(); |
| 688 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 689 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 690 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 691 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 692 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 693 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 694 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 695 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 696 | } |
| 697 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 698 | /* |
| 699 | * after adding space to the filesystem, we need to clear the full flags |
| 700 | * on all the space infos. |
| 701 | */ |
| 702 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 703 | { |
| 704 | struct list_head *head = &info->space_info; |
| 705 | struct btrfs_space_info *found; |
| 706 | |
| 707 | rcu_read_lock(); |
| 708 | list_for_each_entry_rcu(found, head, list) |
| 709 | found->full = 0; |
| 710 | rcu_read_unlock(); |
| 711 | } |
| 712 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 713 | /* simple helper to search for an existing extent at a given offset */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 714 | int btrfs_lookup_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); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 729 | if (ret > 0) { |
| 730 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 731 | if (key.objectid == start && |
| 732 | key.type == BTRFS_METADATA_ITEM_KEY) |
| 733 | ret = 0; |
| 734 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 735 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 736 | return ret; |
| 737 | } |
| 738 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 739 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 740 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 741 | * |
| 742 | * the head node for delayed ref is used to store the sum of all the |
| 743 | * reference count modifications queued up in the rbtree. the head |
| 744 | * node may also store the extent flags to set. This way you can check |
| 745 | * to see what the reference count and extent flags would be if all of |
| 746 | * the delayed refs are not processed. |
| 747 | */ |
| 748 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
| 749 | struct btrfs_root *root, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 750 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 751 | { |
| 752 | struct btrfs_delayed_ref_head *head; |
| 753 | struct btrfs_delayed_ref_root *delayed_refs; |
| 754 | struct btrfs_path *path; |
| 755 | struct btrfs_extent_item *ei; |
| 756 | struct extent_buffer *leaf; |
| 757 | struct btrfs_key key; |
| 758 | u32 item_size; |
| 759 | u64 num_refs; |
| 760 | u64 extent_flags; |
| 761 | int ret; |
| 762 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 763 | /* |
| 764 | * If we don't have skinny metadata, don't bother doing anything |
| 765 | * different |
| 766 | */ |
| 767 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) { |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 768 | offset = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 769 | metadata = 0; |
| 770 | } |
| 771 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 772 | path = btrfs_alloc_path(); |
| 773 | if (!path) |
| 774 | return -ENOMEM; |
| 775 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 776 | if (!trans) { |
| 777 | path->skip_locking = 1; |
| 778 | path->search_commit_root = 1; |
| 779 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 780 | |
| 781 | search_again: |
| 782 | key.objectid = bytenr; |
| 783 | key.offset = offset; |
| 784 | if (metadata) |
| 785 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 786 | else |
| 787 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 788 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 789 | again: |
| 790 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, |
| 791 | &key, path, 0, 0); |
| 792 | if (ret < 0) |
| 793 | goto out_free; |
| 794 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 795 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 796 | if (path->slots[0]) { |
| 797 | path->slots[0]--; |
| 798 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 799 | path->slots[0]); |
| 800 | if (key.objectid == bytenr && |
| 801 | key.type == BTRFS_EXTENT_ITEM_KEY && |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 802 | key.offset == root->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 803 | ret = 0; |
| 804 | } |
| 805 | if (ret) { |
| 806 | key.objectid = bytenr; |
| 807 | key.type = BTRFS_EXTENT_ITEM_KEY; |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 808 | key.offset = root->nodesize; |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 809 | btrfs_release_path(path); |
| 810 | goto again; |
| 811 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 812 | } |
| 813 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 814 | if (ret == 0) { |
| 815 | leaf = path->nodes[0]; |
| 816 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 817 | if (item_size >= sizeof(*ei)) { |
| 818 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 819 | struct btrfs_extent_item); |
| 820 | num_refs = btrfs_extent_refs(leaf, ei); |
| 821 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 822 | } else { |
| 823 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 824 | struct btrfs_extent_item_v0 *ei0; |
| 825 | BUG_ON(item_size != sizeof(*ei0)); |
| 826 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 827 | struct btrfs_extent_item_v0); |
| 828 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 829 | /* FIXME: this isn't correct for data */ |
| 830 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 831 | #else |
| 832 | BUG(); |
| 833 | #endif |
| 834 | } |
| 835 | BUG_ON(num_refs == 0); |
| 836 | } else { |
| 837 | num_refs = 0; |
| 838 | extent_flags = 0; |
| 839 | ret = 0; |
| 840 | } |
| 841 | |
| 842 | if (!trans) |
| 843 | goto out; |
| 844 | |
| 845 | delayed_refs = &trans->transaction->delayed_refs; |
| 846 | spin_lock(&delayed_refs->lock); |
| 847 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 848 | if (head) { |
| 849 | if (!mutex_trylock(&head->mutex)) { |
| 850 | atomic_inc(&head->node.refs); |
| 851 | spin_unlock(&delayed_refs->lock); |
| 852 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 853 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 854 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 855 | /* |
| 856 | * Mutex was contended, block until it's released and try |
| 857 | * again |
| 858 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 859 | mutex_lock(&head->mutex); |
| 860 | mutex_unlock(&head->mutex); |
| 861 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 862 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 863 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 864 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 865 | if (head->extent_op && head->extent_op->update_flags) |
| 866 | extent_flags |= head->extent_op->flags_to_set; |
| 867 | else |
| 868 | BUG_ON(num_refs == 0); |
| 869 | |
| 870 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 871 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 872 | mutex_unlock(&head->mutex); |
| 873 | } |
| 874 | spin_unlock(&delayed_refs->lock); |
| 875 | out: |
| 876 | WARN_ON(num_refs == 0); |
| 877 | if (refs) |
| 878 | *refs = num_refs; |
| 879 | if (flags) |
| 880 | *flags = extent_flags; |
| 881 | out_free: |
| 882 | btrfs_free_path(path); |
| 883 | return ret; |
| 884 | } |
| 885 | |
| 886 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 887 | * Back reference rules. Back refs have three main goals: |
| 888 | * |
| 889 | * 1) differentiate between all holders of references to an extent so that |
| 890 | * when a reference is dropped we can make sure it was a valid reference |
| 891 | * before freeing the extent. |
| 892 | * |
| 893 | * 2) Provide enough information to quickly find the holders of an extent |
| 894 | * if we notice a given block is corrupted or bad. |
| 895 | * |
| 896 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 897 | * maintenance. This is actually the same as #2, but with a slightly |
| 898 | * different use case. |
| 899 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 900 | * There are two kinds of back refs. The implicit back refs is optimized |
| 901 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 902 | * back refs of this kind provide information about the block's owner tree |
| 903 | * and the pointer's key. These information allow us to find the block by |
| 904 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 905 | * referenced by their owner trees. The location of tree block is recorded |
| 906 | * in the back refs. Actually the full back refs is generic, and can be |
| 907 | * used in all cases the implicit back refs is used. The major shortcoming |
| 908 | * of the full back refs is its overhead. Every time a tree block gets |
| 909 | * COWed, we have to update back refs entry for all pointers in it. |
| 910 | * |
| 911 | * For a newly allocated tree block, we use implicit back refs for |
| 912 | * pointers in it. This means most tree related operations only involve |
| 913 | * implicit back refs. For a tree block created in old transaction, the |
| 914 | * only way to drop a reference to it is COW it. So we can detect the |
| 915 | * event that tree block loses its owner tree's reference and do the |
| 916 | * back refs conversion. |
| 917 | * |
| 918 | * When a tree block is COW'd through a tree, there are four cases: |
| 919 | * |
| 920 | * The reference count of the block is one and the tree is the block's |
| 921 | * owner tree. Nothing to do in this case. |
| 922 | * |
| 923 | * The reference count of the block is one and the tree is not the |
| 924 | * block's owner tree. In this case, full back refs is used for pointers |
| 925 | * in the block. Remove these full back refs, add implicit back refs for |
| 926 | * every pointers in the new block. |
| 927 | * |
| 928 | * The reference count of the block is greater than one and the tree is |
| 929 | * the block's owner tree. In this case, implicit back refs is used for |
| 930 | * pointers in the block. Add full back refs for every pointers in the |
| 931 | * block, increase lower level extents' reference counts. The original |
| 932 | * implicit back refs are entailed to the new block. |
| 933 | * |
| 934 | * The reference count of the block is greater than one and the tree is |
| 935 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 936 | * the new block, increase lower level extents' reference count. |
| 937 | * |
| 938 | * Back Reference Key composing: |
| 939 | * |
| 940 | * The key objectid corresponds to the first byte in the extent, |
| 941 | * The key type is used to differentiate between types of back refs. |
| 942 | * There are different meanings of the key offset for different types |
| 943 | * of back refs. |
| 944 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 945 | * File extents can be referenced by: |
| 946 | * |
| 947 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 948 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 949 | * - different offsets inside a file (bookend extents in file.c) |
| 950 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 951 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 952 | * |
| 953 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 954 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 955 | * - original offset in the file |
| 956 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 957 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 958 | * The key offset for the implicit back refs is hash of the first |
| 959 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 960 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 961 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 962 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 963 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 964 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 965 | * The key offset for the implicit back refs is the first byte of |
| 966 | * the tree leaf |
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 | * When a file extent is allocated, The implicit back refs is used. |
| 969 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 970 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 971 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 972 | * |
| 973 | * When a file extent is removed file truncation, we find the |
| 974 | * corresponding implicit back refs and check the following fields: |
| 975 | * |
| 976 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 977 | * |
| 978 | * Btree extents can be referenced by: |
| 979 | * |
| 980 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 981 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 982 | * Both the implicit back refs and the full back refs for tree blocks |
| 983 | * only consist of key. The key offset for the implicit back refs is |
| 984 | * objectid of block's owner tree. The key offset for the full back refs |
| 985 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 986 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 987 | * When implicit back refs is used, information about the lowest key and |
| 988 | * level of the tree block are required. These information are stored in |
| 989 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 990 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 991 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 992 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 993 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
| 994 | struct btrfs_root *root, |
| 995 | struct btrfs_path *path, |
| 996 | u64 owner, u32 extra_size) |
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 | struct btrfs_extent_item *item; |
| 999 | struct btrfs_extent_item_v0 *ei0; |
| 1000 | struct btrfs_extent_ref_v0 *ref0; |
| 1001 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1002 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1003 | struct btrfs_key key; |
| 1004 | struct btrfs_key found_key; |
| 1005 | u32 new_size = sizeof(*item); |
| 1006 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1007 | int ret; |
| 1008 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1009 | leaf = path->nodes[0]; |
| 1010 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1011 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1012 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1013 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1014 | struct btrfs_extent_item_v0); |
| 1015 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1016 | |
| 1017 | if (owner == (u64)-1) { |
| 1018 | while (1) { |
| 1019 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1020 | ret = btrfs_next_leaf(root, path); |
| 1021 | if (ret < 0) |
| 1022 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1023 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1024 | leaf = path->nodes[0]; |
| 1025 | } |
| 1026 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1027 | path->slots[0]); |
| 1028 | BUG_ON(key.objectid != found_key.objectid); |
| 1029 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1030 | path->slots[0]++; |
| 1031 | continue; |
| 1032 | } |
| 1033 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1034 | struct btrfs_extent_ref_v0); |
| 1035 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1036 | break; |
| 1037 | } |
| 1038 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1039 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1040 | |
| 1041 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1042 | new_size += sizeof(*bi); |
| 1043 | |
| 1044 | new_size -= sizeof(*ei0); |
| 1045 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1046 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1047 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1048 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1049 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1050 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1051 | btrfs_extend_item(root, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1052 | |
| 1053 | leaf = path->nodes[0]; |
| 1054 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1055 | btrfs_set_extent_refs(leaf, item, refs); |
| 1056 | /* FIXME: get real generation */ |
| 1057 | btrfs_set_extent_generation(leaf, item, 0); |
| 1058 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1059 | btrfs_set_extent_flags(leaf, item, |
| 1060 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1061 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1062 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1063 | /* FIXME: get first key of the block */ |
| 1064 | memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi)); |
| 1065 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1066 | } else { |
| 1067 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1068 | } |
| 1069 | btrfs_mark_buffer_dirty(leaf); |
| 1070 | return 0; |
| 1071 | } |
| 1072 | #endif |
| 1073 | |
| 1074 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1075 | { |
| 1076 | u32 high_crc = ~(u32)0; |
| 1077 | u32 low_crc = ~(u32)0; |
| 1078 | __le64 lenum; |
| 1079 | |
| 1080 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1081 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1082 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1083 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1084 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1085 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1086 | |
| 1087 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1088 | } |
| 1089 | |
| 1090 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1091 | struct btrfs_extent_data_ref *ref) |
| 1092 | { |
| 1093 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1094 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1095 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1096 | } |
| 1097 | |
| 1098 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1099 | struct btrfs_extent_data_ref *ref, |
| 1100 | u64 root_objectid, u64 owner, u64 offset) |
| 1101 | { |
| 1102 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1103 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1104 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1105 | return 0; |
| 1106 | return 1; |
| 1107 | } |
| 1108 | |
| 1109 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1110 | struct btrfs_root *root, |
| 1111 | struct btrfs_path *path, |
| 1112 | u64 bytenr, u64 parent, |
| 1113 | u64 root_objectid, |
| 1114 | u64 owner, u64 offset) |
| 1115 | { |
| 1116 | struct btrfs_key key; |
| 1117 | struct btrfs_extent_data_ref *ref; |
| 1118 | struct extent_buffer *leaf; |
| 1119 | u32 nritems; |
| 1120 | int ret; |
| 1121 | int recow; |
| 1122 | int err = -ENOENT; |
| 1123 | |
| 1124 | key.objectid = bytenr; |
| 1125 | if (parent) { |
| 1126 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1127 | key.offset = parent; |
| 1128 | } else { |
| 1129 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1130 | key.offset = hash_extent_data_ref(root_objectid, |
| 1131 | owner, offset); |
| 1132 | } |
| 1133 | again: |
| 1134 | recow = 0; |
| 1135 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1136 | if (ret < 0) { |
| 1137 | err = ret; |
| 1138 | goto fail; |
| 1139 | } |
| 1140 | |
| 1141 | if (parent) { |
| 1142 | if (!ret) |
| 1143 | return 0; |
| 1144 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1145 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1146 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1147 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1148 | if (ret < 0) { |
| 1149 | err = ret; |
| 1150 | goto fail; |
| 1151 | } |
| 1152 | if (!ret) |
| 1153 | return 0; |
| 1154 | #endif |
| 1155 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1159 | nritems = btrfs_header_nritems(leaf); |
| 1160 | while (1) { |
| 1161 | if (path->slots[0] >= nritems) { |
| 1162 | ret = btrfs_next_leaf(root, path); |
| 1163 | if (ret < 0) |
| 1164 | err = ret; |
| 1165 | if (ret) |
| 1166 | goto fail; |
| 1167 | |
| 1168 | leaf = path->nodes[0]; |
| 1169 | nritems = btrfs_header_nritems(leaf); |
| 1170 | recow = 1; |
| 1171 | } |
| 1172 | |
| 1173 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1174 | if (key.objectid != bytenr || |
| 1175 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1176 | goto fail; |
| 1177 | |
| 1178 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1179 | struct btrfs_extent_data_ref); |
| 1180 | |
| 1181 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1182 | owner, offset)) { |
| 1183 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1184 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1185 | goto again; |
| 1186 | } |
| 1187 | err = 0; |
| 1188 | break; |
| 1189 | } |
| 1190 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1191 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1192 | fail: |
| 1193 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1194 | } |
| 1195 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1196 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1197 | struct btrfs_root *root, |
| 1198 | struct btrfs_path *path, |
| 1199 | u64 bytenr, u64 parent, |
| 1200 | u64 root_objectid, u64 owner, |
| 1201 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1202 | { |
| 1203 | struct btrfs_key key; |
| 1204 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1205 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1206 | u32 num_refs; |
| 1207 | int ret; |
| 1208 | |
| 1209 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1210 | if (parent) { |
| 1211 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1212 | key.offset = parent; |
| 1213 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1214 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1215 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1216 | key.offset = hash_extent_data_ref(root_objectid, |
| 1217 | owner, offset); |
| 1218 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1219 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1220 | |
| 1221 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1222 | if (ret && ret != -EEXIST) |
| 1223 | goto fail; |
| 1224 | |
| 1225 | leaf = path->nodes[0]; |
| 1226 | if (parent) { |
| 1227 | struct btrfs_shared_data_ref *ref; |
| 1228 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1229 | struct btrfs_shared_data_ref); |
| 1230 | if (ret == 0) { |
| 1231 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1232 | } else { |
| 1233 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1234 | num_refs += refs_to_add; |
| 1235 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1236 | } |
| 1237 | } else { |
| 1238 | struct btrfs_extent_data_ref *ref; |
| 1239 | while (ret == -EEXIST) { |
| 1240 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1241 | struct btrfs_extent_data_ref); |
| 1242 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1243 | owner, offset)) |
| 1244 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1245 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1246 | key.offset++; |
| 1247 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1248 | size); |
| 1249 | if (ret && ret != -EEXIST) |
| 1250 | goto fail; |
| 1251 | |
| 1252 | leaf = path->nodes[0]; |
| 1253 | } |
| 1254 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1255 | struct btrfs_extent_data_ref); |
| 1256 | if (ret == 0) { |
| 1257 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1258 | root_objectid); |
| 1259 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1260 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1261 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1262 | } else { |
| 1263 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1264 | num_refs += refs_to_add; |
| 1265 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1266 | } |
| 1267 | } |
| 1268 | btrfs_mark_buffer_dirty(leaf); |
| 1269 | ret = 0; |
| 1270 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1271 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1272 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1273 | } |
| 1274 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1275 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1276 | struct btrfs_root *root, |
| 1277 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1278 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1279 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1280 | struct btrfs_key key; |
| 1281 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1282 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1283 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1284 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1285 | int ret = 0; |
| 1286 | |
| 1287 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1288 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1289 | |
| 1290 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1291 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1292 | struct btrfs_extent_data_ref); |
| 1293 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1294 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1295 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1296 | struct btrfs_shared_data_ref); |
| 1297 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1298 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1299 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1300 | struct btrfs_extent_ref_v0 *ref0; |
| 1301 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1302 | struct btrfs_extent_ref_v0); |
| 1303 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1304 | #endif |
| 1305 | } else { |
| 1306 | BUG(); |
| 1307 | } |
| 1308 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1309 | BUG_ON(num_refs < refs_to_drop); |
| 1310 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1311 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1312 | if (num_refs == 0) { |
| 1313 | ret = btrfs_del_item(trans, root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1314 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1315 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1316 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1317 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1318 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1319 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1320 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1321 | else { |
| 1322 | struct btrfs_extent_ref_v0 *ref0; |
| 1323 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1324 | struct btrfs_extent_ref_v0); |
| 1325 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1326 | } |
| 1327 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1328 | btrfs_mark_buffer_dirty(leaf); |
| 1329 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1330 | return ret; |
| 1331 | } |
| 1332 | |
| 1333 | static noinline u32 extent_data_ref_count(struct btrfs_root *root, |
| 1334 | struct btrfs_path *path, |
| 1335 | struct btrfs_extent_inline_ref *iref) |
| 1336 | { |
| 1337 | struct btrfs_key key; |
| 1338 | struct extent_buffer *leaf; |
| 1339 | struct btrfs_extent_data_ref *ref1; |
| 1340 | struct btrfs_shared_data_ref *ref2; |
| 1341 | u32 num_refs = 0; |
| 1342 | |
| 1343 | leaf = path->nodes[0]; |
| 1344 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1345 | if (iref) { |
| 1346 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1347 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1348 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1349 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1350 | } else { |
| 1351 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1352 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1353 | } |
| 1354 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1355 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1356 | struct btrfs_extent_data_ref); |
| 1357 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1358 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1359 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1360 | struct btrfs_shared_data_ref); |
| 1361 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1362 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1363 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1364 | struct btrfs_extent_ref_v0 *ref0; |
| 1365 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1366 | struct btrfs_extent_ref_v0); |
| 1367 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1368 | #endif |
| 1369 | } else { |
| 1370 | WARN_ON(1); |
| 1371 | } |
| 1372 | return num_refs; |
| 1373 | } |
| 1374 | |
| 1375 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1376 | struct btrfs_root *root, |
| 1377 | struct btrfs_path *path, |
| 1378 | u64 bytenr, u64 parent, |
| 1379 | u64 root_objectid) |
| 1380 | { |
| 1381 | struct btrfs_key key; |
| 1382 | int ret; |
| 1383 | |
| 1384 | key.objectid = bytenr; |
| 1385 | if (parent) { |
| 1386 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1387 | key.offset = parent; |
| 1388 | } else { |
| 1389 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1390 | key.offset = root_objectid; |
| 1391 | } |
| 1392 | |
| 1393 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1394 | if (ret > 0) |
| 1395 | ret = -ENOENT; |
| 1396 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1397 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1398 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1399 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1400 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1401 | if (ret > 0) |
| 1402 | ret = -ENOENT; |
| 1403 | } |
| 1404 | #endif |
| 1405 | return ret; |
| 1406 | } |
| 1407 | |
| 1408 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1409 | struct btrfs_root *root, |
| 1410 | struct btrfs_path *path, |
| 1411 | u64 bytenr, u64 parent, |
| 1412 | u64 root_objectid) |
| 1413 | { |
| 1414 | struct btrfs_key key; |
| 1415 | int ret; |
| 1416 | |
| 1417 | key.objectid = bytenr; |
| 1418 | if (parent) { |
| 1419 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1420 | key.offset = parent; |
| 1421 | } else { |
| 1422 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1423 | key.offset = root_objectid; |
| 1424 | } |
| 1425 | |
| 1426 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1427 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1428 | return ret; |
| 1429 | } |
| 1430 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1431 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1432 | { |
| 1433 | int type; |
| 1434 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1435 | if (parent > 0) |
| 1436 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1437 | else |
| 1438 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1439 | } else { |
| 1440 | if (parent > 0) |
| 1441 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1442 | else |
| 1443 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1444 | } |
| 1445 | return type; |
| 1446 | } |
| 1447 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1448 | static int find_next_key(struct btrfs_path *path, int level, |
| 1449 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1450 | |
| 1451 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1452 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1453 | if (!path->nodes[level]) |
| 1454 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1455 | if (path->slots[level] + 1 >= |
| 1456 | btrfs_header_nritems(path->nodes[level])) |
| 1457 | continue; |
| 1458 | if (level == 0) |
| 1459 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1460 | path->slots[level] + 1); |
| 1461 | else |
| 1462 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1463 | path->slots[level] + 1); |
| 1464 | return 0; |
| 1465 | } |
| 1466 | return 1; |
| 1467 | } |
| 1468 | |
| 1469 | /* |
| 1470 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1471 | * to the address of inline back ref, and 0 is returned. |
| 1472 | * |
| 1473 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1474 | * should be inserted, and -ENOENT is returned. |
| 1475 | * |
| 1476 | * if insert is true and there are too many inline back refs, the path |
| 1477 | * points to the extent item, and -EAGAIN is returned. |
| 1478 | * |
| 1479 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1480 | * items in the tree are ordered. |
| 1481 | */ |
| 1482 | static noinline_for_stack |
| 1483 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1484 | struct btrfs_root *root, |
| 1485 | struct btrfs_path *path, |
| 1486 | struct btrfs_extent_inline_ref **ref_ret, |
| 1487 | u64 bytenr, u64 num_bytes, |
| 1488 | u64 parent, u64 root_objectid, |
| 1489 | u64 owner, u64 offset, int insert) |
| 1490 | { |
| 1491 | struct btrfs_key key; |
| 1492 | struct extent_buffer *leaf; |
| 1493 | struct btrfs_extent_item *ei; |
| 1494 | struct btrfs_extent_inline_ref *iref; |
| 1495 | u64 flags; |
| 1496 | u64 item_size; |
| 1497 | unsigned long ptr; |
| 1498 | unsigned long end; |
| 1499 | int extra_size; |
| 1500 | int type; |
| 1501 | int want; |
| 1502 | int ret; |
| 1503 | int err = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1504 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 1505 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1506 | |
| 1507 | key.objectid = bytenr; |
| 1508 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1509 | key.offset = num_bytes; |
| 1510 | |
| 1511 | want = extent_ref_type(parent, owner); |
| 1512 | if (insert) { |
| 1513 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1514 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1515 | } else |
| 1516 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1517 | |
| 1518 | /* |
| 1519 | * Owner is our parent level, so we can just add one to get the level |
| 1520 | * for the block we are interested in. |
| 1521 | */ |
| 1522 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1523 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1524 | key.offset = owner; |
| 1525 | } |
| 1526 | |
| 1527 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1528 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1529 | if (ret < 0) { |
| 1530 | err = ret; |
| 1531 | goto out; |
| 1532 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1533 | |
| 1534 | /* |
| 1535 | * We may be a newly converted file system which still has the old fat |
| 1536 | * extent entries for metadata, so try and see if we have one of those. |
| 1537 | */ |
| 1538 | if (ret > 0 && skinny_metadata) { |
| 1539 | skinny_metadata = false; |
| 1540 | if (path->slots[0]) { |
| 1541 | path->slots[0]--; |
| 1542 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1543 | path->slots[0]); |
| 1544 | if (key.objectid == bytenr && |
| 1545 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1546 | key.offset == num_bytes) |
| 1547 | ret = 0; |
| 1548 | } |
| 1549 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1550 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1551 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1552 | key.offset = num_bytes; |
| 1553 | btrfs_release_path(path); |
| 1554 | goto again; |
| 1555 | } |
| 1556 | } |
| 1557 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1558 | if (ret && !insert) { |
| 1559 | err = -ENOENT; |
| 1560 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1561 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1562 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1563 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1564 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1565 | |
| 1566 | leaf = path->nodes[0]; |
| 1567 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1568 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1569 | if (item_size < sizeof(*ei)) { |
| 1570 | if (!insert) { |
| 1571 | err = -ENOENT; |
| 1572 | goto out; |
| 1573 | } |
| 1574 | ret = convert_extent_item_v0(trans, root, path, owner, |
| 1575 | extra_size); |
| 1576 | if (ret < 0) { |
| 1577 | err = ret; |
| 1578 | goto out; |
| 1579 | } |
| 1580 | leaf = path->nodes[0]; |
| 1581 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1582 | } |
| 1583 | #endif |
| 1584 | BUG_ON(item_size < sizeof(*ei)); |
| 1585 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1586 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1587 | flags = btrfs_extent_flags(leaf, ei); |
| 1588 | |
| 1589 | ptr = (unsigned long)(ei + 1); |
| 1590 | end = (unsigned long)ei + item_size; |
| 1591 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1592 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1593 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1594 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1595 | } |
| 1596 | |
| 1597 | err = -ENOENT; |
| 1598 | while (1) { |
| 1599 | if (ptr >= end) { |
| 1600 | WARN_ON(ptr > end); |
| 1601 | break; |
| 1602 | } |
| 1603 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1604 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1605 | if (want < type) |
| 1606 | break; |
| 1607 | if (want > type) { |
| 1608 | ptr += btrfs_extent_inline_ref_size(type); |
| 1609 | continue; |
| 1610 | } |
| 1611 | |
| 1612 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1613 | struct btrfs_extent_data_ref *dref; |
| 1614 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1615 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1616 | owner, offset)) { |
| 1617 | err = 0; |
| 1618 | break; |
| 1619 | } |
| 1620 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1621 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1622 | break; |
| 1623 | } else { |
| 1624 | u64 ref_offset; |
| 1625 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1626 | if (parent > 0) { |
| 1627 | if (parent == ref_offset) { |
| 1628 | err = 0; |
| 1629 | break; |
| 1630 | } |
| 1631 | if (ref_offset < parent) |
| 1632 | break; |
| 1633 | } else { |
| 1634 | if (root_objectid == ref_offset) { |
| 1635 | err = 0; |
| 1636 | break; |
| 1637 | } |
| 1638 | if (ref_offset < root_objectid) |
| 1639 | break; |
| 1640 | } |
| 1641 | } |
| 1642 | ptr += btrfs_extent_inline_ref_size(type); |
| 1643 | } |
| 1644 | if (err == -ENOENT && insert) { |
| 1645 | if (item_size + extra_size >= |
| 1646 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1647 | err = -EAGAIN; |
| 1648 | goto out; |
| 1649 | } |
| 1650 | /* |
| 1651 | * To add new inline back ref, we have to make sure |
| 1652 | * there is no corresponding back ref item. |
| 1653 | * For simplicity, we just do not add new inline back |
| 1654 | * ref if there is any kind of item for this block |
| 1655 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1656 | if (find_next_key(path, 0, &key) == 0 && |
| 1657 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1658 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1659 | err = -EAGAIN; |
| 1660 | goto out; |
| 1661 | } |
| 1662 | } |
| 1663 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1664 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1665 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1666 | path->keep_locks = 0; |
| 1667 | btrfs_unlock_up_safe(path, 1); |
| 1668 | } |
| 1669 | return err; |
| 1670 | } |
| 1671 | |
| 1672 | /* |
| 1673 | * helper to add new inline back ref |
| 1674 | */ |
| 1675 | static noinline_for_stack |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1676 | void setup_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1677 | struct btrfs_path *path, |
| 1678 | struct btrfs_extent_inline_ref *iref, |
| 1679 | u64 parent, u64 root_objectid, |
| 1680 | u64 owner, u64 offset, int refs_to_add, |
| 1681 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1682 | { |
| 1683 | struct extent_buffer *leaf; |
| 1684 | struct btrfs_extent_item *ei; |
| 1685 | unsigned long ptr; |
| 1686 | unsigned long end; |
| 1687 | unsigned long item_offset; |
| 1688 | u64 refs; |
| 1689 | int size; |
| 1690 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1691 | |
| 1692 | leaf = path->nodes[0]; |
| 1693 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1694 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1695 | |
| 1696 | type = extent_ref_type(parent, owner); |
| 1697 | size = btrfs_extent_inline_ref_size(type); |
| 1698 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1699 | btrfs_extend_item(root, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1700 | |
| 1701 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1702 | refs = btrfs_extent_refs(leaf, ei); |
| 1703 | refs += refs_to_add; |
| 1704 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1705 | if (extent_op) |
| 1706 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1707 | |
| 1708 | ptr = (unsigned long)ei + item_offset; |
| 1709 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1710 | if (ptr < end - size) |
| 1711 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1712 | end - size - ptr); |
| 1713 | |
| 1714 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1715 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1716 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1717 | struct btrfs_extent_data_ref *dref; |
| 1718 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1719 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1720 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1721 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1722 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1723 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1724 | struct btrfs_shared_data_ref *sref; |
| 1725 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1726 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1727 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1728 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1729 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1730 | } else { |
| 1731 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1732 | } |
| 1733 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1734 | } |
| 1735 | |
| 1736 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
| 1737 | struct btrfs_root *root, |
| 1738 | struct btrfs_path *path, |
| 1739 | struct btrfs_extent_inline_ref **ref_ret, |
| 1740 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1741 | u64 root_objectid, u64 owner, u64 offset) |
| 1742 | { |
| 1743 | int ret; |
| 1744 | |
| 1745 | ret = lookup_inline_extent_backref(trans, root, path, ref_ret, |
| 1746 | bytenr, num_bytes, parent, |
| 1747 | root_objectid, owner, offset, 0); |
| 1748 | if (ret != -ENOENT) |
| 1749 | return ret; |
| 1750 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1751 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1752 | *ref_ret = NULL; |
| 1753 | |
| 1754 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1755 | ret = lookup_tree_block_ref(trans, root, path, bytenr, parent, |
| 1756 | root_objectid); |
| 1757 | } else { |
| 1758 | ret = lookup_extent_data_ref(trans, root, path, bytenr, parent, |
| 1759 | root_objectid, owner, offset); |
| 1760 | } |
| 1761 | return ret; |
| 1762 | } |
| 1763 | |
| 1764 | /* |
| 1765 | * helper to update/remove inline back ref |
| 1766 | */ |
| 1767 | static noinline_for_stack |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1768 | void update_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1769 | struct btrfs_path *path, |
| 1770 | struct btrfs_extent_inline_ref *iref, |
| 1771 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1772 | struct btrfs_delayed_extent_op *extent_op, |
| 1773 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1774 | { |
| 1775 | struct extent_buffer *leaf; |
| 1776 | struct btrfs_extent_item *ei; |
| 1777 | struct btrfs_extent_data_ref *dref = NULL; |
| 1778 | struct btrfs_shared_data_ref *sref = NULL; |
| 1779 | unsigned long ptr; |
| 1780 | unsigned long end; |
| 1781 | u32 item_size; |
| 1782 | int size; |
| 1783 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1784 | u64 refs; |
| 1785 | |
| 1786 | leaf = path->nodes[0]; |
| 1787 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1788 | refs = btrfs_extent_refs(leaf, ei); |
| 1789 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1790 | refs += refs_to_mod; |
| 1791 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1792 | if (extent_op) |
| 1793 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1794 | |
| 1795 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1796 | |
| 1797 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1798 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1799 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1800 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1801 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1802 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1803 | } else { |
| 1804 | refs = 1; |
| 1805 | BUG_ON(refs_to_mod != -1); |
| 1806 | } |
| 1807 | |
| 1808 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1809 | refs += refs_to_mod; |
| 1810 | |
| 1811 | if (refs > 0) { |
| 1812 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1813 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1814 | else |
| 1815 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1816 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1817 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1818 | size = btrfs_extent_inline_ref_size(type); |
| 1819 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1820 | ptr = (unsigned long)iref; |
| 1821 | end = (unsigned long)ei + item_size; |
| 1822 | if (ptr + size < end) |
| 1823 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1824 | end - ptr - size); |
| 1825 | item_size -= size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1826 | btrfs_truncate_item(root, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1827 | } |
| 1828 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1829 | } |
| 1830 | |
| 1831 | static noinline_for_stack |
| 1832 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1833 | struct btrfs_root *root, |
| 1834 | struct btrfs_path *path, |
| 1835 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1836 | u64 root_objectid, u64 owner, |
| 1837 | u64 offset, int refs_to_add, |
| 1838 | struct btrfs_delayed_extent_op *extent_op) |
| 1839 | { |
| 1840 | struct btrfs_extent_inline_ref *iref; |
| 1841 | int ret; |
| 1842 | |
| 1843 | ret = lookup_inline_extent_backref(trans, root, path, &iref, |
| 1844 | bytenr, num_bytes, parent, |
| 1845 | root_objectid, owner, offset, 1); |
| 1846 | if (ret == 0) { |
| 1847 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1848 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1849 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1850 | } else if (ret == -ENOENT) { |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1851 | setup_inline_extent_backref(root, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1852 | root_objectid, owner, offset, |
| 1853 | refs_to_add, extent_op); |
| 1854 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1855 | } |
| 1856 | return ret; |
| 1857 | } |
| 1858 | |
| 1859 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
| 1860 | struct btrfs_root *root, |
| 1861 | struct btrfs_path *path, |
| 1862 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1863 | u64 owner, u64 offset, int refs_to_add) |
| 1864 | { |
| 1865 | int ret; |
| 1866 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1867 | BUG_ON(refs_to_add != 1); |
| 1868 | ret = insert_tree_block_ref(trans, root, path, bytenr, |
| 1869 | parent, root_objectid); |
| 1870 | } else { |
| 1871 | ret = insert_extent_data_ref(trans, root, path, bytenr, |
| 1872 | parent, root_objectid, |
| 1873 | owner, offset, refs_to_add); |
| 1874 | } |
| 1875 | return ret; |
| 1876 | } |
| 1877 | |
| 1878 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
| 1879 | struct btrfs_root *root, |
| 1880 | struct btrfs_path *path, |
| 1881 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1882 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1883 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1884 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1885 | |
| 1886 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1887 | if (iref) { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1888 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1889 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1890 | } else if (is_data) { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1891 | ret = remove_extent_data_ref(trans, root, path, refs_to_drop, |
| 1892 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1893 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1894 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1895 | ret = btrfs_del_item(trans, root, path); |
| 1896 | } |
| 1897 | return ret; |
| 1898 | } |
| 1899 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1900 | static int btrfs_issue_discard(struct block_device *bdev, |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1901 | u64 start, u64 len) |
| 1902 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1903 | return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0); |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1904 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1905 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1906 | static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1907 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1908 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1909 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1910 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1911 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1912 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 1913 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1914 | /* Tell the block device(s) that the sectors can be discarded */ |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 1915 | ret = btrfs_map_block(root->fs_info, REQ_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1916 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1917 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1918 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1919 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1920 | int i; |
| 1921 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1922 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1923 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1924 | if (!stripe->dev->can_discard) |
| 1925 | continue; |
| 1926 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1927 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 1928 | stripe->physical, |
| 1929 | stripe->length); |
| 1930 | if (!ret) |
| 1931 | discarded_bytes += stripe->length; |
| 1932 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1933 | 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] | 1934 | |
| 1935 | /* |
| 1936 | * Just in case we get back EOPNOTSUPP for some reason, |
| 1937 | * just ignore the return value so we don't screw up |
| 1938 | * people calling discard_extent. |
| 1939 | */ |
| 1940 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1941 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1942 | kfree(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1943 | } |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1944 | |
| 1945 | if (actual_bytes) |
| 1946 | *actual_bytes = discarded_bytes; |
| 1947 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1948 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1949 | if (ret == -EOPNOTSUPP) |
| 1950 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1951 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1952 | } |
| 1953 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1954 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1955 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 1956 | struct btrfs_root *root, |
| 1957 | u64 bytenr, u64 num_bytes, u64 parent, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1958 | u64 root_objectid, u64 owner, u64 offset, |
| 1959 | int no_quota) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1960 | { |
| 1961 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1962 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1963 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1964 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 1965 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1966 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1967 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1968 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 1969 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1970 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1971 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1972 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1973 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 1974 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1975 | parent, root_objectid, owner, offset, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1976 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1977 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1978 | return ret; |
| 1979 | } |
| 1980 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1981 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1982 | struct btrfs_root *root, |
| 1983 | u64 bytenr, u64 num_bytes, |
| 1984 | u64 parent, u64 root_objectid, |
| 1985 | u64 owner, u64 offset, int refs_to_add, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1986 | int no_quota, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1987 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1988 | { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1989 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1990 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1991 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1992 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1993 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1994 | u64 refs; |
| 1995 | int ret; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1996 | enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_ADD_EXCL; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 1997 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1998 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1999 | if (!path) |
| 2000 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2001 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2002 | if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled) |
| 2003 | no_quota = 1; |
| 2004 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2005 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2006 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2007 | /* 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] | 2008 | ret = insert_inline_extent_backref(trans, fs_info->extent_root, path, |
| 2009 | bytenr, num_bytes, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2010 | root_objectid, owner, offset, |
| 2011 | refs_to_add, extent_op); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2012 | if ((ret < 0 && ret != -EAGAIN) || (!ret && no_quota)) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2013 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2014 | /* |
| 2015 | * Ok we were able to insert an inline extent and it appears to be a new |
| 2016 | * reference, deal with the qgroup accounting. |
| 2017 | */ |
| 2018 | if (!ret && !no_quota) { |
| 2019 | ASSERT(root->fs_info->quota_enabled); |
| 2020 | leaf = path->nodes[0]; |
| 2021 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2022 | item = btrfs_item_ptr(leaf, path->slots[0], |
| 2023 | struct btrfs_extent_item); |
| 2024 | if (btrfs_extent_refs(leaf, item) > (u64)refs_to_add) |
| 2025 | type = BTRFS_QGROUP_OPER_ADD_SHARED; |
| 2026 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2027 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2028 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 2029 | bytenr, num_bytes, type, 0); |
| 2030 | goto out; |
| 2031 | } |
| 2032 | |
| 2033 | /* |
| 2034 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2035 | * inline extent ref, so just update the reference count and add a |
| 2036 | * normal backref. |
| 2037 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2038 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2039 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2040 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2041 | refs = btrfs_extent_refs(leaf, item); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2042 | if (refs) |
| 2043 | type = BTRFS_QGROUP_OPER_ADD_SHARED; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2044 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2045 | if (extent_op) |
| 2046 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2047 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2048 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2049 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2050 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2051 | if (!no_quota) { |
| 2052 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 2053 | bytenr, num_bytes, type, 0); |
| 2054 | if (ret) |
| 2055 | goto out; |
| 2056 | } |
| 2057 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2058 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2059 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2060 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2061 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2062 | path, bytenr, parent, root_objectid, |
| 2063 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2064 | if (ret) |
| 2065 | btrfs_abort_transaction(trans, root, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2066 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2067 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2068 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2069 | } |
| 2070 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2071 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2072 | struct btrfs_root *root, |
| 2073 | struct btrfs_delayed_ref_node *node, |
| 2074 | struct btrfs_delayed_extent_op *extent_op, |
| 2075 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2076 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2077 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2078 | struct btrfs_delayed_data_ref *ref; |
| 2079 | struct btrfs_key ins; |
| 2080 | u64 parent = 0; |
| 2081 | u64 ref_root = 0; |
| 2082 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2083 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2084 | ins.objectid = node->bytenr; |
| 2085 | ins.offset = node->num_bytes; |
| 2086 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2087 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2088 | ref = btrfs_delayed_node_to_data_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2089 | trace_run_delayed_data_ref(node, ref, node->action); |
| 2090 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2091 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2092 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2093 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2094 | |
| 2095 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2096 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2097 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2098 | ret = alloc_reserved_file_extent(trans, root, |
| 2099 | parent, ref_root, flags, |
| 2100 | ref->objectid, ref->offset, |
| 2101 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2102 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2103 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2104 | node->num_bytes, parent, |
| 2105 | ref_root, ref->objectid, |
| 2106 | ref->offset, node->ref_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2107 | node->no_quota, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2108 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2109 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2110 | node->num_bytes, parent, |
| 2111 | ref_root, ref->objectid, |
| 2112 | ref->offset, node->ref_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2113 | extent_op, node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2114 | } else { |
| 2115 | BUG(); |
| 2116 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2117 | return ret; |
| 2118 | } |
| 2119 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2120 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2121 | struct extent_buffer *leaf, |
| 2122 | struct btrfs_extent_item *ei) |
| 2123 | { |
| 2124 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2125 | if (extent_op->update_flags) { |
| 2126 | flags |= extent_op->flags_to_set; |
| 2127 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2128 | } |
| 2129 | |
| 2130 | if (extent_op->update_key) { |
| 2131 | struct btrfs_tree_block_info *bi; |
| 2132 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2133 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2134 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2135 | } |
| 2136 | } |
| 2137 | |
| 2138 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2139 | struct btrfs_root *root, |
| 2140 | struct btrfs_delayed_ref_node *node, |
| 2141 | struct btrfs_delayed_extent_op *extent_op) |
| 2142 | { |
| 2143 | struct btrfs_key key; |
| 2144 | struct btrfs_path *path; |
| 2145 | struct btrfs_extent_item *ei; |
| 2146 | struct extent_buffer *leaf; |
| 2147 | u32 item_size; |
| 2148 | int ret; |
| 2149 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2150 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2151 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2152 | if (trans->aborted) |
| 2153 | return 0; |
| 2154 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2155 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2156 | metadata = 0; |
| 2157 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2158 | path = btrfs_alloc_path(); |
| 2159 | if (!path) |
| 2160 | return -ENOMEM; |
| 2161 | |
| 2162 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2163 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2164 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2165 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2166 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2167 | } else { |
| 2168 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2169 | key.offset = node->num_bytes; |
| 2170 | } |
| 2171 | |
| 2172 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2173 | path->reada = 1; |
| 2174 | path->leave_spinning = 1; |
| 2175 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2176 | path, 0, 1); |
| 2177 | if (ret < 0) { |
| 2178 | err = ret; |
| 2179 | goto out; |
| 2180 | } |
| 2181 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2182 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2183 | if (path->slots[0] > 0) { |
| 2184 | path->slots[0]--; |
| 2185 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2186 | path->slots[0]); |
| 2187 | if (key.objectid == node->bytenr && |
| 2188 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2189 | key.offset == node->num_bytes) |
| 2190 | ret = 0; |
| 2191 | } |
| 2192 | if (ret > 0) { |
| 2193 | btrfs_release_path(path); |
| 2194 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2195 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2196 | key.objectid = node->bytenr; |
| 2197 | key.offset = node->num_bytes; |
| 2198 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2199 | goto again; |
| 2200 | } |
| 2201 | } else { |
| 2202 | err = -EIO; |
| 2203 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2204 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2205 | } |
| 2206 | |
| 2207 | leaf = path->nodes[0]; |
| 2208 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2209 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2210 | if (item_size < sizeof(*ei)) { |
| 2211 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2212 | path, (u64)-1, 0); |
| 2213 | if (ret < 0) { |
| 2214 | err = ret; |
| 2215 | goto out; |
| 2216 | } |
| 2217 | leaf = path->nodes[0]; |
| 2218 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2219 | } |
| 2220 | #endif |
| 2221 | BUG_ON(item_size < sizeof(*ei)); |
| 2222 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2223 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2224 | |
| 2225 | btrfs_mark_buffer_dirty(leaf); |
| 2226 | out: |
| 2227 | btrfs_free_path(path); |
| 2228 | return err; |
| 2229 | } |
| 2230 | |
| 2231 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2232 | struct btrfs_root *root, |
| 2233 | struct btrfs_delayed_ref_node *node, |
| 2234 | struct btrfs_delayed_extent_op *extent_op, |
| 2235 | int insert_reserved) |
| 2236 | { |
| 2237 | int ret = 0; |
| 2238 | struct btrfs_delayed_tree_ref *ref; |
| 2239 | struct btrfs_key ins; |
| 2240 | u64 parent = 0; |
| 2241 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2242 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2243 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2244 | |
| 2245 | ref = btrfs_delayed_node_to_tree_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2246 | trace_run_delayed_tree_ref(node, ref, node->action); |
| 2247 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2248 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2249 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2250 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2251 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2252 | ins.objectid = node->bytenr; |
| 2253 | if (skinny_metadata) { |
| 2254 | ins.offset = ref->level; |
| 2255 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2256 | } else { |
| 2257 | ins.offset = node->num_bytes; |
| 2258 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2259 | } |
| 2260 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2261 | BUG_ON(node->ref_mod != 1); |
| 2262 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2263 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2264 | ret = alloc_reserved_tree_block(trans, root, |
| 2265 | parent, ref_root, |
| 2266 | extent_op->flags_to_set, |
| 2267 | &extent_op->key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2268 | ref->level, &ins, |
| 2269 | node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2270 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2271 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2272 | node->num_bytes, parent, ref_root, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2273 | ref->level, 0, 1, node->no_quota, |
| 2274 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2275 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2276 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2277 | node->num_bytes, parent, ref_root, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2278 | ref->level, 0, 1, extent_op, |
| 2279 | node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2280 | } else { |
| 2281 | BUG(); |
| 2282 | } |
| 2283 | return ret; |
| 2284 | } |
| 2285 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2286 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2287 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2288 | struct btrfs_root *root, |
| 2289 | struct btrfs_delayed_ref_node *node, |
| 2290 | struct btrfs_delayed_extent_op *extent_op, |
| 2291 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2292 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2293 | int ret = 0; |
| 2294 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2295 | if (trans->aborted) { |
| 2296 | if (insert_reserved) |
| 2297 | btrfs_pin_extent(root, node->bytenr, |
| 2298 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2299 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2300 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2301 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2302 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2303 | struct btrfs_delayed_ref_head *head; |
| 2304 | /* |
| 2305 | * we've hit the end of the chain and we were supposed |
| 2306 | * to insert this extent into the tree. But, it got |
| 2307 | * deleted before we ever needed to insert it, so all |
| 2308 | * we have to do is clean up the accounting |
| 2309 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2310 | BUG_ON(extent_op); |
| 2311 | head = btrfs_delayed_node_to_head(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2312 | trace_run_delayed_ref_head(node, head, node->action); |
| 2313 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2314 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2315 | btrfs_pin_extent(root, node->bytenr, |
| 2316 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2317 | if (head->is_data) { |
| 2318 | ret = btrfs_del_csums(trans, root, |
| 2319 | node->bytenr, |
| 2320 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2321 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2322 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2323 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2324 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2325 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2326 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2327 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2328 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2329 | insert_reserved); |
| 2330 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2331 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2332 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2333 | insert_reserved); |
| 2334 | else |
| 2335 | BUG(); |
| 2336 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2337 | } |
| 2338 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2339 | static noinline struct btrfs_delayed_ref_node * |
| 2340 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2341 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2342 | struct rb_node *node; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2343 | struct btrfs_delayed_ref_node *ref, *last = NULL;; |
| 2344 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2345 | /* |
| 2346 | * select delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2347 | * this prevents ref count from going down to zero when |
| 2348 | * there still are pending delayed ref. |
| 2349 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2350 | node = rb_first(&head->ref_root); |
| 2351 | while (node) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2352 | ref = rb_entry(node, struct btrfs_delayed_ref_node, |
| 2353 | rb_node); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2354 | if (ref->action == BTRFS_ADD_DELAYED_REF) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2355 | return ref; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2356 | else if (last == NULL) |
| 2357 | last = ref; |
| 2358 | node = rb_next(node); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2359 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2360 | return last; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2361 | } |
| 2362 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2363 | /* |
| 2364 | * Returns 0 on success or if called with an already aborted transaction. |
| 2365 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2366 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2367 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2368 | struct btrfs_root *root, |
| 2369 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2370 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2371 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2372 | struct btrfs_delayed_ref_node *ref; |
| 2373 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2374 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2375 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2376 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2377 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2378 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2379 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2380 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2381 | |
| 2382 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2383 | while (1) { |
| 2384 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2385 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2386 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2387 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2388 | spin_lock(&delayed_refs->lock); |
| 2389 | locked_ref = btrfs_select_ref_head(trans); |
| 2390 | if (!locked_ref) { |
| 2391 | spin_unlock(&delayed_refs->lock); |
| 2392 | break; |
| 2393 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2394 | |
| 2395 | /* grab the lock that says we are going to process |
| 2396 | * all the refs for this head */ |
| 2397 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2398 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2399 | /* |
| 2400 | * we may have dropped the spin lock to get the head |
| 2401 | * mutex lock, and that might have given someone else |
| 2402 | * time to free the head. If that's true, it has been |
| 2403 | * removed from our list and we can move on. |
| 2404 | */ |
| 2405 | if (ret == -EAGAIN) { |
| 2406 | locked_ref = NULL; |
| 2407 | count++; |
| 2408 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2409 | } |
| 2410 | } |
| 2411 | |
| 2412 | /* |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2413 | * We need to try and merge add/drops of the same ref since we |
| 2414 | * can run into issues with relocate dropping the implicit ref |
| 2415 | * and then it being added back again before the drop can |
| 2416 | * finish. If we merged anything we need to re-loop so we can |
| 2417 | * get a good ref. |
| 2418 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2419 | spin_lock(&locked_ref->lock); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2420 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2421 | locked_ref); |
| 2422 | |
| 2423 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2424 | * locked_ref is the head node, so we have to go one |
| 2425 | * node back for any delayed ref updates |
| 2426 | */ |
| 2427 | ref = select_delayed_ref(locked_ref); |
| 2428 | |
| 2429 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2430 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2431 | spin_unlock(&locked_ref->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2432 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2433 | spin_lock(&delayed_refs->lock); |
| 2434 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2435 | delayed_refs->num_heads_ready++; |
| 2436 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2437 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2438 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2439 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2440 | continue; |
| 2441 | } |
| 2442 | |
| 2443 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2444 | * record the must insert reserved flag before we |
| 2445 | * drop the spin lock. |
| 2446 | */ |
| 2447 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2448 | locked_ref->must_insert_reserved = 0; |
| 2449 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2450 | extent_op = locked_ref->extent_op; |
| 2451 | locked_ref->extent_op = NULL; |
| 2452 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2453 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2454 | |
| 2455 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2456 | /* All delayed refs have been processed, Go ahead |
| 2457 | * and send the head node to run_one_delayed_ref, |
| 2458 | * so that any accounting fixes can happen |
| 2459 | */ |
| 2460 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2461 | |
| 2462 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2463 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2464 | extent_op = NULL; |
| 2465 | } |
| 2466 | |
| 2467 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2468 | spin_unlock(&locked_ref->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2469 | ret = run_delayed_extent_op(trans, root, |
| 2470 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2471 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2472 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2473 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2474 | /* |
| 2475 | * Need to reset must_insert_reserved if |
| 2476 | * there was an error so the abort stuff |
| 2477 | * can cleanup the reserved space |
| 2478 | * properly. |
| 2479 | */ |
| 2480 | if (must_insert_reserved) |
| 2481 | locked_ref->must_insert_reserved = 1; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2482 | locked_ref->processing = 0; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2483 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2484 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2485 | return ret; |
| 2486 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2487 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2488 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2489 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2490 | /* |
| 2491 | * Need to drop our head ref lock and re-aqcuire the |
| 2492 | * delayed ref lock and then re-check to make sure |
| 2493 | * nobody got added. |
| 2494 | */ |
| 2495 | spin_unlock(&locked_ref->lock); |
| 2496 | spin_lock(&delayed_refs->lock); |
| 2497 | spin_lock(&locked_ref->lock); |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2498 | if (rb_first(&locked_ref->ref_root) || |
| 2499 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2500 | spin_unlock(&locked_ref->lock); |
| 2501 | spin_unlock(&delayed_refs->lock); |
| 2502 | continue; |
| 2503 | } |
| 2504 | ref->in_tree = 0; |
| 2505 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2506 | rb_erase(&locked_ref->href_node, |
| 2507 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2508 | spin_unlock(&delayed_refs->lock); |
| 2509 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2510 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2511 | ref->in_tree = 0; |
| 2512 | rb_erase(&ref->rb_node, &locked_ref->ref_root); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2513 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2514 | atomic_dec(&delayed_refs->num_entries); |
| 2515 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2516 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2517 | /* |
| 2518 | * when we play the delayed ref, also correct the |
| 2519 | * ref_mod on head |
| 2520 | */ |
| 2521 | switch (ref->action) { |
| 2522 | case BTRFS_ADD_DELAYED_REF: |
| 2523 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2524 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2525 | break; |
| 2526 | case BTRFS_DROP_DELAYED_REF: |
| 2527 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2528 | break; |
| 2529 | default: |
| 2530 | WARN_ON(1); |
| 2531 | } |
| 2532 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2533 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2534 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2535 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2536 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2537 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2538 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2539 | if (ret) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2540 | locked_ref->processing = 0; |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2541 | btrfs_delayed_ref_unlock(locked_ref); |
| 2542 | btrfs_put_delayed_ref(ref); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2543 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2544 | return ret; |
| 2545 | } |
| 2546 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2547 | /* |
| 2548 | * If this node is a head, that means all the refs in this head |
| 2549 | * have been dealt with, and we will pick the next head to deal |
| 2550 | * with, so we must unlock the head and drop it from the cluster |
| 2551 | * list before we release it. |
| 2552 | */ |
| 2553 | if (btrfs_delayed_ref_is_head(ref)) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2554 | btrfs_delayed_ref_unlock(locked_ref); |
| 2555 | locked_ref = NULL; |
| 2556 | } |
| 2557 | btrfs_put_delayed_ref(ref); |
| 2558 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2559 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2560 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2561 | |
| 2562 | /* |
| 2563 | * We don't want to include ref heads since we can have empty ref heads |
| 2564 | * and those will drastically skew our runtime down since we just do |
| 2565 | * accounting, no actual extent tree updates. |
| 2566 | */ |
| 2567 | if (actual_count > 0) { |
| 2568 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2569 | u64 avg; |
| 2570 | |
| 2571 | /* |
| 2572 | * We weigh the current average higher than our current runtime |
| 2573 | * to avoid large swings in the average. |
| 2574 | */ |
| 2575 | spin_lock(&delayed_refs->lock); |
| 2576 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
| 2577 | avg = div64_u64(avg, 4); |
| 2578 | fs_info->avg_delayed_ref_runtime = avg; |
| 2579 | spin_unlock(&delayed_refs->lock); |
| 2580 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2581 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2582 | } |
| 2583 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2584 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2585 | /* |
| 2586 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2587 | * correlates in most cases to the order added. To expose dependencies on this |
| 2588 | * order, we start to process the tree in the middle instead of the beginning |
| 2589 | */ |
| 2590 | static u64 find_middle(struct rb_root *root) |
| 2591 | { |
| 2592 | struct rb_node *n = root->rb_node; |
| 2593 | struct btrfs_delayed_ref_node *entry; |
| 2594 | int alt = 1; |
| 2595 | u64 middle; |
| 2596 | u64 first = 0, last = 0; |
| 2597 | |
| 2598 | n = rb_first(root); |
| 2599 | if (n) { |
| 2600 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2601 | first = entry->bytenr; |
| 2602 | } |
| 2603 | n = rb_last(root); |
| 2604 | if (n) { |
| 2605 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2606 | last = entry->bytenr; |
| 2607 | } |
| 2608 | n = root->rb_node; |
| 2609 | |
| 2610 | while (n) { |
| 2611 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2612 | WARN_ON(!entry->in_tree); |
| 2613 | |
| 2614 | middle = entry->bytenr; |
| 2615 | |
| 2616 | if (alt) |
| 2617 | n = n->rb_left; |
| 2618 | else |
| 2619 | n = n->rb_right; |
| 2620 | |
| 2621 | alt = 1 - alt; |
| 2622 | } |
| 2623 | return middle; |
| 2624 | } |
| 2625 | #endif |
| 2626 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2627 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2628 | { |
| 2629 | u64 num_bytes; |
| 2630 | |
| 2631 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2632 | sizeof(struct btrfs_extent_inline_ref)); |
| 2633 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2634 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2635 | |
| 2636 | /* |
| 2637 | * We don't ever fill up leaves all the way so multiply by 2 just to be |
| 2638 | * closer to what we're really going to want to ouse. |
| 2639 | */ |
| 2640 | return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root)); |
| 2641 | } |
| 2642 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2643 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2644 | struct btrfs_root *root) |
| 2645 | { |
| 2646 | struct btrfs_block_rsv *global_rsv; |
| 2647 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
| 2648 | u64 num_bytes; |
| 2649 | int ret = 0; |
| 2650 | |
| 2651 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 2652 | num_heads = heads_to_leaves(root, num_heads); |
| 2653 | if (num_heads > 1) |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 2654 | num_bytes += (num_heads - 1) * root->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2655 | num_bytes <<= 1; |
| 2656 | global_rsv = &root->fs_info->global_block_rsv; |
| 2657 | |
| 2658 | /* |
| 2659 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2660 | * wiggle room since running delayed refs can create more delayed refs. |
| 2661 | */ |
| 2662 | if (global_rsv->space_info->full) |
| 2663 | num_bytes <<= 1; |
| 2664 | |
| 2665 | spin_lock(&global_rsv->lock); |
| 2666 | if (global_rsv->reserved <= num_bytes) |
| 2667 | ret = 1; |
| 2668 | spin_unlock(&global_rsv->lock); |
| 2669 | return ret; |
| 2670 | } |
| 2671 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2672 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2673 | struct btrfs_root *root) |
| 2674 | { |
| 2675 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2676 | u64 num_entries = |
| 2677 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2678 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2679 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2680 | |
| 2681 | smp_mb(); |
| 2682 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2683 | val = num_entries * avg_runtime; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2684 | if (num_entries * avg_runtime >= NSEC_PER_SEC) |
| 2685 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2686 | if (val >= NSEC_PER_SEC / 2) |
| 2687 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2688 | |
| 2689 | return btrfs_check_space_for_delayed_refs(trans, root); |
| 2690 | } |
| 2691 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2692 | struct async_delayed_refs { |
| 2693 | struct btrfs_root *root; |
| 2694 | int count; |
| 2695 | int error; |
| 2696 | int sync; |
| 2697 | struct completion wait; |
| 2698 | struct btrfs_work work; |
| 2699 | }; |
| 2700 | |
| 2701 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2702 | { |
| 2703 | struct async_delayed_refs *async; |
| 2704 | struct btrfs_trans_handle *trans; |
| 2705 | int ret; |
| 2706 | |
| 2707 | async = container_of(work, struct async_delayed_refs, work); |
| 2708 | |
| 2709 | trans = btrfs_join_transaction(async->root); |
| 2710 | if (IS_ERR(trans)) { |
| 2711 | async->error = PTR_ERR(trans); |
| 2712 | goto done; |
| 2713 | } |
| 2714 | |
| 2715 | /* |
| 2716 | * trans->sync means that when we call end_transaciton, we won't |
| 2717 | * wait on delayed refs |
| 2718 | */ |
| 2719 | trans->sync = true; |
| 2720 | ret = btrfs_run_delayed_refs(trans, async->root, async->count); |
| 2721 | if (ret) |
| 2722 | async->error = ret; |
| 2723 | |
| 2724 | ret = btrfs_end_transaction(trans, async->root); |
| 2725 | if (ret && !async->error) |
| 2726 | async->error = ret; |
| 2727 | done: |
| 2728 | if (async->sync) |
| 2729 | complete(&async->wait); |
| 2730 | else |
| 2731 | kfree(async); |
| 2732 | } |
| 2733 | |
| 2734 | int btrfs_async_run_delayed_refs(struct btrfs_root *root, |
| 2735 | unsigned long count, int wait) |
| 2736 | { |
| 2737 | struct async_delayed_refs *async; |
| 2738 | int ret; |
| 2739 | |
| 2740 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2741 | if (!async) |
| 2742 | return -ENOMEM; |
| 2743 | |
| 2744 | async->root = root->fs_info->tree_root; |
| 2745 | async->count = count; |
| 2746 | async->error = 0; |
| 2747 | if (wait) |
| 2748 | async->sync = 1; |
| 2749 | else |
| 2750 | async->sync = 0; |
| 2751 | init_completion(&async->wait); |
| 2752 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2753 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2754 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2755 | |
| 2756 | btrfs_queue_work(root->fs_info->extent_workers, &async->work); |
| 2757 | |
| 2758 | if (wait) { |
| 2759 | wait_for_completion(&async->wait); |
| 2760 | ret = async->error; |
| 2761 | kfree(async); |
| 2762 | return ret; |
| 2763 | } |
| 2764 | return 0; |
| 2765 | } |
| 2766 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2767 | /* |
| 2768 | * this starts processing the delayed reference count updates and |
| 2769 | * extent insertions we have queued up so far. count can be |
| 2770 | * 0, which means to process everything in the tree at the start |
| 2771 | * of the run (but not newly added entries), or it can be some target |
| 2772 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2773 | * |
| 2774 | * Returns 0 on success or if called with an aborted transaction |
| 2775 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2776 | */ |
| 2777 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2778 | struct btrfs_root *root, unsigned long count) |
| 2779 | { |
| 2780 | struct rb_node *node; |
| 2781 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2782 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2783 | int ret; |
| 2784 | int run_all = count == (unsigned long)-1; |
| 2785 | int run_most = 0; |
| 2786 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2787 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2788 | if (trans->aborted) |
| 2789 | return 0; |
| 2790 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2791 | if (root == root->fs_info->extent_root) |
| 2792 | root = root->fs_info->tree_root; |
| 2793 | |
| 2794 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2795 | if (count == 0) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2796 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2797 | run_most = 1; |
| 2798 | } |
| 2799 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2800 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2801 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2802 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2803 | #endif |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2804 | ret = __btrfs_run_delayed_refs(trans, root, count); |
| 2805 | if (ret < 0) { |
| 2806 | btrfs_abort_transaction(trans, root, ret); |
| 2807 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2808 | } |
| 2809 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2810 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2811 | if (!list_empty(&trans->new_bgs)) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2812 | btrfs_create_pending_block_groups(trans, root); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2813 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2814 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2815 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2816 | if (!node) { |
| 2817 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2818 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2819 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2820 | count = (unsigned long)-1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2821 | |
| 2822 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2823 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2824 | href_node); |
| 2825 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2826 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2827 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2828 | ref = &head->node; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2829 | atomic_inc(&ref->refs); |
| 2830 | |
| 2831 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2832 | /* |
| 2833 | * Mutex was contended, block until it's |
| 2834 | * released and try again |
| 2835 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2836 | mutex_lock(&head->mutex); |
| 2837 | mutex_unlock(&head->mutex); |
| 2838 | |
| 2839 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2840 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2841 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2842 | } else { |
| 2843 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2844 | } |
| 2845 | node = rb_next(node); |
| 2846 | } |
| 2847 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2848 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2849 | goto again; |
| 2850 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2851 | out: |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2852 | ret = btrfs_delayed_qgroup_accounting(trans, root->fs_info); |
| 2853 | if (ret) |
| 2854 | return ret; |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2855 | assert_qgroups_uptodate(trans); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2856 | return 0; |
| 2857 | } |
| 2858 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2859 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 2860 | struct btrfs_root *root, |
| 2861 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2862 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2863 | { |
| 2864 | struct btrfs_delayed_extent_op *extent_op; |
| 2865 | int ret; |
| 2866 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2867 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2868 | if (!extent_op) |
| 2869 | return -ENOMEM; |
| 2870 | |
| 2871 | extent_op->flags_to_set = flags; |
| 2872 | extent_op->update_flags = 1; |
| 2873 | extent_op->update_key = 0; |
| 2874 | extent_op->is_data = is_data ? 1 : 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2875 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2876 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2877 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 2878 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2879 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2880 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2881 | return ret; |
| 2882 | } |
| 2883 | |
| 2884 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 2885 | struct btrfs_root *root, |
| 2886 | struct btrfs_path *path, |
| 2887 | u64 objectid, u64 offset, u64 bytenr) |
| 2888 | { |
| 2889 | struct btrfs_delayed_ref_head *head; |
| 2890 | struct btrfs_delayed_ref_node *ref; |
| 2891 | struct btrfs_delayed_data_ref *data_ref; |
| 2892 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2893 | struct rb_node *node; |
| 2894 | int ret = 0; |
| 2895 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2896 | delayed_refs = &trans->transaction->delayed_refs; |
| 2897 | spin_lock(&delayed_refs->lock); |
| 2898 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2899 | if (!head) { |
| 2900 | spin_unlock(&delayed_refs->lock); |
| 2901 | return 0; |
| 2902 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2903 | |
| 2904 | if (!mutex_trylock(&head->mutex)) { |
| 2905 | atomic_inc(&head->node.refs); |
| 2906 | spin_unlock(&delayed_refs->lock); |
| 2907 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2908 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2909 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2910 | /* |
| 2911 | * Mutex was contended, block until it's released and let |
| 2912 | * caller try again |
| 2913 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2914 | mutex_lock(&head->mutex); |
| 2915 | mutex_unlock(&head->mutex); |
| 2916 | btrfs_put_delayed_ref(&head->node); |
| 2917 | return -EAGAIN; |
| 2918 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2919 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2920 | |
| 2921 | spin_lock(&head->lock); |
| 2922 | node = rb_first(&head->ref_root); |
| 2923 | while (node) { |
| 2924 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
| 2925 | node = rb_next(node); |
| 2926 | |
| 2927 | /* If it's a shared ref we know a cross reference exists */ |
| 2928 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 2929 | ret = 1; |
| 2930 | break; |
| 2931 | } |
| 2932 | |
| 2933 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 2934 | |
| 2935 | /* |
| 2936 | * If our ref doesn't match the one we're currently looking at |
| 2937 | * then we have a cross reference. |
| 2938 | */ |
| 2939 | if (data_ref->root != root->root_key.objectid || |
| 2940 | data_ref->objectid != objectid || |
| 2941 | data_ref->offset != offset) { |
| 2942 | ret = 1; |
| 2943 | break; |
| 2944 | } |
| 2945 | } |
| 2946 | spin_unlock(&head->lock); |
| 2947 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2948 | return ret; |
| 2949 | } |
| 2950 | |
| 2951 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 2952 | struct btrfs_root *root, |
| 2953 | struct btrfs_path *path, |
| 2954 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2955 | { |
| 2956 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2957 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2958 | struct btrfs_extent_data_ref *ref; |
| 2959 | struct btrfs_extent_inline_ref *iref; |
| 2960 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2961 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2962 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2963 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2964 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2965 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2966 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2967 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2968 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2969 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 2970 | if (ret < 0) |
| 2971 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2972 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 2973 | |
| 2974 | ret = -ENOENT; |
| 2975 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2976 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2977 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2978 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2979 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2980 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2981 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2982 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2983 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2984 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2985 | ret = 1; |
| 2986 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2987 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2988 | if (item_size < sizeof(*ei)) { |
| 2989 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 2990 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2991 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2992 | #endif |
| 2993 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2994 | |
| 2995 | if (item_size != sizeof(*ei) + |
| 2996 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 2997 | goto out; |
| 2998 | |
| 2999 | if (btrfs_extent_generation(leaf, ei) <= |
| 3000 | btrfs_root_last_snapshot(&root->root_item)) |
| 3001 | goto out; |
| 3002 | |
| 3003 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 3004 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 3005 | BTRFS_EXTENT_DATA_REF_KEY) |
| 3006 | goto out; |
| 3007 | |
| 3008 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3009 | if (btrfs_extent_refs(leaf, ei) != |
| 3010 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3011 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3012 | root->root_key.objectid || |
| 3013 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3014 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3015 | goto out; |
| 3016 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3017 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3018 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3019 | return ret; |
| 3020 | } |
| 3021 | |
| 3022 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 3023 | struct btrfs_root *root, |
| 3024 | u64 objectid, u64 offset, u64 bytenr) |
| 3025 | { |
| 3026 | struct btrfs_path *path; |
| 3027 | int ret; |
| 3028 | int ret2; |
| 3029 | |
| 3030 | path = btrfs_alloc_path(); |
| 3031 | if (!path) |
| 3032 | return -ENOENT; |
| 3033 | |
| 3034 | do { |
| 3035 | ret = check_committed_ref(trans, root, path, objectid, |
| 3036 | offset, bytenr); |
| 3037 | if (ret && ret != -ENOENT) |
| 3038 | goto out; |
| 3039 | |
| 3040 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3041 | offset, bytenr); |
| 3042 | } while (ret2 == -EAGAIN); |
| 3043 | |
| 3044 | if (ret2 && ret2 != -ENOENT) { |
| 3045 | ret = ret2; |
| 3046 | goto out; |
| 3047 | } |
| 3048 | |
| 3049 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3050 | ret = 0; |
| 3051 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3052 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3053 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3054 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3055 | return ret; |
| 3056 | } |
| 3057 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3058 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3059 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3060 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3061 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3062 | { |
| 3063 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3064 | u64 num_bytes; |
| 3065 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3066 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3067 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3068 | struct btrfs_key key; |
| 3069 | struct btrfs_file_extent_item *fi; |
| 3070 | int i; |
| 3071 | int level; |
| 3072 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3073 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3074 | u64, u64, u64, u64, u64, u64, int); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3075 | |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3076 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
| 3077 | if (unlikely(test_bit(BTRFS_ROOT_DUMMY_ROOT, &root->state))) |
| 3078 | return 0; |
| 3079 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3080 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3081 | nritems = btrfs_header_nritems(buf); |
| 3082 | level = btrfs_header_level(buf); |
| 3083 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3084 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3085 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3086 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3087 | if (inc) |
| 3088 | process_func = btrfs_inc_extent_ref; |
| 3089 | else |
| 3090 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3091 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3092 | if (full_backref) |
| 3093 | parent = buf->start; |
| 3094 | else |
| 3095 | parent = 0; |
| 3096 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3097 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3098 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3099 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3100 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3101 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3102 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3103 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3104 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3105 | BTRFS_FILE_EXTENT_INLINE) |
| 3106 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3107 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3108 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3109 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3110 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3111 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3112 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3113 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3114 | parent, ref_root, key.objectid, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3115 | key.offset, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3116 | if (ret) |
| 3117 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3118 | } else { |
| 3119 | bytenr = btrfs_node_blockptr(buf, i); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 3120 | num_bytes = root->nodesize; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3121 | ret = process_func(trans, root, bytenr, num_bytes, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3122 | parent, ref_root, level - 1, 0, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3123 | 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3124 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3125 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3126 | } |
| 3127 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3128 | return 0; |
| 3129 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3130 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3131 | } |
| 3132 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3133 | 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] | 3134 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3135 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3136 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3137 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3138 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3139 | 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] | 3140 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3141 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3142 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3143 | } |
| 3144 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3145 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3146 | struct btrfs_root *root, |
| 3147 | struct btrfs_path *path, |
| 3148 | struct btrfs_block_group_cache *cache) |
| 3149 | { |
| 3150 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3151 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3152 | unsigned long bi; |
| 3153 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3154 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3155 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3156 | if (ret < 0) |
| 3157 | goto fail; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3158 | BUG_ON(ret); /* Corruption */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3159 | |
| 3160 | leaf = path->nodes[0]; |
| 3161 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3162 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3163 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3164 | btrfs_release_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3165 | fail: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3166 | if (ret) { |
| 3167 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3168 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3169 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3170 | return 0; |
| 3171 | |
| 3172 | } |
| 3173 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3174 | static struct btrfs_block_group_cache * |
| 3175 | next_block_group(struct btrfs_root *root, |
| 3176 | struct btrfs_block_group_cache *cache) |
| 3177 | { |
| 3178 | struct rb_node *node; |
| 3179 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 3180 | node = rb_next(&cache->cache_node); |
| 3181 | btrfs_put_block_group(cache); |
| 3182 | if (node) { |
| 3183 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3184 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3185 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3186 | } else |
| 3187 | cache = NULL; |
| 3188 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3189 | return cache; |
| 3190 | } |
| 3191 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3192 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3193 | struct btrfs_trans_handle *trans, |
| 3194 | struct btrfs_path *path) |
| 3195 | { |
| 3196 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3197 | struct inode *inode = NULL; |
| 3198 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3199 | int dcs = BTRFS_DC_ERROR; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3200 | int num_pages = 0; |
| 3201 | int retries = 0; |
| 3202 | int ret = 0; |
| 3203 | |
| 3204 | /* |
| 3205 | * If this block group is smaller than 100 megs don't bother caching the |
| 3206 | * block group. |
| 3207 | */ |
| 3208 | if (block_group->key.offset < (100 * 1024 * 1024)) { |
| 3209 | spin_lock(&block_group->lock); |
| 3210 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3211 | spin_unlock(&block_group->lock); |
| 3212 | return 0; |
| 3213 | } |
| 3214 | |
| 3215 | again: |
| 3216 | inode = lookup_free_space_inode(root, block_group, path); |
| 3217 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3218 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3219 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3220 | goto out; |
| 3221 | } |
| 3222 | |
| 3223 | if (IS_ERR(inode)) { |
| 3224 | BUG_ON(retries); |
| 3225 | retries++; |
| 3226 | |
| 3227 | if (block_group->ro) |
| 3228 | goto out_free; |
| 3229 | |
| 3230 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3231 | if (ret) |
| 3232 | goto out_free; |
| 3233 | goto again; |
| 3234 | } |
| 3235 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3236 | /* We've already setup this transaction, go ahead and exit */ |
| 3237 | if (block_group->cache_generation == trans->transid && |
| 3238 | i_size_read(inode)) { |
| 3239 | dcs = BTRFS_DC_SETUP; |
| 3240 | goto out_put; |
| 3241 | } |
| 3242 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3243 | /* |
| 3244 | * We want to set the generation to 0, that way if anything goes wrong |
| 3245 | * from here on out we know not to trust this cache when we load up next |
| 3246 | * time. |
| 3247 | */ |
| 3248 | BTRFS_I(inode)->generation = 0; |
| 3249 | ret = btrfs_update_inode(trans, root, inode); |
| 3250 | WARN_ON(ret); |
| 3251 | |
| 3252 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3253 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3254 | &root->fs_info->global_block_rsv); |
| 3255 | if (ret) |
| 3256 | goto out_put; |
| 3257 | |
Filipe David Borba Manana | 7451432 | 2013-09-20 14:46:51 +0100 | [diff] [blame] | 3258 | ret = btrfs_truncate_free_space_cache(root, trans, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3259 | if (ret) |
| 3260 | goto out_put; |
| 3261 | } |
| 3262 | |
| 3263 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3264 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 3265 | !btrfs_test_opt(root, SPACE_CACHE) || |
| 3266 | block_group->delalloc_bytes) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3267 | /* |
| 3268 | * don't bother trying to write stuff out _if_ |
| 3269 | * a) we're not cached, |
| 3270 | * b) we're with nospace_cache mount option. |
| 3271 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3272 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3273 | spin_unlock(&block_group->lock); |
| 3274 | goto out_put; |
| 3275 | } |
| 3276 | spin_unlock(&block_group->lock); |
| 3277 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3278 | /* |
| 3279 | * Try to preallocate enough space based on how big the block group is. |
| 3280 | * Keep in mind this has to include any pinned space which could end up |
| 3281 | * taking up quite a bit since it's not folded into the other space |
| 3282 | * cache. |
| 3283 | */ |
| 3284 | num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3285 | if (!num_pages) |
| 3286 | num_pages = 1; |
| 3287 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3288 | num_pages *= 16; |
| 3289 | num_pages *= PAGE_CACHE_SIZE; |
| 3290 | |
| 3291 | ret = btrfs_check_data_free_space(inode, num_pages); |
| 3292 | if (ret) |
| 3293 | goto out_put; |
| 3294 | |
| 3295 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3296 | num_pages, num_pages, |
| 3297 | &alloc_hint); |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3298 | if (!ret) |
| 3299 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3300 | btrfs_free_reserved_data_space(inode, num_pages); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3301 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3302 | out_put: |
| 3303 | iput(inode); |
| 3304 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3305 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3306 | out: |
| 3307 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3308 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3309 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3310 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3311 | spin_unlock(&block_group->lock); |
| 3312 | |
| 3313 | return ret; |
| 3314 | } |
| 3315 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3316 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3317 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3318 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3319 | struct btrfs_block_group_cache *cache; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3320 | int err = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3321 | struct btrfs_path *path; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3322 | u64 last = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3323 | |
| 3324 | path = btrfs_alloc_path(); |
| 3325 | if (!path) |
| 3326 | return -ENOMEM; |
| 3327 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3328 | again: |
| 3329 | while (1) { |
| 3330 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3331 | while (cache) { |
| 3332 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3333 | break; |
| 3334 | cache = next_block_group(root, cache); |
| 3335 | } |
| 3336 | if (!cache) { |
| 3337 | if (last == 0) |
| 3338 | break; |
| 3339 | last = 0; |
| 3340 | continue; |
| 3341 | } |
| 3342 | err = cache_save_setup(cache, trans, path); |
| 3343 | last = cache->key.objectid + cache->key.offset; |
| 3344 | btrfs_put_block_group(cache); |
| 3345 | } |
| 3346 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3347 | while (1) { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3348 | if (last == 0) { |
| 3349 | err = btrfs_run_delayed_refs(trans, root, |
| 3350 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3351 | if (err) /* File system offline */ |
| 3352 | goto out; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3353 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3354 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3355 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3356 | while (cache) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3357 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) { |
| 3358 | btrfs_put_block_group(cache); |
| 3359 | goto again; |
| 3360 | } |
| 3361 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3362 | if (cache->dirty) |
| 3363 | break; |
| 3364 | cache = next_block_group(root, cache); |
| 3365 | } |
| 3366 | if (!cache) { |
| 3367 | if (last == 0) |
| 3368 | break; |
| 3369 | last = 0; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3370 | continue; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3371 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3372 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3373 | if (cache->disk_cache_state == BTRFS_DC_SETUP) |
| 3374 | cache->disk_cache_state = BTRFS_DC_NEED_WRITE; |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3375 | cache->dirty = 0; |
| 3376 | last = cache->key.objectid + cache->key.offset; |
| 3377 | |
| 3378 | err = write_one_cache_group(trans, root, path, cache); |
Filipe David Borba Manana | e84cc14 | 2013-09-09 19:49:43 +0100 | [diff] [blame] | 3379 | btrfs_put_block_group(cache); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3380 | if (err) /* File system offline */ |
| 3381 | goto out; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3382 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3383 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3384 | while (1) { |
| 3385 | /* |
| 3386 | * I don't think this is needed since we're just marking our |
| 3387 | * preallocated extent as written, but just in case it can't |
| 3388 | * hurt. |
| 3389 | */ |
| 3390 | if (last == 0) { |
| 3391 | err = btrfs_run_delayed_refs(trans, root, |
| 3392 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3393 | if (err) /* File system offline */ |
| 3394 | goto out; |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3395 | } |
| 3396 | |
| 3397 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3398 | while (cache) { |
| 3399 | /* |
| 3400 | * Really this shouldn't happen, but it could if we |
| 3401 | * couldn't write the entire preallocated extent and |
| 3402 | * splitting the extent resulted in a new block. |
| 3403 | */ |
| 3404 | if (cache->dirty) { |
| 3405 | btrfs_put_block_group(cache); |
| 3406 | goto again; |
| 3407 | } |
| 3408 | if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
| 3409 | break; |
| 3410 | cache = next_block_group(root, cache); |
| 3411 | } |
| 3412 | if (!cache) { |
| 3413 | if (last == 0) |
| 3414 | break; |
| 3415 | last = 0; |
| 3416 | continue; |
| 3417 | } |
| 3418 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3419 | err = btrfs_write_out_cache(root, trans, cache, path); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3420 | |
| 3421 | /* |
| 3422 | * If we didn't have an error then the cache state is still |
| 3423 | * NEED_WRITE, so we can set it to WRITTEN. |
| 3424 | */ |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3425 | if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3426 | cache->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3427 | last = cache->key.objectid + cache->key.offset; |
| 3428 | btrfs_put_block_group(cache); |
| 3429 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3430 | out: |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3431 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3432 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3433 | return err; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3434 | } |
| 3435 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3436 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3437 | { |
| 3438 | struct btrfs_block_group_cache *block_group; |
| 3439 | int readonly = 0; |
| 3440 | |
| 3441 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3442 | if (!block_group || block_group->ro) |
| 3443 | readonly = 1; |
| 3444 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3445 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3446 | return readonly; |
| 3447 | } |
| 3448 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3449 | static const char *alloc_name(u64 flags) |
| 3450 | { |
| 3451 | switch (flags) { |
| 3452 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3453 | return "mixed"; |
| 3454 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3455 | return "metadata"; |
| 3456 | case BTRFS_BLOCK_GROUP_DATA: |
| 3457 | return "data"; |
| 3458 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3459 | return "system"; |
| 3460 | default: |
| 3461 | WARN_ON(1); |
| 3462 | return "invalid-combination"; |
| 3463 | }; |
| 3464 | } |
| 3465 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3466 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3467 | u64 total_bytes, u64 bytes_used, |
| 3468 | struct btrfs_space_info **space_info) |
| 3469 | { |
| 3470 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3471 | int i; |
| 3472 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3473 | int ret; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3474 | |
| 3475 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3476 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3477 | factor = 2; |
| 3478 | else |
| 3479 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3480 | |
| 3481 | found = __find_space_info(info, flags); |
| 3482 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3483 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3484 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3485 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3486 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3487 | found->disk_used += bytes_used * factor; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3488 | found->full = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3489 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3490 | *space_info = found; |
| 3491 | return 0; |
| 3492 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3493 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3494 | if (!found) |
| 3495 | return -ENOMEM; |
| 3496 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3497 | ret = percpu_counter_init(&found->total_bytes_pinned, 0); |
| 3498 | if (ret) { |
| 3499 | kfree(found); |
| 3500 | return ret; |
| 3501 | } |
| 3502 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3503 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3504 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3505 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3506 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3507 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3508 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3509 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3510 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3511 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3512 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3513 | found->bytes_reserved = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3514 | found->bytes_readonly = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3515 | found->bytes_may_use = 0; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3516 | found->full = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3517 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3518 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3519 | found->flush = 0; |
| 3520 | init_waitqueue_head(&found->wait); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3521 | |
| 3522 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3523 | info->space_info_kobj, "%s", |
| 3524 | alloc_name(found->flags)); |
| 3525 | if (ret) { |
| 3526 | kfree(found); |
| 3527 | return ret; |
| 3528 | } |
| 3529 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3530 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3531 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3532 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3533 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3534 | |
| 3535 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3536 | } |
| 3537 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3538 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 3539 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3540 | u64 extra_flags = chunk_to_extended(flags) & |
| 3541 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3542 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3543 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3544 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3545 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 3546 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3547 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 3548 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3549 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3550 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3551 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3552 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3553 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3554 | * returns target flags in extended format or 0 if restripe for this |
| 3555 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 3556 | * |
| 3557 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3558 | */ |
| 3559 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 3560 | { |
| 3561 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3562 | u64 target = 0; |
| 3563 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3564 | if (!bctl) |
| 3565 | return 0; |
| 3566 | |
| 3567 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 3568 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3569 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 3570 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 3571 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3572 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 3573 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 3574 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3575 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 3576 | } |
| 3577 | |
| 3578 | return target; |
| 3579 | } |
| 3580 | |
| 3581 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3582 | * @flags: available profiles in extended format (see ctree.h) |
| 3583 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3584 | * Returns reduced profile in chunk format. If profile changing is in |
| 3585 | * progress (either running or paused) picks the target profile (if it's |
| 3586 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3587 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 3588 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3589 | { |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 3590 | u64 num_devices = root->fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3591 | u64 target; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3592 | u64 tmp; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3593 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3594 | /* |
| 3595 | * see if restripe for this chunk_type is in progress, if so |
| 3596 | * try to reduce to the target profile |
| 3597 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3598 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3599 | target = get_restripe_target(root->fs_info, flags); |
| 3600 | if (target) { |
| 3601 | /* pick target profile only if it's already available */ |
| 3602 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3603 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3604 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3605 | } |
| 3606 | } |
| 3607 | spin_unlock(&root->fs_info->balance_lock); |
| 3608 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3609 | /* First, mask out the RAID levels which aren't possible */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3610 | if (num_devices == 1) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3611 | flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3612 | BTRFS_BLOCK_GROUP_RAID5); |
| 3613 | if (num_devices < 3) |
| 3614 | flags &= ~BTRFS_BLOCK_GROUP_RAID6; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3615 | if (num_devices < 4) |
| 3616 | flags &= ~BTRFS_BLOCK_GROUP_RAID10; |
| 3617 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3618 | tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 | |
| 3619 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3620 | BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10); |
| 3621 | flags &= ~tmp; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3622 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3623 | if (tmp & BTRFS_BLOCK_GROUP_RAID6) |
| 3624 | tmp = BTRFS_BLOCK_GROUP_RAID6; |
| 3625 | else if (tmp & BTRFS_BLOCK_GROUP_RAID5) |
| 3626 | tmp = BTRFS_BLOCK_GROUP_RAID5; |
| 3627 | else if (tmp & BTRFS_BLOCK_GROUP_RAID10) |
| 3628 | tmp = BTRFS_BLOCK_GROUP_RAID10; |
| 3629 | else if (tmp & BTRFS_BLOCK_GROUP_RAID1) |
| 3630 | tmp = BTRFS_BLOCK_GROUP_RAID1; |
| 3631 | else if (tmp & BTRFS_BLOCK_GROUP_RAID0) |
| 3632 | tmp = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3633 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3634 | return extended_to_chunk(flags | tmp); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3635 | } |
| 3636 | |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3637 | static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3638 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3639 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3640 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3641 | |
| 3642 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3643 | flags = orig_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3644 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 3645 | |
| 3646 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3647 | flags |= root->fs_info->avail_data_alloc_bits; |
| 3648 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3649 | flags |= root->fs_info->avail_system_alloc_bits; |
| 3650 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3651 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 3652 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3653 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3654 | return btrfs_reduce_alloc_profile(root, flags); |
| 3655 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3656 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 3657 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3658 | { |
| 3659 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3660 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3661 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3662 | if (data) |
| 3663 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 3664 | else if (root == root->fs_info->chunk_root) |
| 3665 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 3666 | else |
| 3667 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 3668 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3669 | ret = get_alloc_profile(root, flags); |
| 3670 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3671 | } |
| 3672 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3673 | /* |
| 3674 | * This will check the space that the inode allocates from to make sure we have |
| 3675 | * enough space for bytes. |
| 3676 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3677 | int btrfs_check_data_free_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3678 | { |
| 3679 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3680 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3681 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3682 | u64 used; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3683 | int ret = 0, committed = 0, alloc_chunk = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3684 | |
| 3685 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3686 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3687 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3688 | if (btrfs_is_free_space_inode(inode)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3689 | committed = 1; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3690 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3691 | } |
| 3692 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3693 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3694 | if (!data_sinfo) |
| 3695 | goto alloc; |
| 3696 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3697 | again: |
| 3698 | /* make sure we have enough space to handle the data first */ |
| 3699 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3700 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 3701 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 3702 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3703 | |
| 3704 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3705 | struct btrfs_trans_handle *trans; |
| 3706 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3707 | /* |
| 3708 | * if we don't have enough free bytes in this space then we need |
| 3709 | * to alloc a new chunk. |
| 3710 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3711 | if (!data_sinfo->full && alloc_chunk) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3712 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3713 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3714 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3715 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3716 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3717 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3718 | /* |
| 3719 | * It is ugly that we don't call nolock join |
| 3720 | * transaction for the free space inode case here. |
| 3721 | * But it is safe because we only do the data space |
| 3722 | * reservation for the free space cache in the |
| 3723 | * transaction context, the common join transaction |
| 3724 | * just increase the counter of the current transaction |
| 3725 | * handler, doesn't try to acquire the trans_lock of |
| 3726 | * the fs. |
| 3727 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3728 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3729 | if (IS_ERR(trans)) |
| 3730 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3731 | |
| 3732 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3733 | alloc_target, |
| 3734 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3735 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3736 | if (ret < 0) { |
| 3737 | if (ret != -ENOSPC) |
| 3738 | return ret; |
| 3739 | else |
| 3740 | goto commit_trans; |
| 3741 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3742 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3743 | if (!data_sinfo) |
| 3744 | data_sinfo = fs_info->data_sinfo; |
| 3745 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3746 | goto again; |
| 3747 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3748 | |
| 3749 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3750 | * If we don't have enough pinned space to deal with this |
| 3751 | * allocation don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3752 | */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3753 | if (percpu_counter_compare(&data_sinfo->total_bytes_pinned, |
| 3754 | bytes) < 0) |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3755 | committed = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3756 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3757 | |
| 3758 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3759 | commit_trans: |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 3760 | if (!committed && |
| 3761 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3762 | committed = 1; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3763 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3764 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3765 | if (IS_ERR(trans)) |
| 3766 | return PTR_ERR(trans); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3767 | ret = btrfs_commit_transaction(trans, root); |
| 3768 | if (ret) |
| 3769 | return ret; |
| 3770 | goto again; |
| 3771 | } |
| 3772 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 3773 | trace_btrfs_space_reservation(root->fs_info, |
| 3774 | "space_info:enospc", |
| 3775 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3776 | return -ENOSPC; |
| 3777 | } |
| 3778 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3779 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3780 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3781 | spin_unlock(&data_sinfo->lock); |
| 3782 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3783 | return 0; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3784 | } |
| 3785 | |
| 3786 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3787 | * Called if we need to clear a data reservation for this inode. |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3788 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3789 | void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3790 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3791 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3792 | struct btrfs_space_info *data_sinfo; |
| 3793 | |
| 3794 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3795 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3796 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3797 | data_sinfo = root->fs_info->data_sinfo; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3798 | spin_lock(&data_sinfo->lock); |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 3799 | WARN_ON(data_sinfo->bytes_may_use < bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3800 | data_sinfo->bytes_may_use -= bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3801 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3802 | data_sinfo->flags, bytes, 0); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3803 | spin_unlock(&data_sinfo->lock); |
| 3804 | } |
| 3805 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3806 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 3807 | { |
| 3808 | struct list_head *head = &info->space_info; |
| 3809 | struct btrfs_space_info *found; |
| 3810 | |
| 3811 | rcu_read_lock(); |
| 3812 | list_for_each_entry_rcu(found, head, list) { |
| 3813 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3814 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3815 | } |
| 3816 | rcu_read_unlock(); |
| 3817 | } |
| 3818 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3819 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 3820 | { |
| 3821 | return (global->size << 1); |
| 3822 | } |
| 3823 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3824 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3825 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3826 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3827 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3828 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3829 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3830 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3831 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3832 | if (force == CHUNK_ALLOC_FORCE) |
| 3833 | return 1; |
| 3834 | |
| 3835 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3836 | * We need to take into account the global rsv because for all intents |
| 3837 | * and purposes it's used space. Don't worry about locking the |
| 3838 | * global_rsv, it doesn't change except when the transaction commits. |
| 3839 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 3840 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3841 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3842 | |
| 3843 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3844 | * in limited mode, we want to have some free space up to |
| 3845 | * about 1% of the FS size. |
| 3846 | */ |
| 3847 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 3848 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3849 | thresh = max_t(u64, 64 * 1024 * 1024, |
| 3850 | div_factor_fine(thresh, 1)); |
| 3851 | |
| 3852 | if (num_bytes - num_allocated < thresh) |
| 3853 | return 1; |
| 3854 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3855 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3856 | if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 3857 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3858 | return 1; |
| 3859 | } |
| 3860 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3861 | static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type) |
| 3862 | { |
| 3863 | u64 num_dev; |
| 3864 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3865 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 3866 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3867 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3868 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3869 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 3870 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 3871 | num_dev = 2; |
| 3872 | else |
| 3873 | num_dev = 1; /* DUP or single */ |
| 3874 | |
| 3875 | /* metadata for updaing devices and chunk tree */ |
| 3876 | return btrfs_calc_trans_metadata_size(root, num_dev + 1); |
| 3877 | } |
| 3878 | |
| 3879 | static void check_system_chunk(struct btrfs_trans_handle *trans, |
| 3880 | struct btrfs_root *root, u64 type) |
| 3881 | { |
| 3882 | struct btrfs_space_info *info; |
| 3883 | u64 left; |
| 3884 | u64 thresh; |
| 3885 | |
| 3886 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 3887 | spin_lock(&info->lock); |
| 3888 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 3889 | info->bytes_reserved - info->bytes_readonly; |
| 3890 | spin_unlock(&info->lock); |
| 3891 | |
| 3892 | thresh = get_system_chunk_thresh(root, type); |
| 3893 | if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3894 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 3895 | left, thresh, type); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3896 | dump_space_info(info, 0, 0); |
| 3897 | } |
| 3898 | |
| 3899 | if (left < thresh) { |
| 3900 | u64 flags; |
| 3901 | |
| 3902 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
| 3903 | btrfs_alloc_chunk(trans, root, flags); |
| 3904 | } |
| 3905 | } |
| 3906 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3907 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3908 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3909 | { |
| 3910 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3911 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3912 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3913 | int ret = 0; |
| 3914 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3915 | /* Don't re-enter if we're already allocating a chunk */ |
| 3916 | if (trans->allocating_chunk) |
| 3917 | return -ENOSPC; |
| 3918 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3919 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3920 | if (!space_info) { |
| 3921 | ret = update_space_info(extent_root->fs_info, flags, |
| 3922 | 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3923 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3924 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3925 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3926 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3927 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3928 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 3929 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3930 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3931 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3932 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 3933 | ret = -ENOSPC; |
| 3934 | else |
| 3935 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3936 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3937 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3938 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3939 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3940 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3941 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3942 | return 0; |
| 3943 | } else if (space_info->chunk_alloc) { |
| 3944 | wait_for_alloc = 1; |
| 3945 | } else { |
| 3946 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3947 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3948 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3949 | spin_unlock(&space_info->lock); |
| 3950 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3951 | mutex_lock(&fs_info->chunk_mutex); |
| 3952 | |
| 3953 | /* |
| 3954 | * The chunk_mutex is held throughout the entirety of a chunk |
| 3955 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 3956 | * other guy is done and we need to recheck and see if we should |
| 3957 | * allocate. |
| 3958 | */ |
| 3959 | if (wait_for_alloc) { |
| 3960 | mutex_unlock(&fs_info->chunk_mutex); |
| 3961 | wait_for_alloc = 0; |
| 3962 | goto again; |
| 3963 | } |
| 3964 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3965 | trans->allocating_chunk = true; |
| 3966 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3967 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 3968 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 3969 | * allocating mixed chunks instead of individual chunks. |
| 3970 | */ |
| 3971 | if (btrfs_mixed_space_info(space_info)) |
| 3972 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 3973 | |
| 3974 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3975 | * if we're doing a data chunk, go ahead and make sure that |
| 3976 | * we keep a reasonable number of metadata chunks allocated in the |
| 3977 | * FS as well. |
| 3978 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3979 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3980 | fs_info->data_chunk_allocations++; |
| 3981 | if (!(fs_info->data_chunk_allocations % |
| 3982 | fs_info->metadata_ratio)) |
| 3983 | force_metadata_allocation(fs_info); |
| 3984 | } |
| 3985 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3986 | /* |
| 3987 | * Check if we have enough space in SYSTEM chunk because we may need |
| 3988 | * to update devices. |
| 3989 | */ |
| 3990 | check_system_chunk(trans, extent_root, flags); |
| 3991 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3992 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3993 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 3994 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3995 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 3996 | if (ret < 0 && ret != -ENOSPC) |
| 3997 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3998 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3999 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4000 | else |
| 4001 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4002 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4003 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4004 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4005 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4006 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4007 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4008 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4009 | } |
| 4010 | |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4011 | static int can_overcommit(struct btrfs_root *root, |
| 4012 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4013 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4014 | { |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4015 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4016 | u64 profile = btrfs_get_alloc_profile(root, 0); |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4017 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4018 | u64 avail; |
| 4019 | u64 used; |
| 4020 | |
| 4021 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4022 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 4023 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4024 | /* |
| 4025 | * We only want to allow over committing if we have lots of actual space |
| 4026 | * free, but if we don't have enough space to handle the global reserve |
| 4027 | * space then we could end up having a real enospc problem when trying |
| 4028 | * to allocate a chunk or some other such important allocation. |
| 4029 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4030 | spin_lock(&global_rsv->lock); |
| 4031 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4032 | spin_unlock(&global_rsv->lock); |
| 4033 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4034 | return 0; |
| 4035 | |
| 4036 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4037 | |
| 4038 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4039 | avail = root->fs_info->free_chunk_space; |
| 4040 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4041 | |
| 4042 | /* |
| 4043 | * 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] | 4044 | * space is actually useable. For raid56, the space info used |
| 4045 | * doesn't include the parity drive, so we don't have to |
| 4046 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4047 | */ |
| 4048 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4049 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4050 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4051 | avail >>= 1; |
| 4052 | |
| 4053 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4054 | * If we aren't flushing all things, let us overcommit up to |
| 4055 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4056 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4057 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4058 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4059 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4060 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4061 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4062 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4063 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4064 | return 1; |
| 4065 | return 0; |
| 4066 | } |
| 4067 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4068 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4069 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4070 | { |
| 4071 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4072 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4073 | if (down_read_trylock(&sb->s_umount)) { |
| 4074 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4075 | up_read(&sb->s_umount); |
| 4076 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4077 | /* |
| 4078 | * We needn't worry the filesystem going from r/w to r/o though |
| 4079 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4080 | * should guarantee the delalloc inodes list be empty after |
| 4081 | * the filesystem is readonly(all dirty pages are written to |
| 4082 | * the disk). |
| 4083 | */ |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4084 | btrfs_start_delalloc_roots(root->fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4085 | if (!current->journal_info) |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4086 | btrfs_wait_ordered_roots(root->fs_info, nr_items); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4087 | } |
| 4088 | } |
| 4089 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4090 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4091 | { |
| 4092 | u64 bytes; |
| 4093 | int nr; |
| 4094 | |
| 4095 | bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 4096 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4097 | if (!nr) |
| 4098 | nr = 1; |
| 4099 | return nr; |
| 4100 | } |
| 4101 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4102 | #define EXTENT_SIZE_PER_ITEM (256 * 1024) |
| 4103 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4104 | /* |
| 4105 | * shrink metadata reservation for delalloc |
| 4106 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4107 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4108 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4109 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4110 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4111 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4112 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4113 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4114 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4115 | long time_left; |
Miao Xie | d3ee29e | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4116 | unsigned long nr_pages; |
| 4117 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4118 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4119 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4120 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4121 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4122 | items = calc_reclaim_items_nr(root, to_reclaim); |
| 4123 | to_reclaim = items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4124 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4125 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4126 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4127 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4128 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4129 | delalloc_bytes = percpu_counter_sum_positive( |
| 4130 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4131 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4132 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4133 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4134 | if (wait_ordered) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4135 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4136 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4137 | } |
| 4138 | |
Miao Xie | d3ee29e | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4139 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4140 | while (delalloc_bytes && loops < 3) { |
| 4141 | max_reclaim = min(delalloc_bytes, to_reclaim); |
| 4142 | nr_pages = max_reclaim >> PAGE_CACHE_SHIFT; |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4143 | btrfs_writeback_inodes_sb_nr(root, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4144 | /* |
| 4145 | * We need to wait for the async pages to actually start before |
| 4146 | * we do anything. |
| 4147 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4148 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4149 | if (!max_reclaim) |
| 4150 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4151 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4152 | if (max_reclaim <= nr_pages) |
| 4153 | max_reclaim = 0; |
| 4154 | else |
| 4155 | max_reclaim -= nr_pages; |
| 4156 | |
| 4157 | wait_event(root->fs_info->async_submit_wait, |
| 4158 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4159 | (int)max_reclaim); |
| 4160 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4161 | if (!trans) |
| 4162 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4163 | else |
| 4164 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4165 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4166 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4167 | spin_unlock(&space_info->lock); |
| 4168 | break; |
| 4169 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4170 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4171 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4172 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4173 | if (wait_ordered && !trans) { |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4174 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4175 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4176 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4177 | if (time_left) |
| 4178 | break; |
| 4179 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4180 | delalloc_bytes = percpu_counter_sum_positive( |
| 4181 | &root->fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4182 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4183 | } |
| 4184 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4185 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4186 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4187 | * @root - the root we're allocating for |
| 4188 | * @bytes - the number of bytes we want to reserve |
| 4189 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4190 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4191 | * This will check to make sure that committing the transaction will actually |
| 4192 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4193 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4194 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4195 | static int may_commit_transaction(struct btrfs_root *root, |
| 4196 | struct btrfs_space_info *space_info, |
| 4197 | u64 bytes, int force) |
| 4198 | { |
| 4199 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4200 | struct btrfs_trans_handle *trans; |
| 4201 | |
| 4202 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4203 | if (trans) |
| 4204 | return -EAGAIN; |
| 4205 | |
| 4206 | if (force) |
| 4207 | goto commit; |
| 4208 | |
| 4209 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4210 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4211 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4212 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4213 | |
| 4214 | /* |
| 4215 | * See if there is some space in the delayed insertion reservation for |
| 4216 | * this reservation. |
| 4217 | */ |
| 4218 | if (space_info != delayed_rsv->space_info) |
| 4219 | return -ENOSPC; |
| 4220 | |
| 4221 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4222 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4223 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4224 | spin_unlock(&delayed_rsv->lock); |
| 4225 | return -ENOSPC; |
| 4226 | } |
| 4227 | spin_unlock(&delayed_rsv->lock); |
| 4228 | |
| 4229 | commit: |
| 4230 | trans = btrfs_join_transaction(root); |
| 4231 | if (IS_ERR(trans)) |
| 4232 | return -ENOSPC; |
| 4233 | |
| 4234 | return btrfs_commit_transaction(trans, root); |
| 4235 | } |
| 4236 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4237 | enum flush_state { |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4238 | FLUSH_DELAYED_ITEMS_NR = 1, |
| 4239 | FLUSH_DELAYED_ITEMS = 2, |
| 4240 | FLUSH_DELALLOC = 3, |
| 4241 | FLUSH_DELALLOC_WAIT = 4, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4242 | ALLOC_CHUNK = 5, |
| 4243 | COMMIT_TRANS = 6, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4244 | }; |
| 4245 | |
| 4246 | static int flush_space(struct btrfs_root *root, |
| 4247 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4248 | u64 orig_bytes, int state) |
| 4249 | { |
| 4250 | struct btrfs_trans_handle *trans; |
| 4251 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4252 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4253 | |
| 4254 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4255 | case FLUSH_DELAYED_ITEMS_NR: |
| 4256 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4257 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4258 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4259 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4260 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4261 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4262 | trans = btrfs_join_transaction(root); |
| 4263 | if (IS_ERR(trans)) { |
| 4264 | ret = PTR_ERR(trans); |
| 4265 | break; |
| 4266 | } |
| 4267 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4268 | btrfs_end_transaction(trans, root); |
| 4269 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4270 | case FLUSH_DELALLOC: |
| 4271 | case FLUSH_DELALLOC_WAIT: |
Miao Xie | 24af7dd | 2014-03-06 13:55:00 +0800 | [diff] [blame] | 4272 | shrink_delalloc(root, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4273 | state == FLUSH_DELALLOC_WAIT); |
| 4274 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4275 | case ALLOC_CHUNK: |
| 4276 | trans = btrfs_join_transaction(root); |
| 4277 | if (IS_ERR(trans)) { |
| 4278 | ret = PTR_ERR(trans); |
| 4279 | break; |
| 4280 | } |
| 4281 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4282 | btrfs_get_alloc_profile(root, 0), |
| 4283 | CHUNK_ALLOC_NO_FORCE); |
| 4284 | btrfs_end_transaction(trans, root); |
| 4285 | if (ret == -ENOSPC) |
| 4286 | ret = 0; |
| 4287 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4288 | case COMMIT_TRANS: |
| 4289 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4290 | break; |
| 4291 | default: |
| 4292 | ret = -ENOSPC; |
| 4293 | break; |
| 4294 | } |
| 4295 | |
| 4296 | return ret; |
| 4297 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4298 | |
| 4299 | static inline u64 |
| 4300 | btrfs_calc_reclaim_metadata_size(struct btrfs_root *root, |
| 4301 | struct btrfs_space_info *space_info) |
| 4302 | { |
| 4303 | u64 used; |
| 4304 | u64 expected; |
| 4305 | u64 to_reclaim; |
| 4306 | |
| 4307 | to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024, |
| 4308 | 16 * 1024 * 1024); |
| 4309 | spin_lock(&space_info->lock); |
| 4310 | if (can_overcommit(root, space_info, to_reclaim, |
| 4311 | BTRFS_RESERVE_FLUSH_ALL)) { |
| 4312 | to_reclaim = 0; |
| 4313 | goto out; |
| 4314 | } |
| 4315 | |
| 4316 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4317 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4318 | space_info->bytes_may_use; |
| 4319 | if (can_overcommit(root, space_info, 1024 * 1024, |
| 4320 | BTRFS_RESERVE_FLUSH_ALL)) |
| 4321 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4322 | else |
| 4323 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4324 | |
| 4325 | if (used > expected) |
| 4326 | to_reclaim = used - expected; |
| 4327 | else |
| 4328 | to_reclaim = 0; |
| 4329 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4330 | space_info->bytes_reserved); |
| 4331 | out: |
| 4332 | spin_unlock(&space_info->lock); |
| 4333 | |
| 4334 | return to_reclaim; |
| 4335 | } |
| 4336 | |
| 4337 | static inline int need_do_async_reclaim(struct btrfs_space_info *space_info, |
| 4338 | struct btrfs_fs_info *fs_info, u64 used) |
| 4339 | { |
| 4340 | return (used >= div_factor_fine(space_info->total_bytes, 98) && |
| 4341 | !btrfs_fs_closing(fs_info) && |
| 4342 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
| 4343 | } |
| 4344 | |
| 4345 | static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info, |
| 4346 | struct btrfs_fs_info *fs_info) |
| 4347 | { |
| 4348 | u64 used; |
| 4349 | |
| 4350 | spin_lock(&space_info->lock); |
| 4351 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4352 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4353 | space_info->bytes_may_use; |
| 4354 | if (need_do_async_reclaim(space_info, fs_info, used)) { |
| 4355 | spin_unlock(&space_info->lock); |
| 4356 | return 1; |
| 4357 | } |
| 4358 | spin_unlock(&space_info->lock); |
| 4359 | |
| 4360 | return 0; |
| 4361 | } |
| 4362 | |
| 4363 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4364 | { |
| 4365 | struct btrfs_fs_info *fs_info; |
| 4366 | struct btrfs_space_info *space_info; |
| 4367 | u64 to_reclaim; |
| 4368 | int flush_state; |
| 4369 | |
| 4370 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 4371 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4372 | |
| 4373 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 4374 | space_info); |
| 4375 | if (!to_reclaim) |
| 4376 | return; |
| 4377 | |
| 4378 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 4379 | do { |
| 4380 | flush_space(fs_info->fs_root, space_info, to_reclaim, |
| 4381 | to_reclaim, flush_state); |
| 4382 | flush_state++; |
| 4383 | if (!btrfs_need_do_async_reclaim(space_info, fs_info)) |
| 4384 | return; |
| 4385 | } while (flush_state <= COMMIT_TRANS); |
| 4386 | |
| 4387 | if (btrfs_need_do_async_reclaim(space_info, fs_info)) |
| 4388 | queue_work(system_unbound_wq, work); |
| 4389 | } |
| 4390 | |
| 4391 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 4392 | { |
| 4393 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 4394 | } |
| 4395 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4396 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4397 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 4398 | * @root - the root we're allocating for |
| 4399 | * @block_rsv - the block_rsv we're allocating for |
| 4400 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 4401 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4402 | * |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4403 | * This will reserve orgi_bytes number of bytes from the space info associated |
| 4404 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 4405 | * flush out space to make room. It will do this by flushing delalloc if |
| 4406 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 4407 | * regain reservations will be made and this will fail if there is not enough |
| 4408 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4409 | */ |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4410 | static int reserve_metadata_bytes(struct btrfs_root *root, |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4411 | struct btrfs_block_rsv *block_rsv, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4412 | u64 orig_bytes, |
| 4413 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4414 | { |
| 4415 | struct btrfs_space_info *space_info = block_rsv->space_info; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4416 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4417 | u64 num_bytes = orig_bytes; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4418 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4419 | int ret = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4420 | bool flushing = false; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4421 | |
| 4422 | again: |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4423 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4424 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4425 | /* |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4426 | * We only want to wait if somebody other than us is flushing and we |
| 4427 | * are actually allowed to flush all things. |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4428 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4429 | while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing && |
| 4430 | space_info->flush) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4431 | spin_unlock(&space_info->lock); |
| 4432 | /* |
| 4433 | * If we have a trans handle we can't wait because the flusher |
| 4434 | * may have to commit the transaction, which would mean we would |
| 4435 | * deadlock since we are waiting for the flusher to finish, but |
| 4436 | * hold the current transaction open. |
| 4437 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4438 | if (current->journal_info) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4439 | return -EAGAIN; |
Arne Jansen | b9688bb | 2012-04-18 10:27:16 +0200 | [diff] [blame] | 4440 | ret = wait_event_killable(space_info->wait, !space_info->flush); |
| 4441 | /* Must have been killed, return */ |
| 4442 | if (ret) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4443 | return -EINTR; |
| 4444 | |
| 4445 | spin_lock(&space_info->lock); |
| 4446 | } |
| 4447 | |
| 4448 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4449 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4450 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4451 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4452 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4453 | /* |
| 4454 | * The idea here is that we've not already over-reserved the block group |
| 4455 | * then we can go ahead and save our reservation first and then start |
| 4456 | * flushing if we need to. Otherwise if we've already overcommitted |
| 4457 | * lets start flushing stuff first and then come back and try to make |
| 4458 | * our reservation. |
| 4459 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4460 | if (used <= space_info->total_bytes) { |
| 4461 | if (used + orig_bytes <= space_info->total_bytes) { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4462 | space_info->bytes_may_use += orig_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4463 | trace_btrfs_space_reservation(root->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4464 | "space_info", space_info->flags, orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4465 | ret = 0; |
| 4466 | } else { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4467 | /* |
| 4468 | * Ok set num_bytes to orig_bytes since we aren't |
| 4469 | * overocmmitted, this way we only try and reclaim what |
| 4470 | * we need. |
| 4471 | */ |
| 4472 | num_bytes = orig_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4473 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4474 | } else { |
| 4475 | /* |
| 4476 | * Ok we're over committed, set num_bytes to the overcommitted |
| 4477 | * amount plus the amount of bytes that we need for this |
| 4478 | * reservation. |
| 4479 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4480 | num_bytes = used - space_info->total_bytes + |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4481 | (orig_bytes * 2); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4482 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4483 | |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 4484 | if (ret && can_overcommit(root, space_info, orig_bytes, flush)) { |
| 4485 | space_info->bytes_may_use += orig_bytes; |
| 4486 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4487 | space_info->flags, orig_bytes, |
| 4488 | 1); |
| 4489 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4490 | } |
| 4491 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4492 | /* |
| 4493 | * Couldn't make our reservation, save our place so while we're trying |
| 4494 | * to reclaim space we can actually use it instead of somebody else |
| 4495 | * stealing it from us. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4496 | * |
| 4497 | * We make the other tasks wait for the flush only when we can flush |
| 4498 | * all things. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4499 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 4500 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4501 | flushing = true; |
| 4502 | space_info->flush = 1; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4503 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 4504 | used += orig_bytes; |
| 4505 | if (need_do_async_reclaim(space_info, root->fs_info, used) && |
| 4506 | !work_busy(&root->fs_info->async_reclaim_work)) |
| 4507 | queue_work(system_unbound_wq, |
| 4508 | &root->fs_info->async_reclaim_work); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4509 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4510 | spin_unlock(&space_info->lock); |
| 4511 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4512 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4513 | goto out; |
| 4514 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4515 | ret = flush_space(root, space_info, num_bytes, orig_bytes, |
| 4516 | flush_state); |
| 4517 | flush_state++; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4518 | |
| 4519 | /* |
| 4520 | * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock |
| 4521 | * would happen. So skip delalloc flush. |
| 4522 | */ |
| 4523 | if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4524 | (flush_state == FLUSH_DELALLOC || |
| 4525 | flush_state == FLUSH_DELALLOC_WAIT)) |
| 4526 | flush_state = ALLOC_CHUNK; |
| 4527 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4528 | if (!ret) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4529 | goto again; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4530 | else if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4531 | flush_state < COMMIT_TRANS) |
| 4532 | goto again; |
| 4533 | else if (flush == BTRFS_RESERVE_FLUSH_ALL && |
| 4534 | flush_state <= COMMIT_TRANS) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4535 | goto again; |
| 4536 | |
| 4537 | out: |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 4538 | if (ret == -ENOSPC && |
| 4539 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 4540 | struct btrfs_block_rsv *global_rsv = |
| 4541 | &root->fs_info->global_block_rsv; |
| 4542 | |
| 4543 | if (block_rsv != global_rsv && |
| 4544 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 4545 | ret = 0; |
| 4546 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4547 | if (ret == -ENOSPC) |
| 4548 | trace_btrfs_space_reservation(root->fs_info, |
| 4549 | "space_info:enospc", |
| 4550 | space_info->flags, orig_bytes, 1); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4551 | if (flushing) { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4552 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4553 | space_info->flush = 0; |
| 4554 | wake_up_all(&space_info->wait); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4555 | spin_unlock(&space_info->lock); |
| 4556 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4557 | return ret; |
| 4558 | } |
| 4559 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4560 | static struct btrfs_block_rsv *get_block_rsv( |
| 4561 | const struct btrfs_trans_handle *trans, |
| 4562 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4563 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4564 | struct btrfs_block_rsv *block_rsv = NULL; |
| 4565 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4566 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4567 | block_rsv = trans->block_rsv; |
| 4568 | |
| 4569 | if (root == root->fs_info->csum_root && trans->adding_csums) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4570 | block_rsv = trans->block_rsv; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4571 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4572 | if (root == root->fs_info->uuid_root) |
| 4573 | block_rsv = trans->block_rsv; |
| 4574 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4575 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4576 | block_rsv = root->block_rsv; |
| 4577 | |
| 4578 | if (!block_rsv) |
| 4579 | block_rsv = &root->fs_info->empty_block_rsv; |
| 4580 | |
| 4581 | return block_rsv; |
| 4582 | } |
| 4583 | |
| 4584 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 4585 | u64 num_bytes) |
| 4586 | { |
| 4587 | int ret = -ENOSPC; |
| 4588 | spin_lock(&block_rsv->lock); |
| 4589 | if (block_rsv->reserved >= num_bytes) { |
| 4590 | block_rsv->reserved -= num_bytes; |
| 4591 | if (block_rsv->reserved < block_rsv->size) |
| 4592 | block_rsv->full = 0; |
| 4593 | ret = 0; |
| 4594 | } |
| 4595 | spin_unlock(&block_rsv->lock); |
| 4596 | return ret; |
| 4597 | } |
| 4598 | |
| 4599 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 4600 | u64 num_bytes, int update_size) |
| 4601 | { |
| 4602 | spin_lock(&block_rsv->lock); |
| 4603 | block_rsv->reserved += num_bytes; |
| 4604 | if (update_size) |
| 4605 | block_rsv->size += num_bytes; |
| 4606 | else if (block_rsv->reserved >= block_rsv->size) |
| 4607 | block_rsv->full = 1; |
| 4608 | spin_unlock(&block_rsv->lock); |
| 4609 | } |
| 4610 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 4611 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 4612 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 4613 | int min_factor) |
| 4614 | { |
| 4615 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 4616 | u64 min_bytes; |
| 4617 | |
| 4618 | if (global_rsv->space_info != dest->space_info) |
| 4619 | return -ENOSPC; |
| 4620 | |
| 4621 | spin_lock(&global_rsv->lock); |
| 4622 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 4623 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 4624 | spin_unlock(&global_rsv->lock); |
| 4625 | return -ENOSPC; |
| 4626 | } |
| 4627 | global_rsv->reserved -= num_bytes; |
| 4628 | if (global_rsv->reserved < global_rsv->size) |
| 4629 | global_rsv->full = 0; |
| 4630 | spin_unlock(&global_rsv->lock); |
| 4631 | |
| 4632 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 4633 | return 0; |
| 4634 | } |
| 4635 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4636 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 4637 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 4638 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4639 | { |
| 4640 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 4641 | |
| 4642 | spin_lock(&block_rsv->lock); |
| 4643 | if (num_bytes == (u64)-1) |
| 4644 | num_bytes = block_rsv->size; |
| 4645 | block_rsv->size -= num_bytes; |
| 4646 | if (block_rsv->reserved >= block_rsv->size) { |
| 4647 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 4648 | block_rsv->reserved = block_rsv->size; |
| 4649 | block_rsv->full = 1; |
| 4650 | } else { |
| 4651 | num_bytes = 0; |
| 4652 | } |
| 4653 | spin_unlock(&block_rsv->lock); |
| 4654 | |
| 4655 | if (num_bytes > 0) { |
| 4656 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 4657 | spin_lock(&dest->lock); |
| 4658 | if (!dest->full) { |
| 4659 | u64 bytes_to_add; |
| 4660 | |
| 4661 | bytes_to_add = dest->size - dest->reserved; |
| 4662 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 4663 | dest->reserved += bytes_to_add; |
| 4664 | if (dest->reserved >= dest->size) |
| 4665 | dest->full = 1; |
| 4666 | num_bytes -= bytes_to_add; |
| 4667 | } |
| 4668 | spin_unlock(&dest->lock); |
| 4669 | } |
| 4670 | if (num_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4671 | spin_lock(&space_info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4672 | space_info->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4673 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4674 | space_info->flags, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4675 | spin_unlock(&space_info->lock); |
| 4676 | } |
| 4677 | } |
| 4678 | } |
| 4679 | |
| 4680 | static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src, |
| 4681 | struct btrfs_block_rsv *dst, u64 num_bytes) |
| 4682 | { |
| 4683 | int ret; |
| 4684 | |
| 4685 | ret = block_rsv_use_bytes(src, num_bytes); |
| 4686 | if (ret) |
| 4687 | return ret; |
| 4688 | |
| 4689 | block_rsv_add_bytes(dst, num_bytes, 1); |
| 4690 | return 0; |
| 4691 | } |
| 4692 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4693 | 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] | 4694 | { |
| 4695 | memset(rsv, 0, sizeof(*rsv)); |
| 4696 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4697 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4698 | } |
| 4699 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4700 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 4701 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4702 | { |
| 4703 | struct btrfs_block_rsv *block_rsv; |
| 4704 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4705 | |
| 4706 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 4707 | if (!block_rsv) |
| 4708 | return NULL; |
| 4709 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4710 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4711 | block_rsv->space_info = __find_space_info(fs_info, |
| 4712 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4713 | return block_rsv; |
| 4714 | } |
| 4715 | |
| 4716 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 4717 | struct btrfs_block_rsv *rsv) |
| 4718 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4719 | if (!rsv) |
| 4720 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4721 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 4722 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4723 | } |
| 4724 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4725 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 4726 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 4727 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4728 | { |
| 4729 | int ret; |
| 4730 | |
| 4731 | if (num_bytes == 0) |
| 4732 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4733 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 4734 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4735 | if (!ret) { |
| 4736 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 4737 | return 0; |
| 4738 | } |
| 4739 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4740 | return ret; |
| 4741 | } |
| 4742 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4743 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4744 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4745 | { |
| 4746 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4747 | int ret = -ENOSPC; |
| 4748 | |
| 4749 | if (!block_rsv) |
| 4750 | return 0; |
| 4751 | |
| 4752 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4753 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 4754 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4755 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4756 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4757 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4758 | return ret; |
| 4759 | } |
| 4760 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4761 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 4762 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 4763 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4764 | { |
| 4765 | u64 num_bytes = 0; |
| 4766 | int ret = -ENOSPC; |
| 4767 | |
| 4768 | if (!block_rsv) |
| 4769 | return 0; |
| 4770 | |
| 4771 | spin_lock(&block_rsv->lock); |
| 4772 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4773 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4774 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4775 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4776 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4777 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4778 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4779 | if (!ret) |
| 4780 | return 0; |
| 4781 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 4782 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4783 | if (!ret) { |
| 4784 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4785 | return 0; |
| 4786 | } |
| 4787 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4788 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4789 | } |
| 4790 | |
| 4791 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv, |
| 4792 | struct btrfs_block_rsv *dst_rsv, |
| 4793 | u64 num_bytes) |
| 4794 | { |
| 4795 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4796 | } |
| 4797 | |
| 4798 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 4799 | struct btrfs_block_rsv *block_rsv, |
| 4800 | u64 num_bytes) |
| 4801 | { |
| 4802 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 4803 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4804 | block_rsv->space_info != global_rsv->space_info) |
| 4805 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4806 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 4807 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4808 | } |
| 4809 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4810 | /* |
| 4811 | * helper to calculate size of global block reservation. |
| 4812 | * the desired value is sum of space used by extent tree, |
| 4813 | * checksum tree and root tree |
| 4814 | */ |
| 4815 | static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info) |
| 4816 | { |
| 4817 | struct btrfs_space_info *sinfo; |
| 4818 | u64 num_bytes; |
| 4819 | u64 meta_used; |
| 4820 | u64 data_used; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4821 | int csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4822 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4823 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 4824 | spin_lock(&sinfo->lock); |
| 4825 | data_used = sinfo->bytes_used; |
| 4826 | spin_unlock(&sinfo->lock); |
| 4827 | |
| 4828 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4829 | spin_lock(&sinfo->lock); |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4830 | if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4831 | data_used = 0; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4832 | meta_used = sinfo->bytes_used; |
| 4833 | spin_unlock(&sinfo->lock); |
| 4834 | |
| 4835 | num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) * |
| 4836 | csum_size * 2; |
| 4837 | num_bytes += div64_u64(data_used + meta_used, 50); |
| 4838 | |
| 4839 | if (num_bytes * 3 > meta_used) |
Chris Mason | 8e62c2d | 2012-04-12 13:46:48 -0400 | [diff] [blame] | 4840 | num_bytes = div64_u64(meta_used, 3); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4841 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 4842 | return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4843 | } |
| 4844 | |
| 4845 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4846 | { |
| 4847 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 4848 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 4849 | u64 num_bytes; |
| 4850 | |
| 4851 | num_bytes = calc_global_metadata_size(fs_info); |
| 4852 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4853 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4854 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4855 | |
Josef Bacik | fdf30d1 | 2013-03-26 15:31:45 -0400 | [diff] [blame] | 4856 | block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4857 | |
| 4858 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4859 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 4860 | sinfo->bytes_may_use; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4861 | |
| 4862 | if (sinfo->total_bytes > num_bytes) { |
| 4863 | num_bytes = sinfo->total_bytes - num_bytes; |
| 4864 | block_rsv->reserved += num_bytes; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4865 | sinfo->bytes_may_use += num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4866 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4867 | sinfo->flags, num_bytes, 1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4868 | } |
| 4869 | |
| 4870 | if (block_rsv->reserved >= block_rsv->size) { |
| 4871 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4872 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4873 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4874 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4875 | block_rsv->reserved = block_rsv->size; |
| 4876 | block_rsv->full = 1; |
| 4877 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 4878 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4879 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4880 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4881 | } |
| 4882 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4883 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4884 | { |
| 4885 | struct btrfs_space_info *space_info; |
| 4886 | |
| 4887 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4888 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4889 | |
| 4890 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4891 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4892 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4893 | fs_info->trans_block_rsv.space_info = space_info; |
| 4894 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4895 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4896 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4897 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 4898 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 4899 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 4900 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 4901 | if (fs_info->quota_root) |
| 4902 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4903 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4904 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4905 | update_global_block_rsv(fs_info); |
| 4906 | } |
| 4907 | |
| 4908 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4909 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4910 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 4911 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4912 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 4913 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 4914 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 4915 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 4916 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 4917 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4918 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 4919 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4920 | } |
| 4921 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4922 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 4923 | struct btrfs_root *root) |
| 4924 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4925 | if (!trans->block_rsv) |
| 4926 | return; |
| 4927 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4928 | if (!trans->bytes_reserved) |
| 4929 | return; |
| 4930 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 4931 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4932 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 4933 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4934 | trans->bytes_reserved = 0; |
| 4935 | } |
| 4936 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4937 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4938 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 4939 | struct inode *inode) |
| 4940 | { |
| 4941 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4942 | struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root); |
| 4943 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 4944 | |
| 4945 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4946 | * We need to hold space in order to delete our orphan item once we've |
| 4947 | * added it, so this takes the reservation so we can release it later |
| 4948 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4949 | */ |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4950 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4951 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4952 | btrfs_ino(inode), num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4953 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4954 | } |
| 4955 | |
| 4956 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 4957 | { |
| 4958 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4959 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4960 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4961 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4962 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 4963 | } |
| 4964 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4965 | /* |
| 4966 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 4967 | * root: the root of the parent directory |
| 4968 | * rsv: block reservation |
| 4969 | * items: the number of items that we need do reservation |
| 4970 | * qgroup_reserved: used to return the reserved size in qgroup |
| 4971 | * |
| 4972 | * This function is used to reserve the space for snapshot/subvolume |
| 4973 | * creation and deletion. Those operations are different with the |
| 4974 | * common file/directory operations, they change two fs/file trees |
| 4975 | * and root tree, the number of items that the qgroup reserves is |
| 4976 | * different with the free space reservation. So we can not use |
| 4977 | * the space reseravtion mechanism in start_transaction(). |
| 4978 | */ |
| 4979 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 4980 | struct btrfs_block_rsv *rsv, |
| 4981 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4982 | u64 *qgroup_reserved, |
| 4983 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4984 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4985 | u64 num_bytes; |
| 4986 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4987 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4988 | |
| 4989 | if (root->fs_info->quota_enabled) { |
| 4990 | /* One for parent inode, two for dir entries */ |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 4991 | num_bytes = 3 * root->nodesize; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4992 | ret = btrfs_qgroup_reserve(root, num_bytes); |
| 4993 | if (ret) |
| 4994 | return ret; |
| 4995 | } else { |
| 4996 | num_bytes = 0; |
| 4997 | } |
| 4998 | |
| 4999 | *qgroup_reserved = num_bytes; |
| 5000 | |
| 5001 | num_bytes = btrfs_calc_trans_metadata_size(root, items); |
| 5002 | rsv->space_info = __find_space_info(root->fs_info, |
| 5003 | BTRFS_BLOCK_GROUP_METADATA); |
| 5004 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5005 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5006 | |
| 5007 | if (ret == -ENOSPC && use_global_rsv) |
| 5008 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes); |
| 5009 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5010 | if (ret) { |
| 5011 | if (*qgroup_reserved) |
| 5012 | btrfs_qgroup_free(root, *qgroup_reserved); |
| 5013 | } |
| 5014 | |
| 5015 | return ret; |
| 5016 | } |
| 5017 | |
| 5018 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 5019 | struct btrfs_block_rsv *rsv, |
| 5020 | u64 qgroup_reserved) |
| 5021 | { |
| 5022 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 5023 | if (qgroup_reserved) |
| 5024 | btrfs_qgroup_free(root, qgroup_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5025 | } |
| 5026 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5027 | /** |
| 5028 | * drop_outstanding_extent - drop an outstanding extent |
| 5029 | * @inode: the inode we're dropping the extent for |
| 5030 | * |
| 5031 | * This is called when we are freeing up an outstanding extent, either called |
| 5032 | * after an error or after an extent is written. This will return the number of |
| 5033 | * reserved extents that need to be freed. This must be called with |
| 5034 | * BTRFS_I(inode)->lock held. |
| 5035 | */ |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5036 | static unsigned drop_outstanding_extent(struct inode *inode) |
| 5037 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5038 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5039 | unsigned dropped_extents = 0; |
| 5040 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5041 | BUG_ON(!BTRFS_I(inode)->outstanding_extents); |
| 5042 | BTRFS_I(inode)->outstanding_extents--; |
| 5043 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5044 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5045 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5046 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5047 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5048 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5049 | /* |
| 5050 | * If we have more or the same amount of outsanding extents than we have |
| 5051 | * reserved then we need to leave the reserved extents count alone. |
| 5052 | */ |
| 5053 | if (BTRFS_I(inode)->outstanding_extents >= |
| 5054 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5055 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5056 | |
| 5057 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 5058 | BTRFS_I(inode)->outstanding_extents; |
| 5059 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5060 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5061 | } |
| 5062 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5063 | /** |
| 5064 | * calc_csum_metadata_size - return the amount of metada space that must be |
| 5065 | * reserved/free'd for the given bytes. |
| 5066 | * @inode: the inode we're manipulating |
| 5067 | * @num_bytes: the number of bytes in question |
| 5068 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5069 | * |
| 5070 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5071 | * correct amount of metadata that must either be reserved or freed. We |
| 5072 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5073 | * number of bytes that will need to be checksumed by this value to figure out |
| 5074 | * how many checksums will be required. If we are adding bytes then the number |
| 5075 | * may go up and we will return the number of additional bytes that must be |
| 5076 | * reserved. If it is going down we will return the number of bytes that must |
| 5077 | * be freed. |
| 5078 | * |
| 5079 | * This must be called with BTRFS_I(inode)->lock held. |
| 5080 | */ |
| 5081 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 5082 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5083 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5084 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5085 | u64 csum_size; |
| 5086 | int num_csums_per_leaf; |
| 5087 | int num_csums; |
| 5088 | int old_csums; |
| 5089 | |
| 5090 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 5091 | BTRFS_I(inode)->csum_bytes == 0) |
| 5092 | return 0; |
| 5093 | |
| 5094 | old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 5095 | if (reserve) |
| 5096 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 5097 | else |
| 5098 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
| 5099 | csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item); |
| 5100 | num_csums_per_leaf = (int)div64_u64(csum_size, |
| 5101 | sizeof(struct btrfs_csum_item) + |
| 5102 | sizeof(struct btrfs_disk_key)); |
| 5103 | num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 5104 | num_csums = num_csums + num_csums_per_leaf - 1; |
| 5105 | num_csums = num_csums / num_csums_per_leaf; |
| 5106 | |
| 5107 | old_csums = old_csums + num_csums_per_leaf - 1; |
| 5108 | old_csums = old_csums / num_csums_per_leaf; |
| 5109 | |
| 5110 | /* No change, no need to reserve more */ |
| 5111 | if (old_csums == num_csums) |
| 5112 | return 0; |
| 5113 | |
| 5114 | if (reserve) |
| 5115 | return btrfs_calc_trans_metadata_size(root, |
| 5116 | num_csums - old_csums); |
| 5117 | |
| 5118 | return btrfs_calc_trans_metadata_size(root, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5119 | } |
| 5120 | |
| 5121 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 5122 | { |
| 5123 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5124 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5125 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5126 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5127 | unsigned nr_extents = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5128 | int extra_reserve = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5129 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5130 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5131 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5132 | u64 to_free = 0; |
| 5133 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5134 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5135 | /* If we are a free space inode we need to not flush since we will be in |
| 5136 | * the middle of a transaction commit. We also don't need the delalloc |
| 5137 | * mutex since we won't race with anybody. We need this mostly to make |
| 5138 | * lockdep shut its filthy mouth. |
| 5139 | */ |
| 5140 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5141 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5142 | delalloc_lock = false; |
| 5143 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5144 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5145 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 5146 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5147 | schedule_timeout(1); |
| 5148 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5149 | if (delalloc_lock) |
| 5150 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 5151 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5152 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5153 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5154 | spin_lock(&BTRFS_I(inode)->lock); |
| 5155 | BTRFS_I(inode)->outstanding_extents++; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5156 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5157 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5158 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5159 | nr_extents = BTRFS_I(inode)->outstanding_extents - |
| 5160 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5161 | |
| 5162 | /* |
| 5163 | * Add an item to reserve for updating the inode when we complete the |
| 5164 | * delalloc io. |
| 5165 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5166 | if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5167 | &BTRFS_I(inode)->runtime_flags)) { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5168 | nr_extents++; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5169 | extra_reserve = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5170 | } |
| 5171 | |
| 5172 | to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5173 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5174 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5175 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5176 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5177 | if (root->fs_info->quota_enabled) { |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5178 | ret = btrfs_qgroup_reserve(root, num_bytes + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5179 | nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5180 | if (ret) |
| 5181 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5182 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5183 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5184 | ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush); |
| 5185 | if (unlikely(ret)) { |
| 5186 | if (root->fs_info->quota_enabled) |
Miao Xie | 4b5829a | 2012-12-05 10:53:25 +0000 | [diff] [blame] | 5187 | btrfs_qgroup_free(root, num_bytes + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5188 | nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5189 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5190 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5191 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5192 | spin_lock(&BTRFS_I(inode)->lock); |
| 5193 | if (extra_reserve) { |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5194 | set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5195 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5196 | nr_extents--; |
| 5197 | } |
| 5198 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 5199 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5200 | |
| 5201 | if (delalloc_lock) |
| 5202 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5203 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5204 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 5205 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5206 | btrfs_ino(inode), to_reserve, 1); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5207 | block_rsv_add_bytes(block_rsv, to_reserve, 1); |
| 5208 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5209 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5210 | |
| 5211 | out_fail: |
| 5212 | spin_lock(&BTRFS_I(inode)->lock); |
| 5213 | dropped = drop_outstanding_extent(inode); |
| 5214 | /* |
| 5215 | * If the inodes csum_bytes is the same as the original |
| 5216 | * csum_bytes then we know we haven't raced with any free()ers |
| 5217 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5218 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5219 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5220 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5221 | } else { |
| 5222 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 5223 | u64 bytes; |
| 5224 | |
| 5225 | /* |
| 5226 | * This is tricky, but first we need to figure out how much we |
| 5227 | * free'd from any free-ers that occured during this |
| 5228 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 5229 | * before we dropped our lock, and then call the free for the |
| 5230 | * number of bytes that were freed while we were trying our |
| 5231 | * reservation. |
| 5232 | */ |
| 5233 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 5234 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 5235 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 5236 | |
| 5237 | |
| 5238 | /* |
| 5239 | * Now we need to see how much we would have freed had we not |
| 5240 | * been making this reservation and our ->csum_bytes were not |
| 5241 | * artificially inflated. |
| 5242 | */ |
| 5243 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 5244 | bytes = csum_bytes - orig_csum_bytes; |
| 5245 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 5246 | |
| 5247 | /* |
| 5248 | * Now reset ->csum_bytes to what it should be. If bytes is |
| 5249 | * more than to_free then we would have free'd more space had we |
| 5250 | * not had an artificially high ->csum_bytes, so we need to free |
| 5251 | * the remainder. If bytes is the same or less then we don't |
| 5252 | * need to do anything, the other free-ers did the correct |
| 5253 | * thing. |
| 5254 | */ |
| 5255 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 5256 | if (bytes > to_free) |
| 5257 | to_free = bytes - to_free; |
| 5258 | else |
| 5259 | to_free = 0; |
| 5260 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5261 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5262 | if (dropped) |
| 5263 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
| 5264 | |
| 5265 | if (to_free) { |
| 5266 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 5267 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5268 | btrfs_ino(inode), to_free, 0); |
| 5269 | } |
| 5270 | if (delalloc_lock) |
| 5271 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 5272 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5273 | } |
| 5274 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5275 | /** |
| 5276 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 5277 | * @inode: the inode to release the reservation for |
| 5278 | * @num_bytes: the number of bytes we're releasing |
| 5279 | * |
| 5280 | * This will release the metadata reservation for an inode. This can be called |
| 5281 | * once we complete IO for a given set of bytes to release their metadata |
| 5282 | * reservations. |
| 5283 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5284 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 5285 | { |
| 5286 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5287 | u64 to_free = 0; |
| 5288 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5289 | |
| 5290 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5291 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5292 | dropped = drop_outstanding_extent(inode); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5293 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 5294 | if (num_bytes) |
| 5295 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5296 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5297 | if (dropped > 0) |
| 5298 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5299 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5300 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5301 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5302 | if (root->fs_info->quota_enabled) { |
| 5303 | btrfs_qgroup_free(root, num_bytes + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5304 | dropped * root->nodesize); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5305 | } |
| 5306 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5307 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 5308 | to_free); |
| 5309 | } |
| 5310 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5311 | /** |
| 5312 | * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc |
| 5313 | * @inode: inode we're writing to |
| 5314 | * @num_bytes: the number of bytes we want to allocate |
| 5315 | * |
| 5316 | * This will do the following things |
| 5317 | * |
| 5318 | * o reserve space in the data space info for num_bytes |
| 5319 | * o reserve space in the metadata space info based on number of outstanding |
| 5320 | * extents and how much csums will be needed |
| 5321 | * o add to the inodes ->delalloc_bytes |
| 5322 | * o add it to the fs_info's delalloc inodes list. |
| 5323 | * |
| 5324 | * This will return 0 for success and -ENOSPC if there is no space left. |
| 5325 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5326 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes) |
| 5327 | { |
| 5328 | int ret; |
| 5329 | |
| 5330 | ret = btrfs_check_data_free_space(inode, num_bytes); |
| 5331 | if (ret) |
| 5332 | return ret; |
| 5333 | |
| 5334 | ret = btrfs_delalloc_reserve_metadata(inode, num_bytes); |
| 5335 | if (ret) { |
| 5336 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5337 | return ret; |
| 5338 | } |
| 5339 | |
| 5340 | return 0; |
| 5341 | } |
| 5342 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5343 | /** |
| 5344 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
| 5345 | * @inode: inode we're releasing space for |
| 5346 | * @num_bytes: the number of bytes we want to free up |
| 5347 | * |
| 5348 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 5349 | * called in the case that we don't need the metadata AND data reservations |
| 5350 | * anymore. So if there is an error or we insert an inline extent. |
| 5351 | * |
| 5352 | * This function will release the metadata space that was not used and will |
| 5353 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 5354 | * list if there are no delalloc bytes left. |
| 5355 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5356 | void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes) |
| 5357 | { |
| 5358 | btrfs_delalloc_release_metadata(inode, num_bytes); |
| 5359 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5360 | } |
| 5361 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 5362 | static int update_block_group(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5363 | u64 bytenr, u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5364 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5365 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5366 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5367 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5368 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5369 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5370 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 5371 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5372 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5373 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5374 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5375 | if (alloc) |
| 5376 | old_val += num_bytes; |
| 5377 | else |
| 5378 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5379 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5380 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5381 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5382 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5383 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5384 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5385 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5386 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 5387 | BTRFS_BLOCK_GROUP_RAID1 | |
| 5388 | BTRFS_BLOCK_GROUP_RAID10)) |
| 5389 | factor = 2; |
| 5390 | else |
| 5391 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 5392 | /* |
| 5393 | * If this block group has free space cache written out, we |
| 5394 | * need to make sure to load it if we are removing space. This |
| 5395 | * is because we need the unpinning stage to actually add the |
| 5396 | * space back to the block group, otherwise we will leak space. |
| 5397 | */ |
| 5398 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5399 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5400 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5401 | byte_in_group = bytenr - cache->key.objectid; |
| 5402 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5403 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5404 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5405 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5406 | |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 5407 | if (btrfs_test_opt(root, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5408 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 5409 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 5410 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5411 | cache->dirty = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5412 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5413 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5414 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5415 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5416 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5417 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5418 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5419 | cache->space_info->bytes_used += num_bytes; |
| 5420 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5421 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5422 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5423 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5424 | old_val -= num_bytes; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5425 | btrfs_set_block_group_used(&cache->item, old_val); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5426 | cache->pinned += num_bytes; |
| 5427 | cache->space_info->bytes_pinned += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5428 | cache->space_info->bytes_used -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5429 | cache->space_info->disk_used -= num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5430 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5431 | spin_unlock(&cache->space_info->lock); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5432 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5433 | set_extent_dirty(info->pinned_extents, |
| 5434 | bytenr, bytenr + num_bytes - 1, |
| 5435 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5436 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5437 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5438 | total -= num_bytes; |
| 5439 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5440 | } |
| 5441 | return 0; |
| 5442 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 5443 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5444 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 5445 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5446 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5447 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5448 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 5449 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 5450 | bytenr = root->fs_info->first_logical_byte; |
| 5451 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 5452 | |
| 5453 | if (bytenr < (u64)-1) |
| 5454 | return bytenr; |
| 5455 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5456 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 5457 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5458 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5459 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5460 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5461 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5462 | |
| 5463 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5464 | } |
| 5465 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5466 | static int pin_down_extent(struct btrfs_root *root, |
| 5467 | struct btrfs_block_group_cache *cache, |
| 5468 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5469 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5470 | spin_lock(&cache->space_info->lock); |
| 5471 | spin_lock(&cache->lock); |
| 5472 | cache->pinned += num_bytes; |
| 5473 | cache->space_info->bytes_pinned += num_bytes; |
| 5474 | if (reserved) { |
| 5475 | cache->reserved -= num_bytes; |
| 5476 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5477 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5478 | spin_unlock(&cache->lock); |
| 5479 | spin_unlock(&cache->space_info->lock); |
| 5480 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5481 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 5482 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 5483 | if (reserved) |
| 5484 | trace_btrfs_reserved_extent_free(root, bytenr, num_bytes); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5485 | return 0; |
| 5486 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5487 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5488 | /* |
| 5489 | * this function must be called within transaction |
| 5490 | */ |
| 5491 | int btrfs_pin_extent(struct btrfs_root *root, |
| 5492 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5493 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5494 | struct btrfs_block_group_cache *cache; |
| 5495 | |
| 5496 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5497 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5498 | |
| 5499 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 5500 | |
| 5501 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5502 | return 0; |
| 5503 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5504 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5505 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5506 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5507 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 5508 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5509 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5510 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5511 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5512 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5513 | |
| 5514 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5515 | if (!cache) |
| 5516 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5517 | |
| 5518 | /* |
| 5519 | * pull in the free space cache (if any) so that our pin |
| 5520 | * removes the free space from the cache. We have load_only set |
| 5521 | * to one because the slow code to read in the free extents does check |
| 5522 | * the pinned extents. |
| 5523 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5524 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5525 | |
| 5526 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 5527 | |
| 5528 | /* 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] | 5529 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5530 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5531 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5532 | } |
| 5533 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 5534 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 5535 | { |
| 5536 | int ret; |
| 5537 | struct btrfs_block_group_cache *block_group; |
| 5538 | struct btrfs_caching_control *caching_ctl; |
| 5539 | |
| 5540 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 5541 | if (!block_group) |
| 5542 | return -EINVAL; |
| 5543 | |
| 5544 | cache_block_group(block_group, 0); |
| 5545 | caching_ctl = get_caching_control(block_group); |
| 5546 | |
| 5547 | if (!caching_ctl) { |
| 5548 | /* Logic error */ |
| 5549 | BUG_ON(!block_group_cache_done(block_group)); |
| 5550 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 5551 | } else { |
| 5552 | mutex_lock(&caching_ctl->mutex); |
| 5553 | |
| 5554 | if (start >= caching_ctl->progress) { |
| 5555 | ret = add_excluded_extent(root, start, num_bytes); |
| 5556 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 5557 | ret = btrfs_remove_free_space(block_group, |
| 5558 | start, num_bytes); |
| 5559 | } else { |
| 5560 | num_bytes = caching_ctl->progress - start; |
| 5561 | ret = btrfs_remove_free_space(block_group, |
| 5562 | start, num_bytes); |
| 5563 | if (ret) |
| 5564 | goto out_lock; |
| 5565 | |
| 5566 | num_bytes = (start + num_bytes) - |
| 5567 | caching_ctl->progress; |
| 5568 | start = caching_ctl->progress; |
| 5569 | ret = add_excluded_extent(root, start, num_bytes); |
| 5570 | } |
| 5571 | out_lock: |
| 5572 | mutex_unlock(&caching_ctl->mutex); |
| 5573 | put_caching_control(caching_ctl); |
| 5574 | } |
| 5575 | btrfs_put_block_group(block_group); |
| 5576 | return ret; |
| 5577 | } |
| 5578 | |
| 5579 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 5580 | struct extent_buffer *eb) |
| 5581 | { |
| 5582 | struct btrfs_file_extent_item *item; |
| 5583 | struct btrfs_key key; |
| 5584 | int found_type; |
| 5585 | int i; |
| 5586 | |
| 5587 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 5588 | return 0; |
| 5589 | |
| 5590 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 5591 | btrfs_item_key_to_cpu(eb, &key, i); |
| 5592 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 5593 | continue; |
| 5594 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 5595 | found_type = btrfs_file_extent_type(eb, item); |
| 5596 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 5597 | continue; |
| 5598 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 5599 | continue; |
| 5600 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 5601 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 5602 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 5603 | } |
| 5604 | |
| 5605 | return 0; |
| 5606 | } |
| 5607 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5608 | /** |
| 5609 | * btrfs_update_reserved_bytes - update the block_group and space info counters |
| 5610 | * @cache: The cache we are manipulating |
| 5611 | * @num_bytes: The number of bytes in question |
| 5612 | * @reserve: One of the reservation enums |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5613 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5614 | * |
| 5615 | * This is called by the allocator when it reserves space, or by somebody who is |
| 5616 | * freeing space that was never actually used on disk. For example if you |
| 5617 | * reserve some space for a new leaf in transaction A and before transaction A |
| 5618 | * commits you free that leaf, you call this with reserve set to 0 in order to |
| 5619 | * clear the reservation. |
| 5620 | * |
| 5621 | * Metadata reservations should be called with RESERVE_ALLOC so we do the proper |
| 5622 | * ENOSPC accounting. For data we handle the reservation through clearing the |
| 5623 | * delalloc bits in the io_tree. We have to do this since we could end up |
| 5624 | * allocating less disk space for the amount of data we have reserved in the |
| 5625 | * case of compression. |
| 5626 | * |
| 5627 | * If this is a reservation and the block group has become read only we cannot |
| 5628 | * make the reservation and return -EAGAIN, otherwise this function always |
| 5629 | * succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5630 | */ |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5631 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5632 | u64 num_bytes, int reserve, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5633 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5634 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5635 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5636 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5637 | spin_lock(&space_info->lock); |
| 5638 | spin_lock(&cache->lock); |
| 5639 | if (reserve != RESERVE_FREE) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5640 | if (cache->ro) { |
| 5641 | ret = -EAGAIN; |
| 5642 | } else { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5643 | cache->reserved += num_bytes; |
| 5644 | space_info->bytes_reserved += num_bytes; |
| 5645 | if (reserve == RESERVE_ALLOC) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5646 | trace_btrfs_space_reservation(cache->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5647 | "space_info", space_info->flags, |
| 5648 | num_bytes, 0); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5649 | space_info->bytes_may_use -= num_bytes; |
| 5650 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5651 | |
| 5652 | if (delalloc) |
| 5653 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5654 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5655 | } else { |
| 5656 | if (cache->ro) |
| 5657 | space_info->bytes_readonly += num_bytes; |
| 5658 | cache->reserved -= num_bytes; |
| 5659 | space_info->bytes_reserved -= num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5660 | |
| 5661 | if (delalloc) |
| 5662 | cache->delalloc_bytes -= num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5663 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5664 | spin_unlock(&cache->lock); |
| 5665 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5666 | return ret; |
| 5667 | } |
| 5668 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 5669 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5670 | struct btrfs_root *root) |
| 5671 | { |
| 5672 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5673 | struct btrfs_caching_control *next; |
| 5674 | struct btrfs_caching_control *caching_ctl; |
| 5675 | struct btrfs_block_group_cache *cache; |
| 5676 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 5677 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5678 | |
| 5679 | list_for_each_entry_safe(caching_ctl, next, |
| 5680 | &fs_info->caching_block_groups, list) { |
| 5681 | cache = caching_ctl->block_group; |
| 5682 | if (block_group_cache_done(cache)) { |
| 5683 | cache->last_byte_to_unpin = (u64)-1; |
| 5684 | list_del_init(&caching_ctl->list); |
| 5685 | put_caching_control(caching_ctl); |
| 5686 | } else { |
| 5687 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 5688 | } |
| 5689 | } |
| 5690 | |
| 5691 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5692 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 5693 | else |
| 5694 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 5695 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 5696 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5697 | |
| 5698 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5699 | } |
| 5700 | |
| 5701 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 5702 | { |
| 5703 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5704 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5705 | struct btrfs_space_info *space_info; |
| 5706 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5707 | u64 len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5708 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5709 | |
| 5710 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5711 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5712 | if (!cache || |
| 5713 | start >= cache->key.objectid + cache->key.offset) { |
| 5714 | if (cache) |
| 5715 | btrfs_put_block_group(cache); |
| 5716 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5717 | BUG_ON(!cache); /* Logic error */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5718 | } |
| 5719 | |
| 5720 | len = cache->key.objectid + cache->key.offset - start; |
| 5721 | len = min(len, end + 1 - start); |
| 5722 | |
| 5723 | if (start < cache->last_byte_to_unpin) { |
| 5724 | len = min(len, cache->last_byte_to_unpin - start); |
| 5725 | btrfs_add_free_space(cache, start, len); |
| 5726 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5727 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5728 | start += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5729 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5730 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5731 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5732 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5733 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5734 | space_info->bytes_pinned -= len; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 5735 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5736 | if (cache->ro) { |
| 5737 | space_info->bytes_readonly += len; |
| 5738 | readonly = true; |
| 5739 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5740 | spin_unlock(&cache->lock); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5741 | if (!readonly && global_rsv->space_info == space_info) { |
| 5742 | spin_lock(&global_rsv->lock); |
| 5743 | if (!global_rsv->full) { |
| 5744 | len = min(len, global_rsv->size - |
| 5745 | global_rsv->reserved); |
| 5746 | global_rsv->reserved += len; |
| 5747 | space_info->bytes_may_use += len; |
| 5748 | if (global_rsv->reserved >= global_rsv->size) |
| 5749 | global_rsv->full = 1; |
| 5750 | } |
| 5751 | spin_unlock(&global_rsv->lock); |
| 5752 | } |
| 5753 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5754 | } |
| 5755 | |
| 5756 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5757 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 5758 | return 0; |
| 5759 | } |
| 5760 | |
| 5761 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5762 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5763 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5764 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5765 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc167 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5766 | u64 start; |
| 5767 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5768 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5769 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5770 | if (trans->aborted) |
| 5771 | return 0; |
| 5772 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5773 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5774 | unpin = &fs_info->freed_extents[1]; |
| 5775 | else |
| 5776 | unpin = &fs_info->freed_extents[0]; |
| 5777 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5778 | while (1) { |
Chris Mason | 1a5bc167 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5779 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 5780 | EXTENT_DIRTY, NULL); |
Chris Mason | 1a5bc167 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5781 | if (ret) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5782 | break; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5783 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 5784 | if (btrfs_test_opt(root, DISCARD)) |
| 5785 | ret = btrfs_discard_extent(root, start, |
| 5786 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5787 | |
Chris Mason | 1a5bc167 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5788 | clear_extent_dirty(unpin, start, end, GFP_NOFS); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5789 | unpin_extent_range(root, start, end); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5790 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5791 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 5792 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 5793 | return 0; |
| 5794 | } |
| 5795 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5796 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 5797 | u64 owner, u64 root_objectid) |
| 5798 | { |
| 5799 | struct btrfs_space_info *space_info; |
| 5800 | u64 flags; |
| 5801 | |
| 5802 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 5803 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 5804 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 5805 | else |
| 5806 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 5807 | } else { |
| 5808 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 5809 | } |
| 5810 | |
| 5811 | space_info = __find_space_info(fs_info, flags); |
| 5812 | BUG_ON(!space_info); /* Logic bug */ |
| 5813 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 5814 | } |
| 5815 | |
| 5816 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5817 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 5818 | struct btrfs_root *root, |
| 5819 | u64 bytenr, u64 num_bytes, u64 parent, |
| 5820 | u64 root_objectid, u64 owner_objectid, |
| 5821 | u64 owner_offset, int refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5822 | struct btrfs_delayed_extent_op *extent_op, |
| 5823 | int no_quota) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5824 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 5825 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5826 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 5827 | struct btrfs_fs_info *info = root->fs_info; |
| 5828 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5829 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5830 | struct btrfs_extent_item *ei; |
| 5831 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5832 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5833 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5834 | int extent_slot = 0; |
| 5835 | int found_extent = 0; |
| 5836 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5837 | u32 item_size; |
| 5838 | u64 refs; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5839 | int last_ref = 0; |
| 5840 | enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_SUB_EXCL; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5841 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 5842 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 5843 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5844 | if (!info->quota_enabled || !is_fstree(root_objectid)) |
| 5845 | no_quota = 1; |
| 5846 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 5847 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 5848 | if (!path) |
| 5849 | return -ENOMEM; |
| 5850 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 5851 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5852 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5853 | |
| 5854 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 5855 | BUG_ON(!is_data && refs_to_drop != 1); |
| 5856 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5857 | if (is_data) |
| 5858 | skinny_metadata = 0; |
| 5859 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5860 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 5861 | bytenr, num_bytes, parent, |
| 5862 | root_objectid, owner_objectid, |
| 5863 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5864 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5865 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5866 | while (extent_slot >= 0) { |
| 5867 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5868 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5869 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5870 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5871 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5872 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5873 | found_extent = 1; |
| 5874 | break; |
| 5875 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5876 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 5877 | key.offset == owner_objectid) { |
| 5878 | found_extent = 1; |
| 5879 | break; |
| 5880 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5881 | if (path->slots[0] - extent_slot > 5) |
| 5882 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5883 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5884 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5885 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5886 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 5887 | if (found_extent && item_size < sizeof(*ei)) |
| 5888 | found_extent = 0; |
| 5889 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5890 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5891 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 5892 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5893 | NULL, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5894 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5895 | if (ret) { |
| 5896 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5897 | goto out; |
| 5898 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5899 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5900 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5901 | |
| 5902 | key.objectid = bytenr; |
| 5903 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5904 | key.offset = num_bytes; |
| 5905 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5906 | if (!is_data && skinny_metadata) { |
| 5907 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 5908 | key.offset = owner_objectid; |
| 5909 | } |
| 5910 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5911 | ret = btrfs_search_slot(trans, extent_root, |
| 5912 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5913 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 5914 | /* |
| 5915 | * Couldn't find our skinny metadata item, |
| 5916 | * see if we have ye olde extent item. |
| 5917 | */ |
| 5918 | path->slots[0]--; |
| 5919 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 5920 | path->slots[0]); |
| 5921 | if (key.objectid == bytenr && |
| 5922 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5923 | key.offset == num_bytes) |
| 5924 | ret = 0; |
| 5925 | } |
| 5926 | |
| 5927 | if (ret > 0 && skinny_metadata) { |
| 5928 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 5929 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5930 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5931 | key.offset = num_bytes; |
| 5932 | btrfs_release_path(path); |
| 5933 | ret = btrfs_search_slot(trans, extent_root, |
| 5934 | &key, path, -1, 1); |
| 5935 | } |
| 5936 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5937 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5938 | 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] | 5939 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 5940 | if (ret > 0) |
| 5941 | btrfs_print_leaf(extent_root, |
| 5942 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5943 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5944 | if (ret < 0) { |
| 5945 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5946 | goto out; |
| 5947 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5948 | extent_slot = path->slots[0]; |
| 5949 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 5950 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5951 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5952 | btrfs_err(info, |
| 5953 | "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] | 5954 | bytenr, parent, root_objectid, owner_objectid, |
| 5955 | owner_offset); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 5956 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5957 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5958 | } else { |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5959 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5960 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5961 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5962 | |
| 5963 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5964 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 5965 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5966 | if (item_size < sizeof(*ei)) { |
| 5967 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 5968 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 5969 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5970 | if (ret < 0) { |
| 5971 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5972 | goto out; |
| 5973 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5974 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5975 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5976 | path->leave_spinning = 1; |
| 5977 | |
| 5978 | key.objectid = bytenr; |
| 5979 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5980 | key.offset = num_bytes; |
| 5981 | |
| 5982 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 5983 | -1, 1); |
| 5984 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5985 | 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] | 5986 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5987 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 5988 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5989 | if (ret < 0) { |
| 5990 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5991 | goto out; |
| 5992 | } |
| 5993 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5994 | extent_slot = path->slots[0]; |
| 5995 | leaf = path->nodes[0]; |
| 5996 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 5997 | } |
| 5998 | #endif |
| 5999 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6000 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 6001 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6002 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 6003 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6004 | struct btrfs_tree_block_info *bi; |
| 6005 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 6006 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 6007 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6008 | } |
| 6009 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6010 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6011 | if (refs < refs_to_drop) { |
| 6012 | 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] | 6013 | "for bytenr %Lu", refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6014 | ret = -EINVAL; |
| 6015 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6016 | goto out; |
| 6017 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6018 | refs -= refs_to_drop; |
| 6019 | |
| 6020 | if (refs > 0) { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6021 | type = BTRFS_QGROUP_OPER_SUB_SHARED; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6022 | if (extent_op) |
| 6023 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 6024 | /* |
| 6025 | * In the case of inline back ref, reference count will |
| 6026 | * be updated by remove_extent_backref |
| 6027 | */ |
| 6028 | if (iref) { |
| 6029 | BUG_ON(!found_extent); |
| 6030 | } else { |
| 6031 | btrfs_set_extent_refs(leaf, ei, refs); |
| 6032 | btrfs_mark_buffer_dirty(leaf); |
| 6033 | } |
| 6034 | if (found_extent) { |
| 6035 | ret = remove_extent_backref(trans, extent_root, path, |
| 6036 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6037 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6038 | if (ret) { |
| 6039 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6040 | goto out; |
| 6041 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6042 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6043 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 6044 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6045 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6046 | if (found_extent) { |
| 6047 | BUG_ON(is_data && refs_to_drop != |
| 6048 | extent_data_ref_count(root, path, iref)); |
| 6049 | if (iref) { |
| 6050 | BUG_ON(path->slots[0] != extent_slot); |
| 6051 | } else { |
| 6052 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 6053 | path->slots[0] = extent_slot; |
| 6054 | num_to_del = 2; |
| 6055 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 6056 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6057 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6058 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6059 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 6060 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6061 | if (ret) { |
| 6062 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6063 | goto out; |
| 6064 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6065 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 6066 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6067 | if (is_data) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6068 | ret = btrfs_del_csums(trans, root, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6069 | if (ret) { |
| 6070 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6071 | goto out; |
| 6072 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6073 | } |
| 6074 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 6075 | ret = update_block_group(root, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6076 | if (ret) { |
| 6077 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6078 | goto out; |
| 6079 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6080 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6081 | btrfs_release_path(path); |
| 6082 | |
| 6083 | /* Deal with the quota accounting */ |
| 6084 | if (!ret && last_ref && !no_quota) { |
| 6085 | int mod_seq = 0; |
| 6086 | |
| 6087 | if (owner_objectid >= BTRFS_FIRST_FREE_OBJECTID && |
| 6088 | type == BTRFS_QGROUP_OPER_SUB_SHARED) |
| 6089 | mod_seq = 1; |
| 6090 | |
| 6091 | ret = btrfs_qgroup_record_ref(trans, info, root_objectid, |
| 6092 | bytenr, num_bytes, type, |
| 6093 | mod_seq); |
| 6094 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6095 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6096 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6097 | return ret; |
| 6098 | } |
| 6099 | |
| 6100 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6101 | * 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] | 6102 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 6103 | * a given extent, and if there are no other delayed refs to be processed, it |
| 6104 | * removes it from the tree. |
| 6105 | */ |
| 6106 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 6107 | struct btrfs_root *root, u64 bytenr) |
| 6108 | { |
| 6109 | struct btrfs_delayed_ref_head *head; |
| 6110 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6111 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6112 | |
| 6113 | delayed_refs = &trans->transaction->delayed_refs; |
| 6114 | spin_lock(&delayed_refs->lock); |
| 6115 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 6116 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6117 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6118 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6119 | spin_lock(&head->lock); |
| 6120 | if (rb_first(&head->ref_root)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6121 | goto out; |
| 6122 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6123 | if (head->extent_op) { |
| 6124 | if (!head->must_insert_reserved) |
| 6125 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 6126 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6127 | head->extent_op = NULL; |
| 6128 | } |
| 6129 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6130 | /* |
| 6131 | * waiting for the lock here would deadlock. If someone else has it |
| 6132 | * locked they are already in the process of dropping it anyway |
| 6133 | */ |
| 6134 | if (!mutex_trylock(&head->mutex)) |
| 6135 | goto out; |
| 6136 | |
| 6137 | /* |
| 6138 | * at this point we have a head with no other entries. Go |
| 6139 | * ahead and process it. |
| 6140 | */ |
| 6141 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 6142 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6143 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6144 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6145 | |
| 6146 | /* |
| 6147 | * we don't take a ref on the node because we're removing it from the |
| 6148 | * tree, so we just steal the ref the tree was holding. |
| 6149 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6150 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6151 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6152 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6153 | head->processing = 0; |
| 6154 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6155 | spin_unlock(&delayed_refs->lock); |
| 6156 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6157 | BUG_ON(head->extent_op); |
| 6158 | if (head->must_insert_reserved) |
| 6159 | ret = 1; |
| 6160 | |
| 6161 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6162 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6163 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6164 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6165 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6166 | |
| 6167 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6168 | spin_unlock(&delayed_refs->lock); |
| 6169 | return 0; |
| 6170 | } |
| 6171 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6172 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 6173 | struct btrfs_root *root, |
| 6174 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6175 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6176 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6177 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6178 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6179 | int ret; |
| 6180 | |
| 6181 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6182 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 6183 | buf->start, buf->len, |
| 6184 | parent, root->root_key.objectid, |
| 6185 | btrfs_header_level(buf), |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6186 | BTRFS_DROP_DELAYED_REF, NULL, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6187 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6188 | } |
| 6189 | |
| 6190 | if (!last_ref) |
| 6191 | return; |
| 6192 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6193 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6194 | |
| 6195 | if (btrfs_header_generation(buf) == trans->transid) { |
| 6196 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 6197 | ret = check_ref_cleanup(trans, root, buf->start); |
| 6198 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6199 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6200 | } |
| 6201 | |
| 6202 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 6203 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6204 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6205 | } |
| 6206 | |
| 6207 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 6208 | |
| 6209 | btrfs_add_free_space(cache, buf->start, buf->len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6210 | btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6211 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6212 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6213 | } |
| 6214 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6215 | if (pin) |
| 6216 | add_pinned_bytes(root->fs_info, buf->len, |
| 6217 | btrfs_header_level(buf), |
| 6218 | root->root_key.objectid); |
| 6219 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 6220 | /* |
| 6221 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 6222 | * anymore. |
| 6223 | */ |
| 6224 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6225 | btrfs_put_block_group(cache); |
| 6226 | } |
| 6227 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6228 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6229 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6230 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6231 | u64 owner, u64 offset, int no_quota) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6232 | { |
| 6233 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6234 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6235 | |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 6236 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
| 6237 | if (unlikely(test_bit(BTRFS_ROOT_DUMMY_ROOT, &root->state))) |
| 6238 | return 0; |
| 6239 | #endif |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6240 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 6241 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6242 | /* |
| 6243 | * tree log blocks never actually go into the extent allocation |
| 6244 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6245 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6246 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 6247 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6248 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6249 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6250 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6251 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6252 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 6253 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6254 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6255 | BTRFS_DROP_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6256 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6257 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 6258 | num_bytes, |
| 6259 | parent, root_objectid, owner, |
| 6260 | offset, BTRFS_DROP_DELAYED_REF, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6261 | NULL, no_quota); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6262 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6263 | return ret; |
| 6264 | } |
| 6265 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6266 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6267 | * when we wait for progress in the block group caching, its because |
| 6268 | * our allocation attempt failed at least once. So, we must sleep |
| 6269 | * and let some progress happen before we try again. |
| 6270 | * |
| 6271 | * This function will sleep at least once waiting for new free space to |
| 6272 | * show up, and then it will check the block group free space numbers |
| 6273 | * for our min num_bytes. Another option is to have it go ahead |
| 6274 | * and look in the rbtree for a free extent of a given size, but this |
| 6275 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6276 | * |
| 6277 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 6278 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6279 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6280 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6281 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 6282 | u64 num_bytes) |
| 6283 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6284 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6285 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6286 | caching_ctl = get_caching_control(cache); |
| 6287 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6288 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6289 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6290 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 6291 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6292 | |
| 6293 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6294 | } |
| 6295 | |
| 6296 | static noinline int |
| 6297 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 6298 | { |
| 6299 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6300 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6301 | |
| 6302 | caching_ctl = get_caching_control(cache); |
| 6303 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6304 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6305 | |
| 6306 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6307 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 6308 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6309 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6310 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6311 | } |
| 6312 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6313 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6314 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6315 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6316 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6317 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6318 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6319 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6320 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6321 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6322 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6323 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6324 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6325 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6326 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6327 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6328 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6329 | } |
| 6330 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6331 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6332 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6333 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6334 | } |
| 6335 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6336 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 6337 | [BTRFS_RAID_RAID10] = "raid10", |
| 6338 | [BTRFS_RAID_RAID1] = "raid1", |
| 6339 | [BTRFS_RAID_DUP] = "dup", |
| 6340 | [BTRFS_RAID_RAID0] = "raid0", |
| 6341 | [BTRFS_RAID_SINGLE] = "single", |
| 6342 | [BTRFS_RAID_RAID5] = "raid5", |
| 6343 | [BTRFS_RAID_RAID6] = "raid6", |
| 6344 | }; |
| 6345 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 6346 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6347 | { |
| 6348 | if (type >= BTRFS_NR_RAID_TYPES) |
| 6349 | return NULL; |
| 6350 | |
| 6351 | return btrfs_raid_type_names[type]; |
| 6352 | } |
| 6353 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6354 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6355 | LOOP_CACHING_NOWAIT = 0, |
| 6356 | LOOP_CACHING_WAIT = 1, |
| 6357 | LOOP_ALLOC_CHUNK = 2, |
| 6358 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6359 | }; |
| 6360 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6361 | static inline void |
| 6362 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 6363 | int delalloc) |
| 6364 | { |
| 6365 | if (delalloc) |
| 6366 | down_read(&cache->data_rwsem); |
| 6367 | } |
| 6368 | |
| 6369 | static inline void |
| 6370 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 6371 | int delalloc) |
| 6372 | { |
| 6373 | btrfs_get_block_group(cache); |
| 6374 | if (delalloc) |
| 6375 | down_read(&cache->data_rwsem); |
| 6376 | } |
| 6377 | |
| 6378 | static struct btrfs_block_group_cache * |
| 6379 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 6380 | struct btrfs_free_cluster *cluster, |
| 6381 | int delalloc) |
| 6382 | { |
| 6383 | struct btrfs_block_group_cache *used_bg; |
| 6384 | bool locked = false; |
| 6385 | again: |
| 6386 | spin_lock(&cluster->refill_lock); |
| 6387 | if (locked) { |
| 6388 | if (used_bg == cluster->block_group) |
| 6389 | return used_bg; |
| 6390 | |
| 6391 | up_read(&used_bg->data_rwsem); |
| 6392 | btrfs_put_block_group(used_bg); |
| 6393 | } |
| 6394 | |
| 6395 | used_bg = cluster->block_group; |
| 6396 | if (!used_bg) |
| 6397 | return NULL; |
| 6398 | |
| 6399 | if (used_bg == block_group) |
| 6400 | return used_bg; |
| 6401 | |
| 6402 | btrfs_get_block_group(used_bg); |
| 6403 | |
| 6404 | if (!delalloc) |
| 6405 | return used_bg; |
| 6406 | |
| 6407 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 6408 | return used_bg; |
| 6409 | |
| 6410 | spin_unlock(&cluster->refill_lock); |
| 6411 | down_read(&used_bg->data_rwsem); |
| 6412 | locked = true; |
| 6413 | goto again; |
| 6414 | } |
| 6415 | |
| 6416 | static inline void |
| 6417 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 6418 | int delalloc) |
| 6419 | { |
| 6420 | if (delalloc) |
| 6421 | up_read(&cache->data_rwsem); |
| 6422 | btrfs_put_block_group(cache); |
| 6423 | } |
| 6424 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6425 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6426 | * walks the btree of allocated extents and find a hole of a given size. |
| 6427 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6428 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 6429 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6430 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6431 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6432 | * |
| 6433 | * If there is no suitable free space, we will record the max size of |
| 6434 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6435 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6436 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6437 | u64 num_bytes, u64 empty_size, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6438 | u64 hint_byte, struct btrfs_key *ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6439 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6440 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6441 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6442 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6443 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6444 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 6445 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6446 | u64 max_extent_size = 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6447 | int empty_cluster = 2 * 1024 * 1024; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6448 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6449 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6450 | int index = __get_raid_index(flags); |
| 6451 | int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ? |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6452 | RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC; |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6453 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6454 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6455 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6456 | bool have_caching_bg = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6457 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6458 | WARN_ON(num_bytes < root->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 6459 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6460 | ins->objectid = 0; |
| 6461 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6462 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6463 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6464 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6465 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6466 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6467 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6468 | return -ENOSPC; |
| 6469 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6470 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6471 | /* |
| 6472 | * If the space info is for both data and metadata it means we have a |
| 6473 | * small filesystem and we can't use the clustering stuff. |
| 6474 | */ |
| 6475 | if (btrfs_mixed_space_info(space_info)) |
| 6476 | use_cluster = false; |
| 6477 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6478 | if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6479 | last_ptr = &root->fs_info->meta_alloc_cluster; |
Chris Mason | 536ac8a | 2009-02-12 09:41:38 -0500 | [diff] [blame] | 6480 | if (!btrfs_test_opt(root, SSD)) |
| 6481 | empty_cluster = 64 * 1024; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6482 | } |
| 6483 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6484 | if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster && |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6485 | btrfs_test_opt(root, SSD)) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6486 | last_ptr = &root->fs_info->data_alloc_cluster; |
| 6487 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6488 | |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6489 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6490 | spin_lock(&last_ptr->lock); |
| 6491 | if (last_ptr->block_group) |
| 6492 | hint_byte = last_ptr->window_start; |
| 6493 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6494 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6495 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6496 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6497 | search_start = max(search_start, hint_byte); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6498 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6499 | if (!last_ptr) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6500 | empty_cluster = 0; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6501 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6502 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6503 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 6504 | search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6505 | /* |
| 6506 | * we don't want to use the block group if it doesn't match our |
| 6507 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6508 | * |
| 6509 | * However if we are re-searching with an ideal block group |
| 6510 | * 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] | 6511 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6512 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6513 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6514 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6515 | if (list_empty(&block_group->list) || |
| 6516 | block_group->ro) { |
| 6517 | /* |
| 6518 | * someone is removing this block group, |
| 6519 | * we can't jump into the have_block_group |
| 6520 | * target because our list pointers are not |
| 6521 | * valid |
| 6522 | */ |
| 6523 | btrfs_put_block_group(block_group); |
| 6524 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6525 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6526 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6527 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6528 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6529 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6530 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6531 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6532 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6533 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6534 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6535 | have_caching_bg = false; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6536 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6537 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 6538 | list) { |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6539 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6540 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 6541 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6542 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6543 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6544 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6545 | /* |
| 6546 | * this can happen if we end up cycling through all the |
| 6547 | * raid types, but we want to make sure we only allocate |
| 6548 | * for the proper type. |
| 6549 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6550 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6551 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 6552 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6553 | BTRFS_BLOCK_GROUP_RAID5 | |
| 6554 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6555 | BTRFS_BLOCK_GROUP_RAID10; |
| 6556 | |
| 6557 | /* |
| 6558 | * if they asked for extra copies and this block group |
| 6559 | * doesn't provide them, bail. This does allow us to |
| 6560 | * fill raid0 from raid1. |
| 6561 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6562 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6563 | goto loop; |
| 6564 | } |
| 6565 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6566 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6567 | cached = block_group_cache_done(block_group); |
| 6568 | if (unlikely(!cached)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6569 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 6570 | BUG_ON(ret < 0); |
| 6571 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6572 | } |
| 6573 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6574 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 6575 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6576 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6577 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6578 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6579 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6580 | * Ok we want to try and use the cluster allocator, so |
| 6581 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6582 | */ |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6583 | if (last_ptr) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6584 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6585 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6586 | /* |
| 6587 | * the refill lock keeps out other |
| 6588 | * people trying to start a new cluster |
| 6589 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6590 | used_block_group = btrfs_lock_cluster(block_group, |
| 6591 | last_ptr, |
| 6592 | delalloc); |
| 6593 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6594 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6595 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6596 | if (used_block_group != block_group && |
| 6597 | (used_block_group->ro || |
| 6598 | !block_group_bits(used_block_group, flags))) |
| 6599 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6600 | |
| 6601 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6602 | last_ptr, |
| 6603 | num_bytes, |
| 6604 | used_block_group->key.objectid, |
| 6605 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6606 | if (offset) { |
| 6607 | /* we have a block, we're done */ |
| 6608 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6609 | trace_btrfs_reserve_extent_cluster(root, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 6610 | used_block_group, |
| 6611 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6612 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6613 | btrfs_release_block_group(block_group, |
| 6614 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6615 | block_group = used_block_group; |
| 6616 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6617 | goto checks; |
| 6618 | } |
| 6619 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6620 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6621 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6622 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 6623 | * set up a new clusters, so lets just skip it |
| 6624 | * and let the allocator find whatever block |
| 6625 | * it can find. If we reach this point, we |
| 6626 | * will have tried the cluster allocator |
| 6627 | * plenty of times and not have found |
| 6628 | * anything, so we are likely way too |
| 6629 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6630 | * anything. |
| 6631 | * |
| 6632 | * However, if the cluster is taken from the |
| 6633 | * current block group, release the cluster |
| 6634 | * first, so that we stand a better chance of |
| 6635 | * succeeding in the unclustered |
| 6636 | * allocation. */ |
| 6637 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6638 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6639 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6640 | btrfs_release_block_group(used_block_group, |
| 6641 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6642 | goto unclustered_alloc; |
| 6643 | } |
| 6644 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6645 | /* |
| 6646 | * this cluster didn't work out, free it and |
| 6647 | * start over |
| 6648 | */ |
| 6649 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 6650 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6651 | if (used_block_group != block_group) |
| 6652 | btrfs_release_block_group(used_block_group, |
| 6653 | delalloc); |
| 6654 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6655 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 6656 | spin_unlock(&last_ptr->refill_lock); |
| 6657 | goto unclustered_alloc; |
| 6658 | } |
| 6659 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6660 | aligned_cluster = max_t(unsigned long, |
| 6661 | empty_cluster + empty_size, |
| 6662 | block_group->full_stripe_len); |
| 6663 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6664 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6665 | ret = btrfs_find_space_cluster(root, block_group, |
| 6666 | last_ptr, search_start, |
| 6667 | num_bytes, |
| 6668 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6669 | if (ret == 0) { |
| 6670 | /* |
| 6671 | * now pull our allocation out of this |
| 6672 | * cluster |
| 6673 | */ |
| 6674 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6675 | last_ptr, |
| 6676 | num_bytes, |
| 6677 | search_start, |
| 6678 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6679 | if (offset) { |
| 6680 | /* we found one, proceed */ |
| 6681 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6682 | trace_btrfs_reserve_extent_cluster(root, |
| 6683 | block_group, search_start, |
| 6684 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6685 | goto checks; |
| 6686 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6687 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 6688 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6689 | spin_unlock(&last_ptr->refill_lock); |
| 6690 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6691 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6692 | wait_block_group_cache_progress(block_group, |
| 6693 | num_bytes + empty_cluster + empty_size); |
| 6694 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6695 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6696 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6697 | /* |
| 6698 | * at this point we either didn't find a cluster |
| 6699 | * or we weren't able to allocate a block from our |
| 6700 | * cluster. Free the cluster we've been trying |
| 6701 | * to use, and go to the next block group |
| 6702 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6703 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6704 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6705 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6706 | } |
| 6707 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6708 | unclustered_alloc: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6709 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 6710 | if (cached && |
| 6711 | block_group->free_space_ctl->free_space < |
| 6712 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6713 | if (block_group->free_space_ctl->free_space > |
| 6714 | max_extent_size) |
| 6715 | max_extent_size = |
| 6716 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6717 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6718 | goto loop; |
| 6719 | } |
| 6720 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6721 | |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6722 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6723 | num_bytes, empty_size, |
| 6724 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6725 | /* |
| 6726 | * If we didn't find a chunk, and we haven't failed on this |
| 6727 | * block group before, and this block group is in the middle of |
| 6728 | * caching and we are ok with waiting, then go ahead and wait |
| 6729 | * for progress to be made, and set failed_alloc to true. |
| 6730 | * |
| 6731 | * If failed_alloc is true then we've already waited on this |
| 6732 | * block group once and should move on to the next block group. |
| 6733 | */ |
| 6734 | if (!offset && !failed_alloc && !cached && |
| 6735 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6736 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6737 | num_bytes + empty_size); |
| 6738 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6739 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6740 | } else if (!offset) { |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6741 | if (!cached) |
| 6742 | have_caching_bg = true; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6743 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6744 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6745 | checks: |
David Sterba | 4e54b17 | 2014-06-05 01:39:19 +0200 | [diff] [blame^] | 6746 | search_start = ALIGN(offset, root->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 6747 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6748 | /* move on to the next group */ |
| 6749 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6750 | block_group->key.objectid + block_group->key.offset) { |
| 6751 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6752 | goto loop; |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6753 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6754 | |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6755 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6756 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6757 | search_start - offset); |
| 6758 | BUG_ON(offset > search_start); |
| 6759 | |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6760 | ret = btrfs_update_reserved_bytes(block_group, num_bytes, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6761 | alloc_type, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6762 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6763 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6764 | goto loop; |
| 6765 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6766 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6767 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6768 | ins->objectid = search_start; |
| 6769 | ins->offset = num_bytes; |
| 6770 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6771 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 6772 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6773 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6774 | break; |
| 6775 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6776 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6777 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6778 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6779 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6780 | } |
| 6781 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 6782 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6783 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 6784 | goto search; |
| 6785 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6786 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 6787 | goto search; |
| 6788 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6789 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6790 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 6791 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6792 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 6793 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 6794 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 6795 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6796 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6797 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6798 | index = 0; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6799 | loop++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6800 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6801 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 6802 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6803 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 6804 | trans = current->journal_info; |
| 6805 | if (trans) |
| 6806 | exist = 1; |
| 6807 | else |
| 6808 | trans = btrfs_join_transaction(root); |
| 6809 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6810 | if (IS_ERR(trans)) { |
| 6811 | ret = PTR_ERR(trans); |
| 6812 | goto out; |
| 6813 | } |
| 6814 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6815 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6816 | CHUNK_ALLOC_FORCE); |
| 6817 | /* |
| 6818 | * Do not bail out on ENOSPC since we |
| 6819 | * can do more things. |
| 6820 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6821 | if (ret < 0 && ret != -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6822 | btrfs_abort_transaction(trans, |
| 6823 | root, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6824 | else |
| 6825 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 6826 | if (!exist) |
| 6827 | btrfs_end_transaction(trans, root); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6828 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6829 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6830 | } |
| 6831 | |
| 6832 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6833 | empty_size = 0; |
| 6834 | empty_cluster = 0; |
| 6835 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6836 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6837 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6838 | } else if (!ins->objectid) { |
| 6839 | ret = -ENOSPC; |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6840 | } else if (ins->objectid) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6841 | ret = 0; |
| 6842 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6843 | out: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6844 | if (ret == -ENOSPC) |
| 6845 | ins->offset = max_extent_size; |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 6846 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6847 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 6848 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6849 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 6850 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6851 | { |
| 6852 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6853 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6854 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6855 | spin_lock(&info->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6856 | 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] | 6857 | info->flags, |
| 6858 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 6859 | info->bytes_reserved - info->bytes_readonly, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6860 | (info->full) ? "" : "not "); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6861 | printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, " |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6862 | "reserved=%llu, may_use=%llu, readonly=%llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6863 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 6864 | info->bytes_reserved, info->bytes_may_use, |
| 6865 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6866 | spin_unlock(&info->lock); |
| 6867 | |
| 6868 | if (!dump_block_groups) |
| 6869 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6870 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6871 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6872 | again: |
| 6873 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6874 | spin_lock(&cache->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6875 | printk(KERN_INFO "BTRFS: " |
| 6876 | "block group %llu has %llu bytes, " |
| 6877 | "%llu used %llu pinned %llu reserved %s\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6878 | cache->key.objectid, cache->key.offset, |
| 6879 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 6880 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6881 | btrfs_dump_free_space(cache, bytes); |
| 6882 | spin_unlock(&cache->lock); |
| 6883 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6884 | if (++index < BTRFS_NR_RAID_TYPES) |
| 6885 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6886 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6887 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6888 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6889 | int btrfs_reserve_extent(struct btrfs_root *root, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6890 | u64 num_bytes, u64 min_alloc_size, |
| 6891 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6892 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6893 | { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6894 | bool final_tried = false; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6895 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6896 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6897 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6898 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 6899 | again: |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6900 | WARN_ON(num_bytes < root->sectorsize); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6901 | ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6902 | flags, delalloc); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6903 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6904 | if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6905 | if (!final_tried && ins->offset) { |
| 6906 | num_bytes = min(num_bytes >> 1, ins->offset); |
Zach Brown | 24542bf | 2012-11-16 00:04:43 +0000 | [diff] [blame] | 6907 | num_bytes = round_down(num_bytes, root->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6908 | num_bytes = max(num_bytes, min_alloc_size); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6909 | if (num_bytes == min_alloc_size) |
| 6910 | final_tried = true; |
| 6911 | goto again; |
| 6912 | } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 6913 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6914 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6915 | sinfo = __find_space_info(root->fs_info, flags); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6916 | btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6917 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 6918 | if (sinfo) |
| 6919 | dump_space_info(sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6920 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6921 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6922 | |
| 6923 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6924 | } |
| 6925 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6926 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6927 | u64 start, u64 len, |
| 6928 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6929 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6930 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6931 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6932 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6933 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 6934 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6935 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6936 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6937 | return -ENOSPC; |
| 6938 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6939 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6940 | if (btrfs_test_opt(root, DISCARD)) |
| 6941 | ret = btrfs_discard_extent(root, start, len, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6942 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6943 | if (pin) |
| 6944 | pin_down_extent(root, cache, start, len, 1); |
| 6945 | else { |
| 6946 | btrfs_add_free_space(cache, start, len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6947 | btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6948 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6949 | btrfs_put_block_group(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6950 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 6951 | trace_btrfs_reserved_extent_free(root, start, len); |
| 6952 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6953 | return ret; |
| 6954 | } |
| 6955 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6956 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6957 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6958 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6959 | return __btrfs_free_reserved_extent(root, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6960 | } |
| 6961 | |
| 6962 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 6963 | u64 start, u64 len) |
| 6964 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6965 | return __btrfs_free_reserved_extent(root, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6966 | } |
| 6967 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6968 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 6969 | struct btrfs_root *root, |
| 6970 | u64 parent, u64 root_objectid, |
| 6971 | u64 flags, u64 owner, u64 offset, |
| 6972 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6973 | { |
| 6974 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6975 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6976 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6977 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6978 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6979 | struct extent_buffer *leaf; |
| 6980 | int type; |
| 6981 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 6982 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6983 | if (parent > 0) |
| 6984 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 6985 | else |
| 6986 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6987 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6988 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6989 | |
| 6990 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 6991 | if (!path) |
| 6992 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6993 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6994 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6995 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 6996 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6997 | if (ret) { |
| 6998 | btrfs_free_path(path); |
| 6999 | return ret; |
| 7000 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7001 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7002 | leaf = path->nodes[0]; |
| 7003 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7004 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7005 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 7006 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7007 | btrfs_set_extent_flags(leaf, extent_item, |
| 7008 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7009 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7010 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 7011 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 7012 | if (parent > 0) { |
| 7013 | struct btrfs_shared_data_ref *ref; |
| 7014 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 7015 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7016 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 7017 | } else { |
| 7018 | struct btrfs_extent_data_ref *ref; |
| 7019 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 7020 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 7021 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 7022 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 7023 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 7024 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7025 | |
| 7026 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7027 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 7028 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7029 | /* Always set parent to 0 here since its exclusive anyway. */ |
| 7030 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 7031 | ins->objectid, ins->offset, |
| 7032 | BTRFS_QGROUP_OPER_ADD_EXCL, 0); |
| 7033 | if (ret) |
| 7034 | return ret; |
| 7035 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 7036 | ret = update_block_group(root, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7037 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7038 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7039 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 7040 | BUG(); |
| 7041 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7042 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7043 | return ret; |
| 7044 | } |
| 7045 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7046 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 7047 | struct btrfs_root *root, |
| 7048 | u64 parent, u64 root_objectid, |
| 7049 | u64 flags, struct btrfs_disk_key *key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7050 | int level, struct btrfs_key *ins, |
| 7051 | int no_quota) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7052 | { |
| 7053 | int ret; |
| 7054 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 7055 | struct btrfs_extent_item *extent_item; |
| 7056 | struct btrfs_tree_block_info *block_info; |
| 7057 | struct btrfs_extent_inline_ref *iref; |
| 7058 | struct btrfs_path *path; |
| 7059 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7060 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7061 | u64 num_bytes = ins->offset; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7062 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7063 | SKINNY_METADATA); |
| 7064 | |
| 7065 | if (!skinny_metadata) |
| 7066 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7067 | |
| 7068 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7069 | if (!path) { |
| 7070 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7071 | root->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 7072 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7073 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7074 | |
| 7075 | path->leave_spinning = 1; |
| 7076 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 7077 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7078 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7079 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7080 | root->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7081 | btrfs_free_path(path); |
| 7082 | return ret; |
| 7083 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7084 | |
| 7085 | leaf = path->nodes[0]; |
| 7086 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 7087 | struct btrfs_extent_item); |
| 7088 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 7089 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7090 | btrfs_set_extent_flags(leaf, extent_item, |
| 7091 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7092 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7093 | if (skinny_metadata) { |
| 7094 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7095 | num_bytes = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7096 | } else { |
| 7097 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 7098 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 7099 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 7100 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 7101 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7102 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7103 | if (parent > 0) { |
| 7104 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 7105 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7106 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 7107 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7108 | } else { |
| 7109 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7110 | BTRFS_TREE_BLOCK_REF_KEY); |
| 7111 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 7112 | } |
| 7113 | |
| 7114 | btrfs_mark_buffer_dirty(leaf); |
| 7115 | btrfs_free_path(path); |
| 7116 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7117 | if (!no_quota) { |
| 7118 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 7119 | ins->objectid, num_bytes, |
| 7120 | BTRFS_QGROUP_OPER_ADD_EXCL, 0); |
| 7121 | if (ret) |
| 7122 | return ret; |
| 7123 | } |
| 7124 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7125 | ret = update_block_group(root, ins->objectid, root->nodesize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7126 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7127 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7128 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7129 | BUG(); |
| 7130 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7131 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7132 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7133 | return ret; |
| 7134 | } |
| 7135 | |
| 7136 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 7137 | struct btrfs_root *root, |
| 7138 | u64 root_objectid, u64 owner, |
| 7139 | u64 offset, struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7140 | { |
| 7141 | int ret; |
Chris Mason | 1c2308f | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 7142 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7143 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7144 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7145 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 7146 | ins->offset, 0, |
| 7147 | root_objectid, owner, offset, |
| 7148 | BTRFS_ADD_DELAYED_EXTENT, NULL, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7149 | return ret; |
| 7150 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7151 | |
| 7152 | /* |
| 7153 | * this is used by the tree logging recovery code. It records that |
| 7154 | * an extent has been allocated and makes sure to clear the free |
| 7155 | * space cache bits as well |
| 7156 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7157 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 7158 | struct btrfs_root *root, |
| 7159 | u64 root_objectid, u64 owner, u64 offset, |
| 7160 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7161 | { |
| 7162 | int ret; |
| 7163 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7164 | |
| 7165 | /* |
| 7166 | * Mixed block groups will exclude before processing the log so we only |
| 7167 | * need to do the exlude dance if this fs isn't mixed. |
| 7168 | */ |
| 7169 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 7170 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 7171 | if (ret) |
| 7172 | return ret; |
| 7173 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7174 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7175 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7176 | if (!block_group) |
| 7177 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7178 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 7179 | ret = btrfs_update_reserved_bytes(block_group, ins->offset, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7180 | RESERVE_ALLOC_NO_ACCOUNT, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7181 | BUG_ON(ret); /* logic error */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7182 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 7183 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 7184 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7185 | return ret; |
| 7186 | } |
| 7187 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7188 | static struct extent_buffer * |
| 7189 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 7190 | u64 bytenr, u32 blocksize, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7191 | { |
| 7192 | struct extent_buffer *buf; |
| 7193 | |
| 7194 | buf = btrfs_find_create_tree_block(root, bytenr, blocksize); |
| 7195 | if (!buf) |
| 7196 | return ERR_PTR(-ENOMEM); |
| 7197 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 7198 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7199 | btrfs_tree_lock(buf); |
| 7200 | clean_tree_block(trans, root, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 7201 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7202 | |
| 7203 | btrfs_set_lock_blocking(buf); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7204 | btrfs_set_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7205 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7206 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 7207 | /* |
| 7208 | * we allow two log transactions at a time, use different |
| 7209 | * EXENT bit to differentiate dirty pages. |
| 7210 | */ |
| 7211 | if (root->log_transid % 2 == 0) |
| 7212 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 7213 | buf->start + buf->len - 1, GFP_NOFS); |
| 7214 | else |
| 7215 | set_extent_new(&root->dirty_log_pages, buf->start, |
| 7216 | buf->start + buf->len - 1, GFP_NOFS); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7217 | } else { |
| 7218 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 7219 | buf->start + buf->len - 1, GFP_NOFS); |
| 7220 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7221 | trans->blocks_used++; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7222 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7223 | return buf; |
| 7224 | } |
| 7225 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7226 | static struct btrfs_block_rsv * |
| 7227 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 7228 | struct btrfs_root *root, u32 blocksize) |
| 7229 | { |
| 7230 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 7231 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7232 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7233 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7234 | |
| 7235 | block_rsv = get_block_rsv(trans, root); |
| 7236 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7237 | if (unlikely(block_rsv->size == 0)) |
| 7238 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7239 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7240 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 7241 | if (!ret) |
| 7242 | return block_rsv; |
| 7243 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7244 | if (block_rsv->failfast) |
| 7245 | return ERR_PTR(ret); |
| 7246 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7247 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 7248 | global_updated = true; |
| 7249 | update_global_block_rsv(root->fs_info); |
| 7250 | goto again; |
| 7251 | } |
| 7252 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7253 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 7254 | static DEFINE_RATELIMIT_STATE(_rs, |
| 7255 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 7256 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 7257 | if (__ratelimit(&_rs)) |
| 7258 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7259 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7260 | } |
| 7261 | try_reserve: |
| 7262 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 7263 | BTRFS_RESERVE_NO_FLUSH); |
| 7264 | if (!ret) |
| 7265 | return block_rsv; |
| 7266 | /* |
| 7267 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7268 | * the global reserve if its space type is the same as the global |
| 7269 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7270 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7271 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 7272 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7273 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 7274 | if (!ret) |
| 7275 | return global_rsv; |
| 7276 | } |
| 7277 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7278 | } |
| 7279 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7280 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 7281 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7282 | { |
| 7283 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7284 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7285 | } |
| 7286 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7287 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7288 | * finds a free extent and does all the dirty work required for allocation |
| 7289 | * returns the key for the extent through ins, and a tree buffer for |
| 7290 | * the first block of the extent through buf. |
| 7291 | * |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7292 | * returns the tree buffer or NULL. |
| 7293 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7294 | struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7295 | struct btrfs_root *root, u32 blocksize, |
| 7296 | u64 parent, u64 root_objectid, |
| 7297 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7298 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7299 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 7300 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7301 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7302 | struct extent_buffer *buf; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7303 | u64 flags = 0; |
| 7304 | int ret; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7305 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7306 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7307 | |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7308 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
| 7309 | if (unlikely(test_bit(BTRFS_ROOT_DUMMY_ROOT, &root->state))) { |
| 7310 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
| 7311 | blocksize, level); |
| 7312 | if (!IS_ERR(buf)) |
| 7313 | root->alloc_bytenr += blocksize; |
| 7314 | return buf; |
| 7315 | } |
| 7316 | #endif |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7317 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 7318 | if (IS_ERR(block_rsv)) |
| 7319 | return ERR_CAST(block_rsv); |
| 7320 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7321 | ret = btrfs_reserve_extent(root, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7322 | empty_size, hint, &ins, 0, 0); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7323 | if (ret) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7324 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7325 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7326 | } |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 7327 | |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 7328 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, |
| 7329 | blocksize, level); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7330 | BUG_ON(IS_ERR(buf)); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7331 | |
| 7332 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 7333 | if (parent == 0) |
| 7334 | parent = ins.objectid; |
| 7335 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7336 | } else |
| 7337 | BUG_ON(parent > 0); |
| 7338 | |
| 7339 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 7340 | struct btrfs_delayed_extent_op *extent_op; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7341 | extent_op = btrfs_alloc_delayed_extent_op(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7342 | BUG_ON(!extent_op); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7343 | if (key) |
| 7344 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 7345 | else |
| 7346 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 7347 | extent_op->flags_to_set = flags; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7348 | if (skinny_metadata) |
| 7349 | extent_op->update_key = 0; |
| 7350 | else |
| 7351 | extent_op->update_key = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7352 | extent_op->update_flags = 1; |
| 7353 | extent_op->is_data = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7354 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7355 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7356 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 7357 | ins.objectid, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7358 | ins.offset, parent, root_objectid, |
| 7359 | level, BTRFS_ADD_DELAYED_EXTENT, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7360 | extent_op, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7361 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7362 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7363 | return buf; |
| 7364 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7365 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7366 | struct walk_control { |
| 7367 | u64 refs[BTRFS_MAX_LEVEL]; |
| 7368 | u64 flags[BTRFS_MAX_LEVEL]; |
| 7369 | struct btrfs_key update_progress; |
| 7370 | int stage; |
| 7371 | int level; |
| 7372 | int shared_level; |
| 7373 | int update_ref; |
| 7374 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7375 | int reada_slot; |
| 7376 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7377 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7378 | }; |
| 7379 | |
| 7380 | #define DROP_REFERENCE 1 |
| 7381 | #define UPDATE_BACKREF 2 |
| 7382 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7383 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 7384 | struct btrfs_root *root, |
| 7385 | struct walk_control *wc, |
| 7386 | struct btrfs_path *path) |
| 7387 | { |
| 7388 | u64 bytenr; |
| 7389 | u64 generation; |
| 7390 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7391 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7392 | u32 nritems; |
| 7393 | u32 blocksize; |
| 7394 | struct btrfs_key key; |
| 7395 | struct extent_buffer *eb; |
| 7396 | int ret; |
| 7397 | int slot; |
| 7398 | int nread = 0; |
| 7399 | |
| 7400 | if (path->slots[wc->level] < wc->reada_slot) { |
| 7401 | wc->reada_count = wc->reada_count * 2 / 3; |
| 7402 | wc->reada_count = max(wc->reada_count, 2); |
| 7403 | } else { |
| 7404 | wc->reada_count = wc->reada_count * 3 / 2; |
| 7405 | wc->reada_count = min_t(int, wc->reada_count, |
| 7406 | BTRFS_NODEPTRS_PER_BLOCK(root)); |
| 7407 | } |
| 7408 | |
| 7409 | eb = path->nodes[wc->level]; |
| 7410 | nritems = btrfs_header_nritems(eb); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7411 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7412 | |
| 7413 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 7414 | if (nread >= wc->reada_count) |
| 7415 | break; |
| 7416 | |
| 7417 | cond_resched(); |
| 7418 | bytenr = btrfs_node_blockptr(eb, slot); |
| 7419 | generation = btrfs_node_ptr_generation(eb, slot); |
| 7420 | |
| 7421 | if (slot == path->slots[wc->level]) |
| 7422 | goto reada; |
| 7423 | |
| 7424 | if (wc->stage == UPDATE_BACKREF && |
| 7425 | generation <= root->root_key.offset) |
| 7426 | continue; |
| 7427 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7428 | /* 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] | 7429 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 7430 | wc->level - 1, 1, &refs, |
| 7431 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7432 | /* We don't care about errors in readahead. */ |
| 7433 | if (ret < 0) |
| 7434 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7435 | BUG_ON(refs == 0); |
| 7436 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7437 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7438 | if (refs == 1) |
| 7439 | goto reada; |
| 7440 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7441 | if (wc->level == 1 && |
| 7442 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7443 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7444 | if (!wc->update_ref || |
| 7445 | generation <= root->root_key.offset) |
| 7446 | continue; |
| 7447 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 7448 | ret = btrfs_comp_cpu_keys(&key, |
| 7449 | &wc->update_progress); |
| 7450 | if (ret < 0) |
| 7451 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7452 | } else { |
| 7453 | if (wc->level == 1 && |
| 7454 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7455 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7456 | } |
| 7457 | reada: |
| 7458 | ret = readahead_tree_block(root, bytenr, blocksize, |
| 7459 | generation); |
| 7460 | if (ret) |
| 7461 | break; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7462 | nread++; |
| 7463 | } |
| 7464 | wc->reada_slot = slot; |
| 7465 | } |
| 7466 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7467 | static int account_leaf_items(struct btrfs_trans_handle *trans, |
| 7468 | struct btrfs_root *root, |
| 7469 | struct extent_buffer *eb) |
| 7470 | { |
| 7471 | int nr = btrfs_header_nritems(eb); |
| 7472 | int i, extent_type, ret; |
| 7473 | struct btrfs_key key; |
| 7474 | struct btrfs_file_extent_item *fi; |
| 7475 | u64 bytenr, num_bytes; |
| 7476 | |
| 7477 | for (i = 0; i < nr; i++) { |
| 7478 | btrfs_item_key_to_cpu(eb, &key, i); |
| 7479 | |
| 7480 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 7481 | continue; |
| 7482 | |
| 7483 | fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 7484 | /* filter out non qgroup-accountable extents */ |
| 7485 | extent_type = btrfs_file_extent_type(eb, fi); |
| 7486 | |
| 7487 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) |
| 7488 | continue; |
| 7489 | |
| 7490 | bytenr = btrfs_file_extent_disk_bytenr(eb, fi); |
| 7491 | if (!bytenr) |
| 7492 | continue; |
| 7493 | |
| 7494 | num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi); |
| 7495 | |
| 7496 | ret = btrfs_qgroup_record_ref(trans, root->fs_info, |
| 7497 | root->objectid, |
| 7498 | bytenr, num_bytes, |
| 7499 | BTRFS_QGROUP_OPER_SUB_SUBTREE, 0); |
| 7500 | if (ret) |
| 7501 | return ret; |
| 7502 | } |
| 7503 | return 0; |
| 7504 | } |
| 7505 | |
| 7506 | /* |
| 7507 | * Walk up the tree from the bottom, freeing leaves and any interior |
| 7508 | * nodes which have had all slots visited. If a node (leaf or |
| 7509 | * interior) is freed, the node above it will have it's slot |
| 7510 | * incremented. The root node will never be freed. |
| 7511 | * |
| 7512 | * At the end of this function, we should have a path which has all |
| 7513 | * slots incremented to the next position for a search. If we need to |
| 7514 | * read a new node it will be NULL and the node above it will have the |
| 7515 | * correct slot selected for a later read. |
| 7516 | * |
| 7517 | * If we increment the root nodes slot counter past the number of |
| 7518 | * elements, 1 is returned to signal completion of the search. |
| 7519 | */ |
| 7520 | static int adjust_slots_upwards(struct btrfs_root *root, |
| 7521 | struct btrfs_path *path, int root_level) |
| 7522 | { |
| 7523 | int level = 0; |
| 7524 | int nr, slot; |
| 7525 | struct extent_buffer *eb; |
| 7526 | |
| 7527 | if (root_level == 0) |
| 7528 | return 1; |
| 7529 | |
| 7530 | while (level <= root_level) { |
| 7531 | eb = path->nodes[level]; |
| 7532 | nr = btrfs_header_nritems(eb); |
| 7533 | path->slots[level]++; |
| 7534 | slot = path->slots[level]; |
| 7535 | if (slot >= nr || level == 0) { |
| 7536 | /* |
| 7537 | * Don't free the root - we will detect this |
| 7538 | * condition after our loop and return a |
| 7539 | * positive value for caller to stop walking the tree. |
| 7540 | */ |
| 7541 | if (level != root_level) { |
| 7542 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
| 7543 | path->locks[level] = 0; |
| 7544 | |
| 7545 | free_extent_buffer(eb); |
| 7546 | path->nodes[level] = NULL; |
| 7547 | path->slots[level] = 0; |
| 7548 | } |
| 7549 | } else { |
| 7550 | /* |
| 7551 | * We have a valid slot to walk back down |
| 7552 | * from. Stop here so caller can process these |
| 7553 | * new nodes. |
| 7554 | */ |
| 7555 | break; |
| 7556 | } |
| 7557 | |
| 7558 | level++; |
| 7559 | } |
| 7560 | |
| 7561 | eb = path->nodes[root_level]; |
| 7562 | if (path->slots[root_level] >= btrfs_header_nritems(eb)) |
| 7563 | return 1; |
| 7564 | |
| 7565 | return 0; |
| 7566 | } |
| 7567 | |
| 7568 | /* |
| 7569 | * root_eb is the subtree root and is locked before this function is called. |
| 7570 | */ |
| 7571 | static int account_shared_subtree(struct btrfs_trans_handle *trans, |
| 7572 | struct btrfs_root *root, |
| 7573 | struct extent_buffer *root_eb, |
| 7574 | u64 root_gen, |
| 7575 | int root_level) |
| 7576 | { |
| 7577 | int ret = 0; |
| 7578 | int level; |
| 7579 | struct extent_buffer *eb = root_eb; |
| 7580 | struct btrfs_path *path = NULL; |
| 7581 | |
| 7582 | BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL); |
| 7583 | BUG_ON(root_eb == NULL); |
| 7584 | |
| 7585 | if (!root->fs_info->quota_enabled) |
| 7586 | return 0; |
| 7587 | |
| 7588 | if (!extent_buffer_uptodate(root_eb)) { |
| 7589 | ret = btrfs_read_buffer(root_eb, root_gen); |
| 7590 | if (ret) |
| 7591 | goto out; |
| 7592 | } |
| 7593 | |
| 7594 | if (root_level == 0) { |
| 7595 | ret = account_leaf_items(trans, root, root_eb); |
| 7596 | goto out; |
| 7597 | } |
| 7598 | |
| 7599 | path = btrfs_alloc_path(); |
| 7600 | if (!path) |
| 7601 | return -ENOMEM; |
| 7602 | |
| 7603 | /* |
| 7604 | * Walk down the tree. Missing extent blocks are filled in as |
| 7605 | * we go. Metadata is accounted every time we read a new |
| 7606 | * extent block. |
| 7607 | * |
| 7608 | * When we reach a leaf, we account for file extent items in it, |
| 7609 | * walk back up the tree (adjusting slot pointers as we go) |
| 7610 | * and restart the search process. |
| 7611 | */ |
| 7612 | extent_buffer_get(root_eb); /* For path */ |
| 7613 | path->nodes[root_level] = root_eb; |
| 7614 | path->slots[root_level] = 0; |
| 7615 | path->locks[root_level] = 0; /* so release_path doesn't try to unlock */ |
| 7616 | walk_down: |
| 7617 | level = root_level; |
| 7618 | while (level >= 0) { |
| 7619 | if (path->nodes[level] == NULL) { |
| 7620 | int child_bsize = root->nodesize; |
| 7621 | int parent_slot; |
| 7622 | u64 child_gen; |
| 7623 | u64 child_bytenr; |
| 7624 | |
| 7625 | /* We need to get child blockptr/gen from |
| 7626 | * parent before we can read it. */ |
| 7627 | eb = path->nodes[level + 1]; |
| 7628 | parent_slot = path->slots[level + 1]; |
| 7629 | child_bytenr = btrfs_node_blockptr(eb, parent_slot); |
| 7630 | child_gen = btrfs_node_ptr_generation(eb, parent_slot); |
| 7631 | |
| 7632 | eb = read_tree_block(root, child_bytenr, child_bsize, |
| 7633 | child_gen); |
| 7634 | if (!eb || !extent_buffer_uptodate(eb)) { |
| 7635 | ret = -EIO; |
| 7636 | goto out; |
| 7637 | } |
| 7638 | |
| 7639 | path->nodes[level] = eb; |
| 7640 | path->slots[level] = 0; |
| 7641 | |
| 7642 | btrfs_tree_read_lock(eb); |
| 7643 | btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); |
| 7644 | path->locks[level] = BTRFS_READ_LOCK_BLOCKING; |
| 7645 | |
| 7646 | ret = btrfs_qgroup_record_ref(trans, root->fs_info, |
| 7647 | root->objectid, |
| 7648 | child_bytenr, |
| 7649 | child_bsize, |
| 7650 | BTRFS_QGROUP_OPER_SUB_SUBTREE, |
| 7651 | 0); |
| 7652 | if (ret) |
| 7653 | goto out; |
| 7654 | |
| 7655 | } |
| 7656 | |
| 7657 | if (level == 0) { |
| 7658 | ret = account_leaf_items(trans, root, path->nodes[level]); |
| 7659 | if (ret) |
| 7660 | goto out; |
| 7661 | |
| 7662 | /* Nonzero return here means we completed our search */ |
| 7663 | ret = adjust_slots_upwards(root, path, root_level); |
| 7664 | if (ret) |
| 7665 | break; |
| 7666 | |
| 7667 | /* Restart search with new slots */ |
| 7668 | goto walk_down; |
| 7669 | } |
| 7670 | |
| 7671 | level--; |
| 7672 | } |
| 7673 | |
| 7674 | ret = 0; |
| 7675 | out: |
| 7676 | btrfs_free_path(path); |
| 7677 | |
| 7678 | return ret; |
| 7679 | } |
| 7680 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7681 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7682 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7683 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7684 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 7685 | * back refs for pointers in the block. |
| 7686 | * |
| 7687 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7688 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7689 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 7690 | struct btrfs_root *root, |
| 7691 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7692 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7693 | { |
| 7694 | int level = wc->level; |
| 7695 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7696 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7697 | int ret; |
| 7698 | |
| 7699 | if (wc->stage == UPDATE_BACKREF && |
| 7700 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 7701 | return 1; |
| 7702 | |
| 7703 | /* |
| 7704 | * when reference count of tree block is 1, it won't increase |
| 7705 | * again. once full backref flag is set, we never clear it. |
| 7706 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7707 | if (lookup_info && |
| 7708 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 7709 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7710 | BUG_ON(!path->locks[level]); |
| 7711 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7712 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7713 | &wc->refs[level], |
| 7714 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7715 | BUG_ON(ret == -ENOMEM); |
| 7716 | if (ret) |
| 7717 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7718 | BUG_ON(wc->refs[level] == 0); |
| 7719 | } |
| 7720 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7721 | if (wc->stage == DROP_REFERENCE) { |
| 7722 | if (wc->refs[level] > 1) |
| 7723 | return 1; |
| 7724 | |
| 7725 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7726 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7727 | path->locks[level] = 0; |
| 7728 | } |
| 7729 | return 0; |
| 7730 | } |
| 7731 | |
| 7732 | /* wc->stage == UPDATE_BACKREF */ |
| 7733 | if (!(wc->flags[level] & flag)) { |
| 7734 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 7735 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7736 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 7737 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7738 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7739 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7740 | eb->len, flag, |
| 7741 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7742 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7743 | wc->flags[level] |= flag; |
| 7744 | } |
| 7745 | |
| 7746 | /* |
| 7747 | * the block is shared by multiple trees, so it's not good to |
| 7748 | * keep the tree lock |
| 7749 | */ |
| 7750 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7751 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7752 | path->locks[level] = 0; |
| 7753 | } |
| 7754 | return 0; |
| 7755 | } |
| 7756 | |
| 7757 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7758 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7759 | * |
| 7760 | * when wc->stage == DROP_REFERENCE, this function checks |
| 7761 | * reference count of the block pointed to. if the block |
| 7762 | * is shared and we need update back refs for the subtree |
| 7763 | * rooted at the block, this function changes wc->stage to |
| 7764 | * UPDATE_BACKREF. if the block is shared and there is no |
| 7765 | * need to update back, this function drops the reference |
| 7766 | * to the block. |
| 7767 | * |
| 7768 | * NOTE: return value 1 means we should stop walking down. |
| 7769 | */ |
| 7770 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 7771 | struct btrfs_root *root, |
| 7772 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7773 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7774 | { |
| 7775 | u64 bytenr; |
| 7776 | u64 generation; |
| 7777 | u64 parent; |
| 7778 | u32 blocksize; |
| 7779 | struct btrfs_key key; |
| 7780 | struct extent_buffer *next; |
| 7781 | int level = wc->level; |
| 7782 | int reada = 0; |
| 7783 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7784 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7785 | |
| 7786 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 7787 | path->slots[level]); |
| 7788 | /* |
| 7789 | * if the lower level block was created before the snapshot |
| 7790 | * was created, we know there is no need to update back refs |
| 7791 | * for the subtree |
| 7792 | */ |
| 7793 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7794 | generation <= root->root_key.offset) { |
| 7795 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7796 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7797 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7798 | |
| 7799 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7800 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7801 | |
| 7802 | next = btrfs_find_tree_block(root, bytenr, blocksize); |
| 7803 | if (!next) { |
| 7804 | next = btrfs_find_create_tree_block(root, bytenr, blocksize); |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 7805 | if (!next) |
| 7806 | return -ENOMEM; |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 7807 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 7808 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7809 | reada = 1; |
| 7810 | } |
| 7811 | btrfs_tree_lock(next); |
| 7812 | btrfs_set_lock_blocking(next); |
| 7813 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7814 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7815 | &wc->refs[level - 1], |
| 7816 | &wc->flags[level - 1]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7817 | if (ret < 0) { |
| 7818 | btrfs_tree_unlock(next); |
| 7819 | return ret; |
| 7820 | } |
| 7821 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7822 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 7823 | btrfs_err(root->fs_info, "Missing references."); |
| 7824 | BUG(); |
| 7825 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7826 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7827 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7828 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7829 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7830 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7831 | if (level == 1 && |
| 7832 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7833 | goto skip; |
| 7834 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7835 | if (!wc->update_ref || |
| 7836 | generation <= root->root_key.offset) |
| 7837 | goto skip; |
| 7838 | |
| 7839 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 7840 | path->slots[level]); |
| 7841 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 7842 | if (ret < 0) |
| 7843 | goto skip; |
| 7844 | |
| 7845 | wc->stage = UPDATE_BACKREF; |
| 7846 | wc->shared_level = level - 1; |
| 7847 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7848 | } else { |
| 7849 | if (level == 1 && |
| 7850 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7851 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7852 | } |
| 7853 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 7854 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7855 | btrfs_tree_unlock(next); |
| 7856 | free_extent_buffer(next); |
| 7857 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7858 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7859 | } |
| 7860 | |
| 7861 | if (!next) { |
| 7862 | if (reada && level == 1) |
| 7863 | reada_walk_down(trans, root, wc, path); |
| 7864 | next = read_tree_block(root, bytenr, blocksize, generation); |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7865 | if (!next || !extent_buffer_uptodate(next)) { |
| 7866 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 7867 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7868 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7869 | btrfs_tree_lock(next); |
| 7870 | btrfs_set_lock_blocking(next); |
| 7871 | } |
| 7872 | |
| 7873 | level--; |
| 7874 | BUG_ON(level != btrfs_header_level(next)); |
| 7875 | path->nodes[level] = next; |
| 7876 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7877 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7878 | wc->level = level; |
| 7879 | if (wc->level == 1) |
| 7880 | wc->reada_slot = 0; |
| 7881 | return 0; |
| 7882 | skip: |
| 7883 | wc->refs[level - 1] = 0; |
| 7884 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7885 | if (wc->stage == DROP_REFERENCE) { |
| 7886 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 7887 | parent = path->nodes[level]->start; |
| 7888 | } else { |
| 7889 | BUG_ON(root->root_key.objectid != |
| 7890 | btrfs_header_owner(path->nodes[level])); |
| 7891 | parent = 0; |
| 7892 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7893 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7894 | if (need_account) { |
| 7895 | ret = account_shared_subtree(trans, root, next, |
| 7896 | generation, level - 1); |
| 7897 | if (ret) { |
| 7898 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 7899 | "%d accounting shared subtree. Quota " |
| 7900 | "is out of sync, rescan required.\n", |
| 7901 | root->fs_info->sb->s_id, ret); |
| 7902 | } |
| 7903 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7904 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7905 | root->root_key.objectid, level - 1, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7906 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7907 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7908 | btrfs_tree_unlock(next); |
| 7909 | free_extent_buffer(next); |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7910 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7911 | return 1; |
| 7912 | } |
| 7913 | |
| 7914 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7915 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7916 | * |
| 7917 | * when wc->stage == DROP_REFERENCE, this function drops |
| 7918 | * reference count on the block. |
| 7919 | * |
| 7920 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 7921 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 7922 | * to UPDATE_BACKREF previously while processing the block. |
| 7923 | * |
| 7924 | * NOTE: return value 1 means we should stop walking up. |
| 7925 | */ |
| 7926 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 7927 | struct btrfs_root *root, |
| 7928 | struct btrfs_path *path, |
| 7929 | struct walk_control *wc) |
| 7930 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7931 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7932 | int level = wc->level; |
| 7933 | struct extent_buffer *eb = path->nodes[level]; |
| 7934 | u64 parent = 0; |
| 7935 | |
| 7936 | if (wc->stage == UPDATE_BACKREF) { |
| 7937 | BUG_ON(wc->shared_level < level); |
| 7938 | if (level < wc->shared_level) |
| 7939 | goto out; |
| 7940 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7941 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 7942 | if (ret > 0) |
| 7943 | wc->update_ref = 0; |
| 7944 | |
| 7945 | wc->stage = DROP_REFERENCE; |
| 7946 | wc->shared_level = -1; |
| 7947 | path->slots[level] = 0; |
| 7948 | |
| 7949 | /* |
| 7950 | * check reference count again if the block isn't locked. |
| 7951 | * we should start walking down the tree again if reference |
| 7952 | * count is one. |
| 7953 | */ |
| 7954 | if (!path->locks[level]) { |
| 7955 | BUG_ON(level == 0); |
| 7956 | btrfs_tree_lock(eb); |
| 7957 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7958 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7959 | |
| 7960 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7961 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7962 | &wc->refs[level], |
| 7963 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7964 | if (ret < 0) { |
| 7965 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7966 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7967 | return ret; |
| 7968 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7969 | BUG_ON(wc->refs[level] == 0); |
| 7970 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7971 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7972 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7973 | return 1; |
| 7974 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7975 | } |
| 7976 | } |
| 7977 | |
| 7978 | /* wc->stage == DROP_REFERENCE */ |
| 7979 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 7980 | |
| 7981 | if (wc->refs[level] == 1) { |
| 7982 | if (level == 0) { |
| 7983 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 7984 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7985 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 7986 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7987 | BUG_ON(ret); /* -ENOMEM */ |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7988 | ret = account_leaf_items(trans, root, eb); |
| 7989 | if (ret) { |
| 7990 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 7991 | "%d accounting leaf items. Quota " |
| 7992 | "is out of sync, rescan required.\n", |
| 7993 | root->fs_info->sb->s_id, ret); |
| 7994 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7995 | } |
| 7996 | /* make block locked assertion in clean_tree_block happy */ |
| 7997 | if (!path->locks[level] && |
| 7998 | btrfs_header_generation(eb) == trans->transid) { |
| 7999 | btrfs_tree_lock(eb); |
| 8000 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8001 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8002 | } |
| 8003 | clean_tree_block(trans, root, eb); |
| 8004 | } |
| 8005 | |
| 8006 | if (eb == root->node) { |
| 8007 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8008 | parent = eb->start; |
| 8009 | else |
| 8010 | BUG_ON(root->root_key.objectid != |
| 8011 | btrfs_header_owner(eb)); |
| 8012 | } else { |
| 8013 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8014 | parent = path->nodes[level + 1]->start; |
| 8015 | else |
| 8016 | BUG_ON(root->root_key.objectid != |
| 8017 | btrfs_header_owner(path->nodes[level + 1])); |
| 8018 | } |
| 8019 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8020 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8021 | out: |
| 8022 | wc->refs[level] = 0; |
| 8023 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8024 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8025 | } |
| 8026 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8027 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8028 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8029 | struct btrfs_path *path, |
| 8030 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8031 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8032 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8033 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8034 | int ret; |
| 8035 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8036 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8037 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8038 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8039 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8040 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8041 | if (level == 0) |
| 8042 | break; |
| 8043 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8044 | if (path->slots[level] >= |
| 8045 | btrfs_header_nritems(path->nodes[level])) |
| 8046 | break; |
| 8047 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8048 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8049 | if (ret > 0) { |
| 8050 | path->slots[level]++; |
| 8051 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8052 | } else if (ret < 0) |
| 8053 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8054 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8055 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8056 | return 0; |
| 8057 | } |
| 8058 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8059 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8060 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8061 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8062 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8063 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8064 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8065 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8066 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8067 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8068 | while (level < max_level && path->nodes[level]) { |
| 8069 | wc->level = level; |
| 8070 | if (path->slots[level] + 1 < |
| 8071 | btrfs_header_nritems(path->nodes[level])) { |
| 8072 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8073 | return 0; |
| 8074 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8075 | ret = walk_up_proc(trans, root, path, wc); |
| 8076 | if (ret > 0) |
| 8077 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8078 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8079 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8080 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8081 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8082 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8083 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8084 | free_extent_buffer(path->nodes[level]); |
| 8085 | path->nodes[level] = NULL; |
| 8086 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8087 | } |
| 8088 | } |
| 8089 | return 1; |
| 8090 | } |
| 8091 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8092 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8093 | * drop a subvolume tree. |
| 8094 | * |
| 8095 | * this function traverses the tree freeing any blocks that only |
| 8096 | * referenced by the tree. |
| 8097 | * |
| 8098 | * when a shared tree block is found. this function decreases its |
| 8099 | * reference count by one. if update_ref is true, this function |
| 8100 | * also make sure backrefs for the shared block and all lower level |
| 8101 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8102 | * |
| 8103 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8104 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8105 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8106 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 8107 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8108 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8109 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8110 | struct btrfs_trans_handle *trans; |
| 8111 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8112 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8113 | struct walk_control *wc; |
| 8114 | struct btrfs_key key; |
| 8115 | int err = 0; |
| 8116 | int ret; |
| 8117 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8118 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8119 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8120 | btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid); |
| 8121 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8122 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8123 | if (!path) { |
| 8124 | err = -ENOMEM; |
| 8125 | goto out; |
| 8126 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8127 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8128 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8129 | if (!wc) { |
| 8130 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8131 | err = -ENOMEM; |
| 8132 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8133 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8134 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8135 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8136 | if (IS_ERR(trans)) { |
| 8137 | err = PTR_ERR(trans); |
| 8138 | goto out_free; |
| 8139 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 8140 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8141 | if (block_rsv) |
| 8142 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8143 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8144 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8145 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8146 | path->nodes[level] = btrfs_lock_root_node(root); |
| 8147 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8148 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8149 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8150 | memset(&wc->update_progress, 0, |
| 8151 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8152 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8153 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8154 | memcpy(&wc->update_progress, &key, |
| 8155 | sizeof(wc->update_progress)); |
| 8156 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8157 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8158 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8159 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8160 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 8161 | path->lowest_level = 0; |
| 8162 | if (ret < 0) { |
| 8163 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8164 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8165 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8166 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8167 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8168 | /* |
| 8169 | * unlock our path, this is safe because only this |
| 8170 | * function is allowed to delete this snapshot |
| 8171 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8172 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8173 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8174 | level = btrfs_header_level(root->node); |
| 8175 | while (1) { |
| 8176 | btrfs_tree_lock(path->nodes[level]); |
| 8177 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8178 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8179 | |
| 8180 | ret = btrfs_lookup_extent_info(trans, root, |
| 8181 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8182 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8183 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8184 | if (ret < 0) { |
| 8185 | err = ret; |
| 8186 | goto out_end_trans; |
| 8187 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8188 | BUG_ON(wc->refs[level] == 0); |
| 8189 | |
| 8190 | if (level == root_item->drop_level) |
| 8191 | break; |
| 8192 | |
| 8193 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8194 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8195 | WARN_ON(wc->refs[level] != 1); |
| 8196 | level--; |
| 8197 | } |
| 8198 | } |
| 8199 | |
| 8200 | wc->level = level; |
| 8201 | wc->shared_level = -1; |
| 8202 | wc->stage = DROP_REFERENCE; |
| 8203 | wc->update_ref = update_ref; |
| 8204 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8205 | wc->for_reloc = for_reloc; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8206 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8207 | |
| 8208 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8209 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8210 | ret = walk_down_tree(trans, root, path, wc); |
| 8211 | if (ret < 0) { |
| 8212 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 8213 | break; |
| 8214 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8215 | |
| 8216 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 8217 | if (ret < 0) { |
| 8218 | err = ret; |
| 8219 | break; |
| 8220 | } |
| 8221 | |
| 8222 | if (ret > 0) { |
| 8223 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 8224 | break; |
| 8225 | } |
| 8226 | |
| 8227 | if (wc->stage == DROP_REFERENCE) { |
| 8228 | level = wc->level; |
| 8229 | btrfs_node_key(path->nodes[level], |
| 8230 | &root_item->drop_progress, |
| 8231 | path->slots[level]); |
| 8232 | root_item->drop_level = level; |
| 8233 | } |
| 8234 | |
| 8235 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8236 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 8237 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8238 | ret = btrfs_update_root(trans, tree_root, |
| 8239 | &root->root_key, |
| 8240 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8241 | if (ret) { |
| 8242 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8243 | err = ret; |
| 8244 | goto out_end_trans; |
| 8245 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8246 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8247 | /* |
| 8248 | * Qgroup update accounting is run from |
| 8249 | * delayed ref handling. This usually works |
| 8250 | * out because delayed refs are normally the |
| 8251 | * only way qgroup updates are added. However, |
| 8252 | * we may have added updates during our tree |
| 8253 | * walk so run qgroups here to make sure we |
| 8254 | * don't lose any updates. |
| 8255 | */ |
| 8256 | ret = btrfs_delayed_qgroup_accounting(trans, |
| 8257 | root->fs_info); |
| 8258 | if (ret) |
| 8259 | printk_ratelimited(KERN_ERR "BTRFS: Failure %d " |
| 8260 | "running qgroup updates " |
| 8261 | "during snapshot delete. " |
| 8262 | "Quota is out of sync, " |
| 8263 | "rescan required.\n", ret); |
| 8264 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8265 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8266 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8267 | pr_debug("BTRFS: drop snapshot early exit\n"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8268 | err = -EAGAIN; |
| 8269 | goto out_free; |
| 8270 | } |
| 8271 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8272 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8273 | if (IS_ERR(trans)) { |
| 8274 | err = PTR_ERR(trans); |
| 8275 | goto out_free; |
| 8276 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8277 | if (block_rsv) |
| 8278 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 8279 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8280 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8281 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8282 | if (err) |
| 8283 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8284 | |
| 8285 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8286 | if (ret) { |
| 8287 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8288 | goto out_end_trans; |
| 8289 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8290 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8291 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8292 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 8293 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8294 | if (ret < 0) { |
| 8295 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8296 | err = ret; |
| 8297 | goto out_end_trans; |
| 8298 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 8299 | /* if we fail to delete the orphan item this time |
| 8300 | * around, it'll get picked up the next time. |
| 8301 | * |
| 8302 | * The most common failure here is just -ENOENT. |
| 8303 | */ |
| 8304 | btrfs_del_orphan_item(trans, tree_root, |
| 8305 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8306 | } |
| 8307 | } |
| 8308 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 8309 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8310 | btrfs_drop_and_free_fs_root(tree_root->fs_info, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8311 | } else { |
| 8312 | free_extent_buffer(root->node); |
| 8313 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 8314 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8315 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8316 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8317 | out_end_trans: |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8318 | ret = btrfs_delayed_qgroup_accounting(trans, tree_root->fs_info); |
| 8319 | if (ret) |
| 8320 | printk_ratelimited(KERN_ERR "BTRFS: Failure %d " |
| 8321 | "running qgroup updates " |
| 8322 | "during snapshot delete. " |
| 8323 | "Quota is out of sync, " |
| 8324 | "rescan required.\n", ret); |
| 8325 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8326 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8327 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8328 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8329 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8330 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8331 | /* |
| 8332 | * So if we need to stop dropping the snapshot for whatever reason we |
| 8333 | * need to make sure to add it back to the dead root list so that we |
| 8334 | * keep trying to do the work later. This also cleans up roots if we |
| 8335 | * don't have it in the radix (like when we recover after a power fail |
| 8336 | * or unmount) so we don't leak memory. |
| 8337 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 8338 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8339 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 8340 | if (err && err != -EAGAIN) |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8341 | btrfs_std_error(root->fs_info, err); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8342 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8343 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8344 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8345 | /* |
| 8346 | * drop subtree rooted at tree block 'node'. |
| 8347 | * |
| 8348 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8349 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8350 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8351 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 8352 | struct btrfs_root *root, |
| 8353 | struct extent_buffer *node, |
| 8354 | struct extent_buffer *parent) |
| 8355 | { |
| 8356 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8357 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8358 | int level; |
| 8359 | int parent_level; |
| 8360 | int ret = 0; |
| 8361 | int wret; |
| 8362 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8363 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 8364 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8365 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8366 | if (!path) |
| 8367 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8368 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8369 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8370 | if (!wc) { |
| 8371 | btrfs_free_path(path); |
| 8372 | return -ENOMEM; |
| 8373 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8374 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8375 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8376 | parent_level = btrfs_header_level(parent); |
| 8377 | extent_buffer_get(parent); |
| 8378 | path->nodes[parent_level] = parent; |
| 8379 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 8380 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8381 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8382 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8383 | path->nodes[level] = node; |
| 8384 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8385 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8386 | |
| 8387 | wc->refs[parent_level] = 1; |
| 8388 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8389 | wc->level = level; |
| 8390 | wc->shared_level = -1; |
| 8391 | wc->stage = DROP_REFERENCE; |
| 8392 | wc->update_ref = 0; |
| 8393 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8394 | wc->for_reloc = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8395 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8396 | |
| 8397 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8398 | wret = walk_down_tree(trans, root, path, wc); |
| 8399 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8400 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8401 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8402 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8403 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8404 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8405 | if (wret < 0) |
| 8406 | ret = wret; |
| 8407 | if (wret != 0) |
| 8408 | break; |
| 8409 | } |
| 8410 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8411 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8412 | btrfs_free_path(path); |
| 8413 | return ret; |
| 8414 | } |
| 8415 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8416 | static u64 update_block_group_flags(struct btrfs_root *root, u64 flags) |
| 8417 | { |
| 8418 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8419 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8420 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8421 | /* |
| 8422 | * if restripe for this chunk_type is on pick target profile and |
| 8423 | * return, otherwise do the usual balance |
| 8424 | */ |
| 8425 | stripped = get_restripe_target(root->fs_info, flags); |
| 8426 | if (stripped) |
| 8427 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 8428 | |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 8429 | num_devices = root->fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 8430 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8431 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8432 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8433 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 8434 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8435 | if (num_devices == 1) { |
| 8436 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8437 | stripped = flags & ~stripped; |
| 8438 | |
| 8439 | /* turn raid0 into single device chunks */ |
| 8440 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 8441 | return stripped; |
| 8442 | |
| 8443 | /* turn mirroring into duplication */ |
| 8444 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8445 | BTRFS_BLOCK_GROUP_RAID10)) |
| 8446 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8447 | } else { |
| 8448 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8449 | if (flags & stripped) |
| 8450 | return flags; |
| 8451 | |
| 8452 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8453 | stripped = flags & ~stripped; |
| 8454 | |
| 8455 | /* switch duplicated blocks with raid1 */ |
| 8456 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 8457 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 8458 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8459 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8460 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8461 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8462 | return flags; |
| 8463 | } |
| 8464 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8465 | 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] | 8466 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8467 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8468 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8469 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8470 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8471 | |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8472 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8473 | /* |
| 8474 | * We need some metadata space and system metadata space for |
| 8475 | * allocating chunks in some corner cases until we force to set |
| 8476 | * it to be readonly. |
| 8477 | */ |
| 8478 | if ((sinfo->flags & |
| 8479 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 8480 | !force) |
| 8481 | min_allocable_bytes = 1 * 1024 * 1024; |
| 8482 | else |
| 8483 | min_allocable_bytes = 0; |
| 8484 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8485 | spin_lock(&sinfo->lock); |
| 8486 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8487 | |
| 8488 | if (cache->ro) { |
| 8489 | ret = 0; |
| 8490 | goto out; |
| 8491 | } |
| 8492 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8493 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8494 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8495 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8496 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 8497 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 8498 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8499 | sinfo->bytes_readonly += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8500 | cache->ro = 1; |
| 8501 | ret = 0; |
| 8502 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8503 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8504 | spin_unlock(&cache->lock); |
| 8505 | spin_unlock(&sinfo->lock); |
| 8506 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8507 | } |
| 8508 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8509 | int btrfs_set_block_group_ro(struct btrfs_root *root, |
| 8510 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8511 | |
| 8512 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8513 | struct btrfs_trans_handle *trans; |
| 8514 | u64 alloc_flags; |
| 8515 | int ret; |
| 8516 | |
| 8517 | BUG_ON(cache->ro); |
| 8518 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 8519 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8520 | if (IS_ERR(trans)) |
| 8521 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8522 | |
| 8523 | alloc_flags = update_block_group_flags(root, cache->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8524 | if (alloc_flags != cache->flags) { |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8525 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8526 | CHUNK_ALLOC_FORCE); |
| 8527 | if (ret < 0) |
| 8528 | goto out; |
| 8529 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8530 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8531 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8532 | if (!ret) |
| 8533 | goto out; |
| 8534 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8535 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8536 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8537 | if (ret < 0) |
| 8538 | goto out; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8539 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8540 | out: |
| 8541 | btrfs_end_transaction(trans, root); |
| 8542 | return ret; |
| 8543 | } |
| 8544 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8545 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 8546 | struct btrfs_root *root, u64 type) |
| 8547 | { |
| 8548 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8549 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8550 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8551 | } |
| 8552 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8553 | /* |
| 8554 | * helper to account the unused space of all the readonly block group in the |
| 8555 | * list. takes mirrors into account. |
| 8556 | */ |
| 8557 | static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list) |
| 8558 | { |
| 8559 | struct btrfs_block_group_cache *block_group; |
| 8560 | u64 free_bytes = 0; |
| 8561 | int factor; |
| 8562 | |
| 8563 | list_for_each_entry(block_group, groups_list, list) { |
| 8564 | spin_lock(&block_group->lock); |
| 8565 | |
| 8566 | if (!block_group->ro) { |
| 8567 | spin_unlock(&block_group->lock); |
| 8568 | continue; |
| 8569 | } |
| 8570 | |
| 8571 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8572 | BTRFS_BLOCK_GROUP_RAID10 | |
| 8573 | BTRFS_BLOCK_GROUP_DUP)) |
| 8574 | factor = 2; |
| 8575 | else |
| 8576 | factor = 1; |
| 8577 | |
| 8578 | free_bytes += (block_group->key.offset - |
| 8579 | btrfs_block_group_used(&block_group->item)) * |
| 8580 | factor; |
| 8581 | |
| 8582 | spin_unlock(&block_group->lock); |
| 8583 | } |
| 8584 | |
| 8585 | return free_bytes; |
| 8586 | } |
| 8587 | |
| 8588 | /* |
| 8589 | * helper to account the unused space of all the readonly block group in the |
| 8590 | * space_info. takes mirrors into account. |
| 8591 | */ |
| 8592 | u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo) |
| 8593 | { |
| 8594 | int i; |
| 8595 | u64 free_bytes = 0; |
| 8596 | |
| 8597 | spin_lock(&sinfo->lock); |
| 8598 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8599 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8600 | if (!list_empty(&sinfo->block_groups[i])) |
| 8601 | free_bytes += __btrfs_get_ro_block_group_free_space( |
| 8602 | &sinfo->block_groups[i]); |
| 8603 | |
| 8604 | spin_unlock(&sinfo->lock); |
| 8605 | |
| 8606 | return free_bytes; |
| 8607 | } |
| 8608 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 8609 | void btrfs_set_block_group_rw(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8610 | struct btrfs_block_group_cache *cache) |
| 8611 | { |
| 8612 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8613 | u64 num_bytes; |
| 8614 | |
| 8615 | BUG_ON(!cache->ro); |
| 8616 | |
| 8617 | spin_lock(&sinfo->lock); |
| 8618 | spin_lock(&cache->lock); |
| 8619 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8620 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
| 8621 | sinfo->bytes_readonly -= num_bytes; |
| 8622 | cache->ro = 0; |
| 8623 | spin_unlock(&cache->lock); |
| 8624 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8625 | } |
| 8626 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8627 | /* |
| 8628 | * checks to see if its even possible to relocate this block group. |
| 8629 | * |
| 8630 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 8631 | * ok to go ahead and try. |
| 8632 | */ |
| 8633 | int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8634 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8635 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8636 | struct btrfs_space_info *space_info; |
| 8637 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 8638 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8639 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8640 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8641 | u64 dev_min = 1; |
| 8642 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8643 | u64 target; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8644 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8645 | int full = 0; |
| 8646 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8647 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8648 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8649 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8650 | /* odd, couldn't find the block group, leave it alone */ |
| 8651 | if (!block_group) |
| 8652 | return -1; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8653 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8654 | min_free = btrfs_block_group_used(&block_group->item); |
| 8655 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8656 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8657 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8658 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8659 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8660 | space_info = block_group->space_info; |
| 8661 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8662 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8663 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8664 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8665 | /* |
| 8666 | * 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] | 8667 | * relocate it unless we're able to allocate a new chunk below. |
| 8668 | * |
| 8669 | * Otherwise, we need to make sure we have room in the space to handle |
| 8670 | * 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] | 8671 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 8672 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8673 | (space_info->bytes_used + space_info->bytes_reserved + |
| 8674 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 8675 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8676 | spin_unlock(&space_info->lock); |
| 8677 | goto out; |
| 8678 | } |
| 8679 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8680 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8681 | /* |
| 8682 | * ok we don't have enough space, but maybe we have free space on our |
| 8683 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8684 | * alloc devices and guess if we have enough space. if this block |
| 8685 | * group is going to be restriped, run checks against the target |
| 8686 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8687 | */ |
| 8688 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 8689 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8690 | /* |
| 8691 | * index: |
| 8692 | * 0: raid10 |
| 8693 | * 1: raid1 |
| 8694 | * 2: dup |
| 8695 | * 3: raid0 |
| 8696 | * 4: single |
| 8697 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8698 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 8699 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 8700 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8701 | } else { |
| 8702 | /* |
| 8703 | * this is just a balance, so if we were marked as full |
| 8704 | * we know there is no space for a new chunk |
| 8705 | */ |
| 8706 | if (full) |
| 8707 | goto out; |
| 8708 | |
| 8709 | index = get_block_group_index(block_group); |
| 8710 | } |
| 8711 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8712 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8713 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8714 | /* Divide by 2 */ |
| 8715 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8716 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8717 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8718 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8719 | /* Multiply by 2 */ |
| 8720 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8721 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8722 | dev_min = fs_devices->rw_devices; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8723 | do_div(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8724 | } |
| 8725 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8726 | /* We need to do this so that we can look at pending chunks */ |
| 8727 | trans = btrfs_join_transaction(root); |
| 8728 | if (IS_ERR(trans)) { |
| 8729 | ret = PTR_ERR(trans); |
| 8730 | goto out; |
| 8731 | } |
| 8732 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8733 | mutex_lock(&root->fs_info->chunk_mutex); |
| 8734 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8735 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8736 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8737 | /* |
| 8738 | * check to make sure we can actually find a chunk with enough |
| 8739 | * space to fit our block group in. |
| 8740 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 8741 | if (device->total_bytes > device->bytes_used + min_free && |
| 8742 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8743 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8744 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8745 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8746 | dev_nr++; |
| 8747 | |
| 8748 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8749 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8750 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8751 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8752 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8753 | } |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8754 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8755 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8756 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8757 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8758 | return ret; |
| 8759 | } |
| 8760 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 8761 | static int find_first_block_group(struct btrfs_root *root, |
| 8762 | struct btrfs_path *path, struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8763 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8764 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8765 | struct btrfs_key found_key; |
| 8766 | struct extent_buffer *leaf; |
| 8767 | int slot; |
| 8768 | |
| 8769 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 8770 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8771 | goto out; |
| 8772 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8773 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8774 | slot = path->slots[0]; |
| 8775 | leaf = path->nodes[0]; |
| 8776 | if (slot >= btrfs_header_nritems(leaf)) { |
| 8777 | ret = btrfs_next_leaf(root, path); |
| 8778 | if (ret == 0) |
| 8779 | continue; |
| 8780 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8781 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8782 | break; |
| 8783 | } |
| 8784 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 8785 | |
| 8786 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8787 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
| 8788 | ret = 0; |
| 8789 | goto out; |
| 8790 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8791 | path->slots[0]++; |
| 8792 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8793 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8794 | return ret; |
| 8795 | } |
| 8796 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8797 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 8798 | { |
| 8799 | struct btrfs_block_group_cache *block_group; |
| 8800 | u64 last = 0; |
| 8801 | |
| 8802 | while (1) { |
| 8803 | struct inode *inode; |
| 8804 | |
| 8805 | block_group = btrfs_lookup_first_block_group(info, last); |
| 8806 | while (block_group) { |
| 8807 | spin_lock(&block_group->lock); |
| 8808 | if (block_group->iref) |
| 8809 | break; |
| 8810 | spin_unlock(&block_group->lock); |
| 8811 | block_group = next_block_group(info->tree_root, |
| 8812 | block_group); |
| 8813 | } |
| 8814 | if (!block_group) { |
| 8815 | if (last == 0) |
| 8816 | break; |
| 8817 | last = 0; |
| 8818 | continue; |
| 8819 | } |
| 8820 | |
| 8821 | inode = block_group->inode; |
| 8822 | block_group->iref = 0; |
| 8823 | block_group->inode = NULL; |
| 8824 | spin_unlock(&block_group->lock); |
| 8825 | iput(inode); |
| 8826 | last = block_group->key.objectid + block_group->key.offset; |
| 8827 | btrfs_put_block_group(block_group); |
| 8828 | } |
| 8829 | } |
| 8830 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8831 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 8832 | { |
| 8833 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8834 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8835 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8836 | struct rb_node *n; |
| 8837 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 8838 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8839 | while (!list_empty(&info->caching_block_groups)) { |
| 8840 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 8841 | struct btrfs_caching_control, list); |
| 8842 | list_del(&caching_ctl->list); |
| 8843 | put_caching_control(caching_ctl); |
| 8844 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 8845 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8846 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8847 | spin_lock(&info->block_group_cache_lock); |
| 8848 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 8849 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 8850 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8851 | rb_erase(&block_group->cache_node, |
| 8852 | &info->block_group_cache_tree); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8853 | spin_unlock(&info->block_group_cache_lock); |
| 8854 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8855 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8856 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8857 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8858 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8859 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8860 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8861 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8862 | /* |
| 8863 | * We haven't cached this block group, which means we could |
| 8864 | * possibly have excluded extents on this block group. |
| 8865 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 8866 | if (block_group->cached == BTRFS_CACHE_NO || |
| 8867 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8868 | free_excluded_extents(info->extent_root, block_group); |
| 8869 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8870 | btrfs_remove_free_space_cache(block_group); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 8871 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8872 | |
| 8873 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8874 | } |
| 8875 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8876 | |
| 8877 | /* now that all the block groups are freed, go through and |
| 8878 | * free all the space_info structs. This is only called during |
| 8879 | * the final stages of unmount, and so we know nobody is |
| 8880 | * using them. We call synchronize_rcu() once before we start, |
| 8881 | * just to be on the safe side. |
| 8882 | */ |
| 8883 | synchronize_rcu(); |
| 8884 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 8885 | release_global_block_rsv(info); |
| 8886 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8887 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8888 | int i; |
| 8889 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8890 | space_info = list_entry(info->space_info.next, |
| 8891 | struct btrfs_space_info, |
| 8892 | list); |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8893 | if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) { |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8894 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8895 | space_info->bytes_reserved > 0 || |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8896 | space_info->bytes_may_use > 0)) { |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8897 | dump_space_info(space_info, 0, 0); |
| 8898 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8899 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8900 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8901 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 8902 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8903 | kobj = space_info->block_group_kobjs[i]; |
| 8904 | space_info->block_group_kobjs[i] = NULL; |
| 8905 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8906 | kobject_del(kobj); |
| 8907 | kobject_put(kobj); |
| 8908 | } |
| 8909 | } |
| 8910 | kobject_del(&space_info->kobj); |
| 8911 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8912 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8913 | return 0; |
| 8914 | } |
| 8915 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8916 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 8917 | struct btrfs_block_group_cache *cache) |
| 8918 | { |
| 8919 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 8920 | bool first = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8921 | |
| 8922 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 8923 | if (list_empty(&space_info->block_groups[index])) |
| 8924 | first = true; |
| 8925 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 8926 | up_write(&space_info->groups_sem); |
| 8927 | |
| 8928 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8929 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8930 | int ret; |
| 8931 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8932 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 8933 | if (!rkobj) |
| 8934 | goto out_err; |
| 8935 | rkobj->raid_type = index; |
| 8936 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 8937 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 8938 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8939 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8940 | kobject_put(&rkobj->kobj); |
| 8941 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8942 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8943 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8944 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8945 | |
| 8946 | return; |
| 8947 | out_err: |
| 8948 | pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n"); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8949 | } |
| 8950 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 8951 | static struct btrfs_block_group_cache * |
| 8952 | btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size) |
| 8953 | { |
| 8954 | struct btrfs_block_group_cache *cache; |
| 8955 | |
| 8956 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 8957 | if (!cache) |
| 8958 | return NULL; |
| 8959 | |
| 8960 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 8961 | GFP_NOFS); |
| 8962 | if (!cache->free_space_ctl) { |
| 8963 | kfree(cache); |
| 8964 | return NULL; |
| 8965 | } |
| 8966 | |
| 8967 | cache->key.objectid = start; |
| 8968 | cache->key.offset = size; |
| 8969 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 8970 | |
| 8971 | cache->sectorsize = root->sectorsize; |
| 8972 | cache->fs_info = root->fs_info; |
| 8973 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 8974 | &root->fs_info->mapping_tree, |
| 8975 | start); |
| 8976 | atomic_set(&cache->count, 1); |
| 8977 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8978 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 8979 | INIT_LIST_HEAD(&cache->list); |
| 8980 | INIT_LIST_HEAD(&cache->cluster_list); |
| 8981 | INIT_LIST_HEAD(&cache->new_bg_list); |
| 8982 | btrfs_init_free_space_ctl(cache); |
| 8983 | |
| 8984 | return cache; |
| 8985 | } |
| 8986 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8987 | int btrfs_read_block_groups(struct btrfs_root *root) |
| 8988 | { |
| 8989 | struct btrfs_path *path; |
| 8990 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8991 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 8992 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8993 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8994 | struct btrfs_key key; |
| 8995 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8996 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8997 | int need_clear = 0; |
| 8998 | u64 cache_gen; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 8999 | |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 9000 | root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9001 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9002 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9003 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9004 | path = btrfs_alloc_path(); |
| 9005 | if (!path) |
| 9006 | return -ENOMEM; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 9007 | path->reada = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9008 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9009 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 9010 | if (btrfs_test_opt(root, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9011 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9012 | need_clear = 1; |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9013 | if (btrfs_test_opt(root, CLEAR_CACHE)) |
| 9014 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9015 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9016 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9017 | ret = find_first_block_group(root, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9018 | if (ret > 0) |
| 9019 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9020 | if (ret != 0) |
| 9021 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9022 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9023 | leaf = path->nodes[0]; |
| 9024 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9025 | |
| 9026 | cache = btrfs_create_block_group_cache(root, found_key.objectid, |
| 9027 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9028 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9029 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9030 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9031 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9032 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9033 | if (need_clear) { |
| 9034 | /* |
| 9035 | * When we mount with old space cache, we need to |
| 9036 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 9037 | * |
| 9038 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 9039 | * truncate the old free space cache inode and |
| 9040 | * setup a new one. |
| 9041 | * b) Setting 'dirty flag' makes sure that we flush |
| 9042 | * the new space cache info onto disk. |
| 9043 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9044 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9045 | if (btrfs_test_opt(root, SPACE_CACHE)) |
| 9046 | cache->dirty = 1; |
| 9047 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9048 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9049 | read_extent_buffer(leaf, &cache->item, |
| 9050 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 9051 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9052 | cache->flags = btrfs_block_group_flags(&cache->item); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9053 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9054 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9055 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9056 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9057 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9058 | * We need to exclude the super stripes now so that the space |
| 9059 | * info has super bytes accounted for, otherwise we'll think |
| 9060 | * we have more space than we actually do. |
| 9061 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9062 | ret = exclude_super_stripes(root, cache); |
| 9063 | if (ret) { |
| 9064 | /* |
| 9065 | * We may have excluded something, so call this just in |
| 9066 | * case. |
| 9067 | */ |
| 9068 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9069 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9070 | goto error; |
| 9071 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9072 | |
| 9073 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9074 | * check for two cases, either we are full, and therefore |
| 9075 | * don't need to bother with the caching work since we won't |
| 9076 | * find any space, or we are empty, and we can just add all |
| 9077 | * the space in and be done with it. This saves us _alot_ of |
| 9078 | * time, particularly in the full case. |
| 9079 | */ |
| 9080 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9081 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9082 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9083 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9084 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9085 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9086 | cache->cached = BTRFS_CACHE_FINISHED; |
| 9087 | add_new_free_space(cache, root->fs_info, |
| 9088 | found_key.objectid, |
| 9089 | found_key.objectid + |
| 9090 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9091 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9092 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9093 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9094 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9095 | if (ret) { |
| 9096 | btrfs_remove_free_space_cache(cache); |
| 9097 | btrfs_put_block_group(cache); |
| 9098 | goto error; |
| 9099 | } |
| 9100 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9101 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 9102 | btrfs_block_group_used(&cache->item), |
| 9103 | &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9104 | if (ret) { |
| 9105 | btrfs_remove_free_space_cache(cache); |
| 9106 | spin_lock(&info->block_group_cache_lock); |
| 9107 | rb_erase(&cache->cache_node, |
| 9108 | &info->block_group_cache_tree); |
| 9109 | spin_unlock(&info->block_group_cache_lock); |
| 9110 | btrfs_put_block_group(cache); |
| 9111 | goto error; |
| 9112 | } |
| 9113 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9114 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9115 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9116 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9117 | spin_unlock(&cache->space_info->lock); |
| 9118 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9119 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9120 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 9121 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 9122 | if (btrfs_chunk_readonly(root, cache->key.objectid)) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9123 | set_block_group_ro(cache, 1); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9124 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9125 | |
| 9126 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 9127 | if (!(get_alloc_profile(root, space_info->flags) & |
| 9128 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 9129 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9130 | BTRFS_BLOCK_GROUP_RAID5 | |
| 9131 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9132 | BTRFS_BLOCK_GROUP_DUP))) |
| 9133 | continue; |
| 9134 | /* |
| 9135 | * avoid allocating from un-mirrored block group if there are |
| 9136 | * mirrored block groups. |
| 9137 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9138 | list_for_each_entry(cache, |
| 9139 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 9140 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9141 | set_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9142 | list_for_each_entry(cache, |
| 9143 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 9144 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9145 | set_block_group_ro(cache, 1); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9146 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9147 | |
| 9148 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9149 | ret = 0; |
| 9150 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9151 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9152 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9153 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9154 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9155 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
| 9156 | struct btrfs_root *root) |
| 9157 | { |
| 9158 | struct btrfs_block_group_cache *block_group, *tmp; |
| 9159 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 9160 | struct btrfs_block_group_item item; |
| 9161 | struct btrfs_key key; |
| 9162 | int ret = 0; |
| 9163 | |
| 9164 | list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, |
| 9165 | new_bg_list) { |
| 9166 | list_del_init(&block_group->new_bg_list); |
| 9167 | |
| 9168 | if (ret) |
| 9169 | continue; |
| 9170 | |
| 9171 | spin_lock(&block_group->lock); |
| 9172 | memcpy(&item, &block_group->item, sizeof(item)); |
| 9173 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9174 | spin_unlock(&block_group->lock); |
| 9175 | |
| 9176 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 9177 | sizeof(item)); |
| 9178 | if (ret) |
| 9179 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9180 | ret = btrfs_finish_chunk_alloc(trans, extent_root, |
| 9181 | key.objectid, key.offset); |
| 9182 | if (ret) |
| 9183 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9184 | } |
| 9185 | } |
| 9186 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9187 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
| 9188 | struct btrfs_root *root, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 9189 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9190 | u64 size) |
| 9191 | { |
| 9192 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9193 | struct btrfs_root *extent_root; |
| 9194 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9195 | |
| 9196 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9197 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 9198 | btrfs_set_log_full_commit(root->fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 9199 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9200 | cache = btrfs_create_block_group_cache(root, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 9201 | if (!cache) |
| 9202 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9203 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9204 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9205 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9206 | btrfs_set_block_group_flags(&cache->item, type); |
| 9207 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9208 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9209 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9210 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9211 | ret = exclude_super_stripes(root, cache); |
| 9212 | if (ret) { |
| 9213 | /* |
| 9214 | * We may have excluded something, so call this just in |
| 9215 | * case. |
| 9216 | */ |
| 9217 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9218 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9219 | return ret; |
| 9220 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9221 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9222 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 9223 | chunk_offset + size); |
| 9224 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9225 | free_excluded_extents(root, cache); |
| 9226 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9227 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9228 | if (ret) { |
| 9229 | btrfs_remove_free_space_cache(cache); |
| 9230 | btrfs_put_block_group(cache); |
| 9231 | return ret; |
| 9232 | } |
| 9233 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9234 | ret = update_space_info(root->fs_info, cache->flags, size, bytes_used, |
| 9235 | &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9236 | if (ret) { |
| 9237 | btrfs_remove_free_space_cache(cache); |
| 9238 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 9239 | rb_erase(&cache->cache_node, |
| 9240 | &root->fs_info->block_group_cache_tree); |
| 9241 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 9242 | btrfs_put_block_group(cache); |
| 9243 | return ret; |
| 9244 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 9245 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9246 | |
| 9247 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9248 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9249 | spin_unlock(&cache->space_info->lock); |
| 9250 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9251 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9252 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9253 | list_add_tail(&cache->new_bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9254 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 9255 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9256 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9257 | return 0; |
| 9258 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9259 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9260 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 9261 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9262 | u64 extra_flags = chunk_to_extended(flags) & |
| 9263 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9264 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9265 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9266 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 9267 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 9268 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 9269 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 9270 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 9271 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9272 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9273 | } |
| 9274 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9275 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
| 9276 | struct btrfs_root *root, u64 group_start) |
| 9277 | { |
| 9278 | struct btrfs_path *path; |
| 9279 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9280 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9281 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9282 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9283 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9284 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9285 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9286 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9287 | int factor; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9288 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9289 | root = root->fs_info->extent_root; |
| 9290 | |
| 9291 | block_group = btrfs_lookup_block_group(root->fs_info, group_start); |
| 9292 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9293 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9294 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 9295 | /* |
| 9296 | * Free the reserved super bytes from this block group before |
| 9297 | * remove it. |
| 9298 | */ |
| 9299 | free_excluded_extents(root, block_group); |
| 9300 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9301 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9302 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9303 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 9304 | BTRFS_BLOCK_GROUP_RAID1 | |
| 9305 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9306 | factor = 2; |
| 9307 | else |
| 9308 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9309 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9310 | /* make sure this block group isn't part of an allocation cluster */ |
| 9311 | cluster = &root->fs_info->data_alloc_cluster; |
| 9312 | spin_lock(&cluster->refill_lock); |
| 9313 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9314 | spin_unlock(&cluster->refill_lock); |
| 9315 | |
| 9316 | /* |
| 9317 | * make sure this block group isn't part of a metadata |
| 9318 | * allocation cluster |
| 9319 | */ |
| 9320 | cluster = &root->fs_info->meta_alloc_cluster; |
| 9321 | spin_lock(&cluster->refill_lock); |
| 9322 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9323 | spin_unlock(&cluster->refill_lock); |
| 9324 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9325 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 9326 | if (!path) { |
| 9327 | ret = -ENOMEM; |
| 9328 | goto out; |
| 9329 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9330 | |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 9331 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9332 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 9333 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9334 | if (ret) { |
| 9335 | btrfs_add_delayed_iput(inode); |
| 9336 | goto out; |
| 9337 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9338 | clear_nlink(inode); |
| 9339 | /* One for the block groups ref */ |
| 9340 | spin_lock(&block_group->lock); |
| 9341 | if (block_group->iref) { |
| 9342 | block_group->iref = 0; |
| 9343 | block_group->inode = NULL; |
| 9344 | spin_unlock(&block_group->lock); |
| 9345 | iput(inode); |
| 9346 | } else { |
| 9347 | spin_unlock(&block_group->lock); |
| 9348 | } |
| 9349 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 9350 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9351 | } |
| 9352 | |
| 9353 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 9354 | key.offset = block_group->key.objectid; |
| 9355 | key.type = 0; |
| 9356 | |
| 9357 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 9358 | if (ret < 0) |
| 9359 | goto out; |
| 9360 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9361 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9362 | if (ret == 0) { |
| 9363 | ret = btrfs_del_item(trans, tree_root, path); |
| 9364 | if (ret) |
| 9365 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9366 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9367 | } |
| 9368 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9369 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9370 | rb_erase(&block_group->cache_node, |
| 9371 | &root->fs_info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 9372 | |
| 9373 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 9374 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9375 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9376 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9377 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9378 | /* |
| 9379 | * we must use list_del_init so people can check to see if they |
| 9380 | * are still on the list after taking the semaphore |
| 9381 | */ |
| 9382 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9383 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9384 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 9385 | block_group->space_info->block_group_kobjs[index] = NULL; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9386 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9387 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9388 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9389 | if (kobj) { |
| 9390 | kobject_del(kobj); |
| 9391 | kobject_put(kobj); |
| 9392 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9393 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9394 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9395 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9396 | |
| 9397 | btrfs_remove_free_space_cache(block_group); |
| 9398 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9399 | spin_lock(&block_group->space_info->lock); |
| 9400 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 9401 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9402 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9403 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 9404 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9405 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9406 | |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 9407 | btrfs_clear_space_info_full(root->fs_info); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9408 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 9409 | btrfs_put_block_group(block_group); |
| 9410 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9411 | |
| 9412 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 9413 | if (ret > 0) |
| 9414 | ret = -EIO; |
| 9415 | if (ret < 0) |
| 9416 | goto out; |
| 9417 | |
| 9418 | ret = btrfs_del_item(trans, root, path); |
| 9419 | out: |
| 9420 | btrfs_free_path(path); |
| 9421 | return ret; |
| 9422 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9423 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9424 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 9425 | { |
| 9426 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9427 | struct btrfs_super_block *disk_super; |
| 9428 | u64 features; |
| 9429 | u64 flags; |
| 9430 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9431 | int ret; |
| 9432 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9433 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9434 | if (!btrfs_super_root(disk_super)) |
| 9435 | return 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9436 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9437 | features = btrfs_super_incompat_flags(disk_super); |
| 9438 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 9439 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9440 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9441 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 9442 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9443 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9444 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9445 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9446 | if (mixed) { |
| 9447 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
| 9448 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 9449 | } else { |
| 9450 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 9451 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 9452 | if (ret) |
| 9453 | goto out; |
| 9454 | |
| 9455 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 9456 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 9457 | } |
| 9458 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9459 | return ret; |
| 9460 | } |
| 9461 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9462 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 9463 | { |
| 9464 | return unpin_extent_range(root, start, end); |
| 9465 | } |
| 9466 | |
| 9467 | int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 9468 | u64 num_bytes, u64 *actual_bytes) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9469 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 9470 | return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9471 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9472 | |
| 9473 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 9474 | { |
| 9475 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 9476 | struct btrfs_block_group_cache *cache = NULL; |
| 9477 | u64 group_trimmed; |
| 9478 | u64 start; |
| 9479 | u64 end; |
| 9480 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 9481 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9482 | int ret = 0; |
| 9483 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 9484 | /* |
| 9485 | * try to trim all FS space, our block group may start from non-zero. |
| 9486 | */ |
| 9487 | if (range->len == total_bytes) |
| 9488 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 9489 | else |
| 9490 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9491 | |
| 9492 | while (cache) { |
| 9493 | if (cache->key.objectid >= (range->start + range->len)) { |
| 9494 | btrfs_put_block_group(cache); |
| 9495 | break; |
| 9496 | } |
| 9497 | |
| 9498 | start = max(range->start, cache->key.objectid); |
| 9499 | end = min(range->start + range->len, |
| 9500 | cache->key.objectid + cache->key.offset); |
| 9501 | |
| 9502 | if (end - start >= range->minlen) { |
| 9503 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 9504 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 9505 | if (ret) { |
| 9506 | btrfs_put_block_group(cache); |
| 9507 | break; |
| 9508 | } |
| 9509 | ret = wait_block_group_cache_done(cache); |
| 9510 | if (ret) { |
| 9511 | btrfs_put_block_group(cache); |
| 9512 | break; |
| 9513 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9514 | } |
| 9515 | ret = btrfs_trim_block_group(cache, |
| 9516 | &group_trimmed, |
| 9517 | start, |
| 9518 | end, |
| 9519 | range->minlen); |
| 9520 | |
| 9521 | trimmed += group_trimmed; |
| 9522 | if (ret) { |
| 9523 | btrfs_put_block_group(cache); |
| 9524 | break; |
| 9525 | } |
| 9526 | } |
| 9527 | |
| 9528 | cache = next_block_group(fs_info->tree_root, cache); |
| 9529 | } |
| 9530 | |
| 9531 | range->len = trimmed; |
| 9532 | return ret; |
| 9533 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 9534 | |
| 9535 | /* |
| 9536 | * btrfs_{start,end}_write() is similar to mnt_{want, drop}_write(), |
| 9537 | * they are used to prevent the some tasks writing data into the page cache |
| 9538 | * by nocow before the subvolume is snapshoted, but flush the data into |
| 9539 | * the disk after the snapshot creation. |
| 9540 | */ |
| 9541 | void btrfs_end_nocow_write(struct btrfs_root *root) |
| 9542 | { |
| 9543 | percpu_counter_dec(&root->subv_writers->counter); |
| 9544 | /* |
| 9545 | * Make sure counter is updated before we wake up |
| 9546 | * waiters. |
| 9547 | */ |
| 9548 | smp_mb(); |
| 9549 | if (waitqueue_active(&root->subv_writers->wait)) |
| 9550 | wake_up(&root->subv_writers->wait); |
| 9551 | } |
| 9552 | |
| 9553 | int btrfs_start_nocow_write(struct btrfs_root *root) |
| 9554 | { |
| 9555 | if (unlikely(atomic_read(&root->will_be_snapshoted))) |
| 9556 | return 0; |
| 9557 | |
| 9558 | percpu_counter_inc(&root->subv_writers->counter); |
| 9559 | /* |
| 9560 | * Make sure counter is updated before we check for snapshot creation. |
| 9561 | */ |
| 9562 | smp_mb(); |
| 9563 | if (unlikely(atomic_read(&root->will_be_snapshoted))) { |
| 9564 | btrfs_end_nocow_write(root); |
| 9565 | return 0; |
| 9566 | } |
| 9567 | return 1; |
| 9568 | } |