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" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 29 | #include "ctree.h" |
| 30 | #include "disk-io.h" |
| 31 | #include "print-tree.h" |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 32 | #include "transaction.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 33 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 34 | #include "raid56.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 35 | #include "locking.h" |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 36 | #include "free-space-cache.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 37 | #include "math.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 38 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 39 | #undef SCRAMBLE_DELAYED_REFS |
| 40 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 41 | /* |
| 42 | * control flags for do_chunk_alloc's force field |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 43 | * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk |
| 44 | * if we really need one. |
| 45 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 46 | * CHUNK_ALLOC_LIMITED means to only try and allocate one |
| 47 | * if we have very few chunks already allocated. This is |
| 48 | * used as part of the clustering code to help make sure |
| 49 | * we have a good pool of storage to cluster in, without |
| 50 | * filling the FS with empty chunks |
| 51 | * |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 52 | * CHUNK_ALLOC_FORCE means it must try to allocate one |
| 53 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 54 | */ |
| 55 | enum { |
| 56 | CHUNK_ALLOC_NO_FORCE = 0, |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 57 | CHUNK_ALLOC_LIMITED = 1, |
| 58 | CHUNK_ALLOC_FORCE = 2, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 59 | }; |
| 60 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 61 | /* |
| 62 | * Control how reservations are dealt with. |
| 63 | * |
| 64 | * RESERVE_FREE - freeing a reservation. |
| 65 | * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for |
| 66 | * ENOSPC accounting |
| 67 | * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update |
| 68 | * bytes_may_use as the ENOSPC accounting is done elsewhere |
| 69 | */ |
| 70 | enum { |
| 71 | RESERVE_FREE = 0, |
| 72 | RESERVE_ALLOC = 1, |
| 73 | RESERVE_ALLOC_NO_ACCOUNT = 2, |
| 74 | }; |
| 75 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 76 | static int update_block_group(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 77 | u64 bytenr, u64 num_bytes, int alloc); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 78 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 79 | struct btrfs_root *root, |
| 80 | u64 bytenr, u64 num_bytes, u64 parent, |
| 81 | u64 root_objectid, u64 owner_objectid, |
| 82 | u64 owner_offset, int refs_to_drop, |
| 83 | struct btrfs_delayed_extent_op *extra_op); |
| 84 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 85 | struct extent_buffer *leaf, |
| 86 | struct btrfs_extent_item *ei); |
| 87 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 88 | struct btrfs_root *root, |
| 89 | u64 parent, u64 root_objectid, |
| 90 | u64 flags, u64 owner, u64 offset, |
| 91 | struct btrfs_key *ins, int ref_mod); |
| 92 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 93 | struct btrfs_root *root, |
| 94 | u64 parent, u64 root_objectid, |
| 95 | u64 flags, struct btrfs_disk_key *key, |
| 96 | int level, struct btrfs_key *ins); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 97 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 98 | struct btrfs_root *extent_root, u64 flags, |
| 99 | int force); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 100 | static int find_next_key(struct btrfs_path *path, int level, |
| 101 | struct btrfs_key *key); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 102 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 103 | int dump_block_groups); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 104 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 105 | u64 num_bytes, int reserve); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 106 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 107 | u64 num_bytes); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 108 | int btrfs_pin_extent(struct btrfs_root *root, |
| 109 | u64 bytenr, u64 num_bytes, int reserved); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 110 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 111 | static noinline int |
| 112 | block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 113 | { |
| 114 | smp_mb(); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 115 | return cache->cached == BTRFS_CACHE_FINISHED || |
| 116 | cache->cached == BTRFS_CACHE_ERROR; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 117 | } |
| 118 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 119 | static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits) |
| 120 | { |
| 121 | return (cache->flags & bits) == bits; |
| 122 | } |
| 123 | |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 124 | static void btrfs_get_block_group(struct btrfs_block_group_cache *cache) |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 125 | { |
| 126 | atomic_inc(&cache->count); |
| 127 | } |
| 128 | |
| 129 | void btrfs_put_block_group(struct btrfs_block_group_cache *cache) |
| 130 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 131 | if (atomic_dec_and_test(&cache->count)) { |
| 132 | WARN_ON(cache->pinned > 0); |
| 133 | WARN_ON(cache->reserved > 0); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 134 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 135 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 136 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 139 | /* |
| 140 | * this adds the block group to the fs_info rb tree for the block group |
| 141 | * cache |
| 142 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 143 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 144 | struct btrfs_block_group_cache *block_group) |
| 145 | { |
| 146 | struct rb_node **p; |
| 147 | struct rb_node *parent = NULL; |
| 148 | struct btrfs_block_group_cache *cache; |
| 149 | |
| 150 | spin_lock(&info->block_group_cache_lock); |
| 151 | p = &info->block_group_cache_tree.rb_node; |
| 152 | |
| 153 | while (*p) { |
| 154 | parent = *p; |
| 155 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 156 | cache_node); |
| 157 | if (block_group->key.objectid < cache->key.objectid) { |
| 158 | p = &(*p)->rb_left; |
| 159 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 160 | p = &(*p)->rb_right; |
| 161 | } else { |
| 162 | spin_unlock(&info->block_group_cache_lock); |
| 163 | return -EEXIST; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | rb_link_node(&block_group->cache_node, parent, p); |
| 168 | rb_insert_color(&block_group->cache_node, |
| 169 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 170 | |
| 171 | if (info->first_logical_byte > block_group->key.objectid) |
| 172 | info->first_logical_byte = block_group->key.objectid; |
| 173 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 174 | spin_unlock(&info->block_group_cache_lock); |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | /* |
| 180 | * This will return the block group at or after bytenr if contains is 0, else |
| 181 | * it will return the block group that contains the bytenr |
| 182 | */ |
| 183 | static struct btrfs_block_group_cache * |
| 184 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 185 | int contains) |
| 186 | { |
| 187 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 188 | struct rb_node *n; |
| 189 | u64 end, start; |
| 190 | |
| 191 | spin_lock(&info->block_group_cache_lock); |
| 192 | n = info->block_group_cache_tree.rb_node; |
| 193 | |
| 194 | while (n) { |
| 195 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 196 | cache_node); |
| 197 | end = cache->key.objectid + cache->key.offset - 1; |
| 198 | start = cache->key.objectid; |
| 199 | |
| 200 | if (bytenr < start) { |
| 201 | if (!contains && (!ret || start < ret->key.objectid)) |
| 202 | ret = cache; |
| 203 | n = n->rb_left; |
| 204 | } else if (bytenr > start) { |
| 205 | if (contains && bytenr <= end) { |
| 206 | ret = cache; |
| 207 | break; |
| 208 | } |
| 209 | n = n->rb_right; |
| 210 | } else { |
| 211 | ret = cache; |
| 212 | break; |
| 213 | } |
| 214 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 215 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 216 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 217 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 218 | info->first_logical_byte = ret->key.objectid; |
| 219 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 220 | spin_unlock(&info->block_group_cache_lock); |
| 221 | |
| 222 | return ret; |
| 223 | } |
| 224 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 225 | static int add_excluded_extent(struct btrfs_root *root, |
| 226 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 227 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 228 | u64 end = start + num_bytes - 1; |
| 229 | set_extent_bits(&root->fs_info->freed_extents[0], |
| 230 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 231 | set_extent_bits(&root->fs_info->freed_extents[1], |
| 232 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 233 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 234 | } |
| 235 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 236 | static void free_excluded_extents(struct btrfs_root *root, |
| 237 | struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 238 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 239 | u64 start, end; |
| 240 | |
| 241 | start = cache->key.objectid; |
| 242 | end = start + cache->key.offset - 1; |
| 243 | |
| 244 | clear_extent_bits(&root->fs_info->freed_extents[0], |
| 245 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 246 | clear_extent_bits(&root->fs_info->freed_extents[1], |
| 247 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 248 | } |
| 249 | |
| 250 | static int exclude_super_stripes(struct btrfs_root *root, |
| 251 | struct btrfs_block_group_cache *cache) |
| 252 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 253 | u64 bytenr; |
| 254 | u64 *logical; |
| 255 | int stripe_len; |
| 256 | int i, nr, ret; |
| 257 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 258 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 259 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 260 | cache->bytes_super += stripe_len; |
| 261 | ret = add_excluded_extent(root, cache->key.objectid, |
| 262 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 263 | if (ret) |
| 264 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 267 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 268 | bytenr = btrfs_sb_offset(i); |
| 269 | ret = btrfs_rmap_block(&root->fs_info->mapping_tree, |
| 270 | cache->key.objectid, bytenr, |
| 271 | 0, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 272 | if (ret) |
| 273 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 274 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 275 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 276 | u64 start, len; |
| 277 | |
| 278 | if (logical[nr] > cache->key.objectid + |
| 279 | cache->key.offset) |
| 280 | continue; |
| 281 | |
| 282 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 283 | continue; |
| 284 | |
| 285 | start = logical[nr]; |
| 286 | if (start < cache->key.objectid) { |
| 287 | start = cache->key.objectid; |
| 288 | len = (logical[nr] + stripe_len) - start; |
| 289 | } else { |
| 290 | len = min_t(u64, stripe_len, |
| 291 | cache->key.objectid + |
| 292 | cache->key.offset - start); |
| 293 | } |
| 294 | |
| 295 | cache->bytes_super += len; |
| 296 | ret = add_excluded_extent(root, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 297 | if (ret) { |
| 298 | kfree(logical); |
| 299 | return ret; |
| 300 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 301 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 302 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 303 | kfree(logical); |
| 304 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 305 | return 0; |
| 306 | } |
| 307 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 308 | static struct btrfs_caching_control * |
| 309 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 310 | { |
| 311 | struct btrfs_caching_control *ctl; |
| 312 | |
| 313 | spin_lock(&cache->lock); |
| 314 | if (cache->cached != BTRFS_CACHE_STARTED) { |
| 315 | spin_unlock(&cache->lock); |
| 316 | return NULL; |
| 317 | } |
| 318 | |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 319 | /* We're loading it the fast way, so we don't have a caching_ctl. */ |
| 320 | if (!cache->caching_ctl) { |
| 321 | spin_unlock(&cache->lock); |
| 322 | return NULL; |
| 323 | } |
| 324 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 325 | ctl = cache->caching_ctl; |
| 326 | atomic_inc(&ctl->count); |
| 327 | spin_unlock(&cache->lock); |
| 328 | return ctl; |
| 329 | } |
| 330 | |
| 331 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 332 | { |
| 333 | if (atomic_dec_and_test(&ctl->count)) |
| 334 | kfree(ctl); |
| 335 | } |
| 336 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 337 | /* |
| 338 | * this is only called by cache_block_group, since we could have freed extents |
| 339 | * we need to check the pinned_extents for any extents that can't be used yet |
| 340 | * since their free space will be released as soon as the transaction commits. |
| 341 | */ |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 342 | 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] | 343 | struct btrfs_fs_info *info, u64 start, u64 end) |
| 344 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 345 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 346 | int ret; |
| 347 | |
| 348 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 349 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 350 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 351 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 352 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 353 | if (ret) |
| 354 | break; |
| 355 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 356 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 357 | start = extent_end + 1; |
| 358 | } else if (extent_start > start && extent_start < end) { |
| 359 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 360 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 361 | ret = btrfs_add_free_space(block_group, start, |
| 362 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 363 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 364 | start = extent_end + 1; |
| 365 | } else { |
| 366 | break; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | if (start < end) { |
| 371 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 372 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 373 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 374 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 375 | } |
| 376 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 377 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 378 | } |
| 379 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 380 | static noinline void caching_thread(struct btrfs_work *work) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 381 | { |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 382 | struct btrfs_block_group_cache *block_group; |
| 383 | struct btrfs_fs_info *fs_info; |
| 384 | struct btrfs_caching_control *caching_ctl; |
| 385 | struct btrfs_root *extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 386 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 387 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 388 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 389 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 390 | u64 last = 0; |
| 391 | u32 nritems; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 392 | int ret = -ENOMEM; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 393 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 394 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 395 | block_group = caching_ctl->block_group; |
| 396 | fs_info = block_group->fs_info; |
| 397 | extent_root = fs_info->extent_root; |
| 398 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 399 | path = btrfs_alloc_path(); |
| 400 | if (!path) |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 401 | goto out; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 402 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 403 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 404 | |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 405 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 406 | * We don't want to deadlock with somebody trying to allocate a new |
| 407 | * extent for the extent root while also trying to search the extent |
| 408 | * root to add free space. So we skip locking and search the commit |
| 409 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 410 | */ |
| 411 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 412 | path->search_commit_root = 1; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 413 | path->reada = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 414 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 415 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 416 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 417 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 418 | again: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 419 | mutex_lock(&caching_ctl->mutex); |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 420 | /* need to make sure the commit_root doesn't disappear */ |
| 421 | down_read(&fs_info->extent_commit_sem); |
| 422 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 423 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 424 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 425 | if (ret < 0) |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 426 | goto err; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 427 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 428 | leaf = path->nodes[0]; |
| 429 | nritems = btrfs_header_nritems(leaf); |
| 430 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 431 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 432 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 433 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 434 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 435 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 436 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 437 | if (path->slots[0] < nritems) { |
| 438 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 439 | } else { |
| 440 | ret = find_next_key(path, 0, &key); |
| 441 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 442 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 443 | |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 444 | if (need_resched()) { |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 445 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 446 | btrfs_release_path(path); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 447 | up_read(&fs_info->extent_commit_sem); |
| 448 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 449 | cond_resched(); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 450 | goto again; |
| 451 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 452 | |
| 453 | ret = btrfs_next_leaf(extent_root, path); |
| 454 | if (ret < 0) |
| 455 | goto err; |
| 456 | if (ret) |
| 457 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 458 | leaf = path->nodes[0]; |
| 459 | nritems = btrfs_header_nritems(leaf); |
| 460 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 461 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 462 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 463 | if (key.objectid < last) { |
| 464 | key.objectid = last; |
| 465 | key.offset = 0; |
| 466 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 467 | |
| 468 | caching_ctl->progress = last; |
| 469 | btrfs_release_path(path); |
| 470 | goto next; |
| 471 | } |
| 472 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 473 | if (key.objectid < block_group->key.objectid) { |
| 474 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 475 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 476 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 477 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 478 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 479 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 480 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 481 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 482 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 483 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 484 | total_found += add_new_free_space(block_group, |
| 485 | fs_info, last, |
| 486 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 487 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 488 | last = key.objectid + |
| 489 | fs_info->tree_root->leafsize; |
| 490 | else |
| 491 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 492 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 493 | if (total_found > (1024 * 1024 * 2)) { |
| 494 | total_found = 0; |
| 495 | wake_up(&caching_ctl->wait); |
| 496 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 497 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 498 | path->slots[0]++; |
| 499 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 500 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 501 | |
| 502 | total_found += add_new_free_space(block_group, fs_info, last, |
| 503 | block_group->key.objectid + |
| 504 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 505 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 506 | |
| 507 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 508 | block_group->caching_ctl = NULL; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 509 | block_group->cached = BTRFS_CACHE_FINISHED; |
| 510 | spin_unlock(&block_group->lock); |
| 511 | |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 512 | err: |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 513 | btrfs_free_path(path); |
Yan Zheng | 276e680 | 2009-07-30 09:40:40 -0400 | [diff] [blame] | 514 | up_read(&fs_info->extent_commit_sem); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 515 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 516 | free_excluded_extents(extent_root, block_group); |
| 517 | |
| 518 | mutex_unlock(&caching_ctl->mutex); |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 519 | out: |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 520 | if (ret) { |
| 521 | spin_lock(&block_group->lock); |
| 522 | block_group->caching_ctl = NULL; |
| 523 | block_group->cached = BTRFS_CACHE_ERROR; |
| 524 | spin_unlock(&block_group->lock); |
| 525 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 526 | wake_up(&caching_ctl->wait); |
| 527 | |
| 528 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 529 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 530 | } |
| 531 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 532 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 533 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 534 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 535 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 536 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 537 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 538 | int ret = 0; |
| 539 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 540 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 541 | if (!caching_ctl) |
| 542 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 543 | |
| 544 | INIT_LIST_HEAD(&caching_ctl->list); |
| 545 | mutex_init(&caching_ctl->mutex); |
| 546 | init_waitqueue_head(&caching_ctl->wait); |
| 547 | caching_ctl->block_group = cache; |
| 548 | caching_ctl->progress = cache->key.objectid; |
| 549 | atomic_set(&caching_ctl->count, 1); |
| 550 | caching_ctl->work.func = caching_thread; |
| 551 | |
| 552 | spin_lock(&cache->lock); |
| 553 | /* |
| 554 | * This should be a rare occasion, but this could happen I think in the |
| 555 | * case where one thread starts to load the space cache info, and then |
| 556 | * some other thread starts a transaction commit which tries to do an |
| 557 | * allocation while the other thread is still loading the space cache |
| 558 | * info. The previous loop should have kept us from choosing this block |
| 559 | * group, but if we've moved to the state where we will wait on caching |
| 560 | * block groups we need to first check if we're doing a fast load here, |
| 561 | * so we can wait for it to finish, otherwise we could end up allocating |
| 562 | * from a block group who's cache gets evicted for one reason or |
| 563 | * another. |
| 564 | */ |
| 565 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 566 | struct btrfs_caching_control *ctl; |
| 567 | |
| 568 | ctl = cache->caching_ctl; |
| 569 | atomic_inc(&ctl->count); |
| 570 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 571 | spin_unlock(&cache->lock); |
| 572 | |
| 573 | schedule(); |
| 574 | |
| 575 | finish_wait(&ctl->wait, &wait); |
| 576 | put_caching_control(ctl); |
| 577 | spin_lock(&cache->lock); |
| 578 | } |
| 579 | |
| 580 | if (cache->cached != BTRFS_CACHE_NO) { |
| 581 | spin_unlock(&cache->lock); |
| 582 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 583 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 584 | } |
| 585 | WARN_ON(cache->caching_ctl); |
| 586 | cache->caching_ctl = caching_ctl; |
| 587 | cache->cached = BTRFS_CACHE_FAST; |
| 588 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 589 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 590 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 591 | ret = load_free_space_cache(fs_info, cache); |
| 592 | |
| 593 | spin_lock(&cache->lock); |
| 594 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 595 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 596 | cache->cached = BTRFS_CACHE_FINISHED; |
| 597 | cache->last_byte_to_unpin = (u64)-1; |
| 598 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 599 | if (load_cache_only) { |
| 600 | cache->caching_ctl = NULL; |
| 601 | cache->cached = BTRFS_CACHE_NO; |
| 602 | } else { |
| 603 | cache->cached = BTRFS_CACHE_STARTED; |
| 604 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 605 | } |
| 606 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 607 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 608 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 609 | put_caching_control(caching_ctl); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 610 | free_excluded_extents(fs_info->extent_root, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 611 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 612 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 613 | } else { |
| 614 | /* |
| 615 | * We are not going to do the fast caching, set cached to the |
| 616 | * appropriate value and wakeup any waiters. |
| 617 | */ |
| 618 | spin_lock(&cache->lock); |
| 619 | if (load_cache_only) { |
| 620 | cache->caching_ctl = NULL; |
| 621 | cache->cached = BTRFS_CACHE_NO; |
| 622 | } else { |
| 623 | cache->cached = BTRFS_CACHE_STARTED; |
| 624 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 625 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 626 | wake_up(&caching_ctl->wait); |
| 627 | } |
| 628 | |
| 629 | if (load_cache_only) { |
| 630 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 631 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 632 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 633 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 634 | down_write(&fs_info->extent_commit_sem); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 635 | atomic_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 636 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
| 637 | up_write(&fs_info->extent_commit_sem); |
| 638 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 639 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 640 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 641 | btrfs_queue_worker(&fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 642 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 643 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 644 | } |
| 645 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 646 | /* |
| 647 | * return the block group that starts at or after bytenr |
| 648 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 649 | static struct btrfs_block_group_cache * |
| 650 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 651 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 652 | struct btrfs_block_group_cache *cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 653 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 654 | cache = block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 655 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 656 | return cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 657 | } |
| 658 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 659 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 660 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 661 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 662 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 663 | struct btrfs_fs_info *info, |
| 664 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 665 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 666 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 667 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 668 | cache = block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 669 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 670 | return cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 671 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 672 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 673 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 674 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 675 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 676 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 677 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 678 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 679 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 680 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 681 | rcu_read_lock(); |
| 682 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 683 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 684 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 685 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 686 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 687 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 688 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 689 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 690 | } |
| 691 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 692 | /* |
| 693 | * after adding space to the filesystem, we need to clear the full flags |
| 694 | * on all the space infos. |
| 695 | */ |
| 696 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 697 | { |
| 698 | struct list_head *head = &info->space_info; |
| 699 | struct btrfs_space_info *found; |
| 700 | |
| 701 | rcu_read_lock(); |
| 702 | list_for_each_entry_rcu(found, head, list) |
| 703 | found->full = 0; |
| 704 | rcu_read_unlock(); |
| 705 | } |
| 706 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 707 | /* simple helper to search for an existing extent at a given offset */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 708 | int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 709 | { |
| 710 | int ret; |
| 711 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 712 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 713 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 714 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 715 | if (!path) |
| 716 | return -ENOMEM; |
| 717 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 718 | key.objectid = start; |
| 719 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 720 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 721 | ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path, |
| 722 | 0, 0); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 723 | if (ret > 0) { |
| 724 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 725 | if (key.objectid == start && |
| 726 | key.type == BTRFS_METADATA_ITEM_KEY) |
| 727 | ret = 0; |
| 728 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 729 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 730 | return ret; |
| 731 | } |
| 732 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 733 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 734 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 735 | * |
| 736 | * the head node for delayed ref is used to store the sum of all the |
| 737 | * reference count modifications queued up in the rbtree. the head |
| 738 | * node may also store the extent flags to set. This way you can check |
| 739 | * to see what the reference count and extent flags would be if all of |
| 740 | * the delayed refs are not processed. |
| 741 | */ |
| 742 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
| 743 | struct btrfs_root *root, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 744 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 745 | { |
| 746 | struct btrfs_delayed_ref_head *head; |
| 747 | struct btrfs_delayed_ref_root *delayed_refs; |
| 748 | struct btrfs_path *path; |
| 749 | struct btrfs_extent_item *ei; |
| 750 | struct extent_buffer *leaf; |
| 751 | struct btrfs_key key; |
| 752 | u32 item_size; |
| 753 | u64 num_refs; |
| 754 | u64 extent_flags; |
| 755 | int ret; |
| 756 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 757 | /* |
| 758 | * If we don't have skinny metadata, don't bother doing anything |
| 759 | * different |
| 760 | */ |
| 761 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) { |
| 762 | offset = root->leafsize; |
| 763 | metadata = 0; |
| 764 | } |
| 765 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 766 | path = btrfs_alloc_path(); |
| 767 | if (!path) |
| 768 | return -ENOMEM; |
| 769 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 770 | if (!trans) { |
| 771 | path->skip_locking = 1; |
| 772 | path->search_commit_root = 1; |
| 773 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 774 | |
| 775 | search_again: |
| 776 | key.objectid = bytenr; |
| 777 | key.offset = offset; |
| 778 | if (metadata) |
| 779 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 780 | else |
| 781 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 782 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 783 | again: |
| 784 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, |
| 785 | &key, path, 0, 0); |
| 786 | if (ret < 0) |
| 787 | goto out_free; |
| 788 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 789 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 790 | if (path->slots[0]) { |
| 791 | path->slots[0]--; |
| 792 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 793 | path->slots[0]); |
| 794 | if (key.objectid == bytenr && |
| 795 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 796 | key.offset == root->leafsize) |
| 797 | ret = 0; |
| 798 | } |
| 799 | if (ret) { |
| 800 | key.objectid = bytenr; |
| 801 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 802 | key.offset = root->leafsize; |
| 803 | btrfs_release_path(path); |
| 804 | goto again; |
| 805 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 806 | } |
| 807 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 808 | if (ret == 0) { |
| 809 | leaf = path->nodes[0]; |
| 810 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 811 | if (item_size >= sizeof(*ei)) { |
| 812 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 813 | struct btrfs_extent_item); |
| 814 | num_refs = btrfs_extent_refs(leaf, ei); |
| 815 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 816 | } else { |
| 817 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 818 | struct btrfs_extent_item_v0 *ei0; |
| 819 | BUG_ON(item_size != sizeof(*ei0)); |
| 820 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 821 | struct btrfs_extent_item_v0); |
| 822 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 823 | /* FIXME: this isn't correct for data */ |
| 824 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 825 | #else |
| 826 | BUG(); |
| 827 | #endif |
| 828 | } |
| 829 | BUG_ON(num_refs == 0); |
| 830 | } else { |
| 831 | num_refs = 0; |
| 832 | extent_flags = 0; |
| 833 | ret = 0; |
| 834 | } |
| 835 | |
| 836 | if (!trans) |
| 837 | goto out; |
| 838 | |
| 839 | delayed_refs = &trans->transaction->delayed_refs; |
| 840 | spin_lock(&delayed_refs->lock); |
| 841 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 842 | if (head) { |
| 843 | if (!mutex_trylock(&head->mutex)) { |
| 844 | atomic_inc(&head->node.refs); |
| 845 | spin_unlock(&delayed_refs->lock); |
| 846 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 847 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 848 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 849 | /* |
| 850 | * Mutex was contended, block until it's released and try |
| 851 | * again |
| 852 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 853 | mutex_lock(&head->mutex); |
| 854 | mutex_unlock(&head->mutex); |
| 855 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 856 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 857 | } |
| 858 | if (head->extent_op && head->extent_op->update_flags) |
| 859 | extent_flags |= head->extent_op->flags_to_set; |
| 860 | else |
| 861 | BUG_ON(num_refs == 0); |
| 862 | |
| 863 | num_refs += head->node.ref_mod; |
| 864 | mutex_unlock(&head->mutex); |
| 865 | } |
| 866 | spin_unlock(&delayed_refs->lock); |
| 867 | out: |
| 868 | WARN_ON(num_refs == 0); |
| 869 | if (refs) |
| 870 | *refs = num_refs; |
| 871 | if (flags) |
| 872 | *flags = extent_flags; |
| 873 | out_free: |
| 874 | btrfs_free_path(path); |
| 875 | return ret; |
| 876 | } |
| 877 | |
| 878 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 879 | * Back reference rules. Back refs have three main goals: |
| 880 | * |
| 881 | * 1) differentiate between all holders of references to an extent so that |
| 882 | * when a reference is dropped we can make sure it was a valid reference |
| 883 | * before freeing the extent. |
| 884 | * |
| 885 | * 2) Provide enough information to quickly find the holders of an extent |
| 886 | * if we notice a given block is corrupted or bad. |
| 887 | * |
| 888 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 889 | * maintenance. This is actually the same as #2, but with a slightly |
| 890 | * different use case. |
| 891 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 892 | * There are two kinds of back refs. The implicit back refs is optimized |
| 893 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 894 | * back refs of this kind provide information about the block's owner tree |
| 895 | * and the pointer's key. These information allow us to find the block by |
| 896 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 897 | * referenced by their owner trees. The location of tree block is recorded |
| 898 | * in the back refs. Actually the full back refs is generic, and can be |
| 899 | * used in all cases the implicit back refs is used. The major shortcoming |
| 900 | * of the full back refs is its overhead. Every time a tree block gets |
| 901 | * COWed, we have to update back refs entry for all pointers in it. |
| 902 | * |
| 903 | * For a newly allocated tree block, we use implicit back refs for |
| 904 | * pointers in it. This means most tree related operations only involve |
| 905 | * implicit back refs. For a tree block created in old transaction, the |
| 906 | * only way to drop a reference to it is COW it. So we can detect the |
| 907 | * event that tree block loses its owner tree's reference and do the |
| 908 | * back refs conversion. |
| 909 | * |
| 910 | * When a tree block is COW'd through a tree, there are four cases: |
| 911 | * |
| 912 | * The reference count of the block is one and the tree is the block's |
| 913 | * owner tree. Nothing to do in this case. |
| 914 | * |
| 915 | * The reference count of the block is one and the tree is not the |
| 916 | * block's owner tree. In this case, full back refs is used for pointers |
| 917 | * in the block. Remove these full back refs, add implicit back refs for |
| 918 | * every pointers in the new block. |
| 919 | * |
| 920 | * The reference count of the block is greater than one and the tree is |
| 921 | * the block's owner tree. In this case, implicit back refs is used for |
| 922 | * pointers in the block. Add full back refs for every pointers in the |
| 923 | * block, increase lower level extents' reference counts. The original |
| 924 | * implicit back refs are entailed to the new block. |
| 925 | * |
| 926 | * The reference count of the block is greater than one and the tree is |
| 927 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 928 | * the new block, increase lower level extents' reference count. |
| 929 | * |
| 930 | * Back Reference Key composing: |
| 931 | * |
| 932 | * The key objectid corresponds to the first byte in the extent, |
| 933 | * The key type is used to differentiate between types of back refs. |
| 934 | * There are different meanings of the key offset for different types |
| 935 | * of back refs. |
| 936 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 937 | * File extents can be referenced by: |
| 938 | * |
| 939 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 940 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 941 | * - different offsets inside a file (bookend extents in file.c) |
| 942 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 943 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 944 | * |
| 945 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 946 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 947 | * - original offset in the file |
| 948 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 949 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 950 | * The key offset for the implicit back refs is hash of the first |
| 951 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 952 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 953 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 954 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 955 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 956 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 957 | * The key offset for the implicit back refs is the first byte of |
| 958 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 959 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 960 | * When a file extent is allocated, The implicit back refs is used. |
| 961 | * the fields are filled in: |
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 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 964 | * |
| 965 | * When a file extent is removed file truncation, we find the |
| 966 | * corresponding implicit back refs and check the following fields: |
| 967 | * |
| 968 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 969 | * |
| 970 | * Btree extents can be referenced by: |
| 971 | * |
| 972 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 973 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 974 | * Both the implicit back refs and the full back refs for tree blocks |
| 975 | * only consist of key. The key offset for the implicit back refs is |
| 976 | * objectid of block's owner tree. The key offset for the full back refs |
| 977 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 978 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 979 | * When implicit back refs is used, information about the lowest key and |
| 980 | * level of the tree block are required. These information are stored in |
| 981 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 982 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 983 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 984 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 985 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
| 986 | struct btrfs_root *root, |
| 987 | struct btrfs_path *path, |
| 988 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 989 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 990 | struct btrfs_extent_item *item; |
| 991 | struct btrfs_extent_item_v0 *ei0; |
| 992 | struct btrfs_extent_ref_v0 *ref0; |
| 993 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 994 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 995 | struct btrfs_key key; |
| 996 | struct btrfs_key found_key; |
| 997 | u32 new_size = sizeof(*item); |
| 998 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 999 | int ret; |
| 1000 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1001 | leaf = path->nodes[0]; |
| 1002 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1003 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1004 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1005 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1006 | struct btrfs_extent_item_v0); |
| 1007 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1008 | |
| 1009 | if (owner == (u64)-1) { |
| 1010 | while (1) { |
| 1011 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1012 | ret = btrfs_next_leaf(root, path); |
| 1013 | if (ret < 0) |
| 1014 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1015 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1016 | leaf = path->nodes[0]; |
| 1017 | } |
| 1018 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1019 | path->slots[0]); |
| 1020 | BUG_ON(key.objectid != found_key.objectid); |
| 1021 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1022 | path->slots[0]++; |
| 1023 | continue; |
| 1024 | } |
| 1025 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1026 | struct btrfs_extent_ref_v0); |
| 1027 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1028 | break; |
| 1029 | } |
| 1030 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1031 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1032 | |
| 1033 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1034 | new_size += sizeof(*bi); |
| 1035 | |
| 1036 | new_size -= sizeof(*ei0); |
| 1037 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1038 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1039 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1040 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1041 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1042 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1043 | btrfs_extend_item(root, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1044 | |
| 1045 | leaf = path->nodes[0]; |
| 1046 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1047 | btrfs_set_extent_refs(leaf, item, refs); |
| 1048 | /* FIXME: get real generation */ |
| 1049 | btrfs_set_extent_generation(leaf, item, 0); |
| 1050 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1051 | btrfs_set_extent_flags(leaf, item, |
| 1052 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1053 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1054 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1055 | /* FIXME: get first key of the block */ |
| 1056 | memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi)); |
| 1057 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1058 | } else { |
| 1059 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1060 | } |
| 1061 | btrfs_mark_buffer_dirty(leaf); |
| 1062 | return 0; |
| 1063 | } |
| 1064 | #endif |
| 1065 | |
| 1066 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1067 | { |
| 1068 | u32 high_crc = ~(u32)0; |
| 1069 | u32 low_crc = ~(u32)0; |
| 1070 | __le64 lenum; |
| 1071 | |
| 1072 | lenum = cpu_to_le64(root_objectid); |
David Woodhouse | 163e783 | 2009-04-19 13:02:41 +0100 | [diff] [blame] | 1073 | high_crc = crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1074 | lenum = cpu_to_le64(owner); |
David Woodhouse | 163e783 | 2009-04-19 13:02:41 +0100 | [diff] [blame] | 1075 | low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1076 | lenum = cpu_to_le64(offset); |
David Woodhouse | 163e783 | 2009-04-19 13:02:41 +0100 | [diff] [blame] | 1077 | low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1078 | |
| 1079 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1080 | } |
| 1081 | |
| 1082 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1083 | struct btrfs_extent_data_ref *ref) |
| 1084 | { |
| 1085 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1086 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1087 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1088 | } |
| 1089 | |
| 1090 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1091 | struct btrfs_extent_data_ref *ref, |
| 1092 | u64 root_objectid, u64 owner, u64 offset) |
| 1093 | { |
| 1094 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1095 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1096 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1097 | return 0; |
| 1098 | return 1; |
| 1099 | } |
| 1100 | |
| 1101 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1102 | struct btrfs_root *root, |
| 1103 | struct btrfs_path *path, |
| 1104 | u64 bytenr, u64 parent, |
| 1105 | u64 root_objectid, |
| 1106 | u64 owner, u64 offset) |
| 1107 | { |
| 1108 | struct btrfs_key key; |
| 1109 | struct btrfs_extent_data_ref *ref; |
| 1110 | struct extent_buffer *leaf; |
| 1111 | u32 nritems; |
| 1112 | int ret; |
| 1113 | int recow; |
| 1114 | int err = -ENOENT; |
| 1115 | |
| 1116 | key.objectid = bytenr; |
| 1117 | if (parent) { |
| 1118 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1119 | key.offset = parent; |
| 1120 | } else { |
| 1121 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1122 | key.offset = hash_extent_data_ref(root_objectid, |
| 1123 | owner, offset); |
| 1124 | } |
| 1125 | again: |
| 1126 | recow = 0; |
| 1127 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1128 | if (ret < 0) { |
| 1129 | err = ret; |
| 1130 | goto fail; |
| 1131 | } |
| 1132 | |
| 1133 | if (parent) { |
| 1134 | if (!ret) |
| 1135 | return 0; |
| 1136 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1137 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1138 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1139 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1140 | if (ret < 0) { |
| 1141 | err = ret; |
| 1142 | goto fail; |
| 1143 | } |
| 1144 | if (!ret) |
| 1145 | return 0; |
| 1146 | #endif |
| 1147 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1148 | } |
| 1149 | |
| 1150 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1151 | nritems = btrfs_header_nritems(leaf); |
| 1152 | while (1) { |
| 1153 | if (path->slots[0] >= nritems) { |
| 1154 | ret = btrfs_next_leaf(root, path); |
| 1155 | if (ret < 0) |
| 1156 | err = ret; |
| 1157 | if (ret) |
| 1158 | goto fail; |
| 1159 | |
| 1160 | leaf = path->nodes[0]; |
| 1161 | nritems = btrfs_header_nritems(leaf); |
| 1162 | recow = 1; |
| 1163 | } |
| 1164 | |
| 1165 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1166 | if (key.objectid != bytenr || |
| 1167 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1168 | goto fail; |
| 1169 | |
| 1170 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1171 | struct btrfs_extent_data_ref); |
| 1172 | |
| 1173 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1174 | owner, offset)) { |
| 1175 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1176 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1177 | goto again; |
| 1178 | } |
| 1179 | err = 0; |
| 1180 | break; |
| 1181 | } |
| 1182 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1183 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1184 | fail: |
| 1185 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1186 | } |
| 1187 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1188 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1189 | struct btrfs_root *root, |
| 1190 | struct btrfs_path *path, |
| 1191 | u64 bytenr, u64 parent, |
| 1192 | u64 root_objectid, u64 owner, |
| 1193 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1194 | { |
| 1195 | struct btrfs_key key; |
| 1196 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1197 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1198 | u32 num_refs; |
| 1199 | int ret; |
| 1200 | |
| 1201 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1202 | if (parent) { |
| 1203 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1204 | key.offset = parent; |
| 1205 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1206 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1207 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1208 | key.offset = hash_extent_data_ref(root_objectid, |
| 1209 | owner, offset); |
| 1210 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1211 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1212 | |
| 1213 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1214 | if (ret && ret != -EEXIST) |
| 1215 | goto fail; |
| 1216 | |
| 1217 | leaf = path->nodes[0]; |
| 1218 | if (parent) { |
| 1219 | struct btrfs_shared_data_ref *ref; |
| 1220 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1221 | struct btrfs_shared_data_ref); |
| 1222 | if (ret == 0) { |
| 1223 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1224 | } else { |
| 1225 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1226 | num_refs += refs_to_add; |
| 1227 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1228 | } |
| 1229 | } else { |
| 1230 | struct btrfs_extent_data_ref *ref; |
| 1231 | while (ret == -EEXIST) { |
| 1232 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1233 | struct btrfs_extent_data_ref); |
| 1234 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1235 | owner, offset)) |
| 1236 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1237 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1238 | key.offset++; |
| 1239 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1240 | size); |
| 1241 | if (ret && ret != -EEXIST) |
| 1242 | goto fail; |
| 1243 | |
| 1244 | leaf = path->nodes[0]; |
| 1245 | } |
| 1246 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1247 | struct btrfs_extent_data_ref); |
| 1248 | if (ret == 0) { |
| 1249 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1250 | root_objectid); |
| 1251 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1252 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1253 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1254 | } else { |
| 1255 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1256 | num_refs += refs_to_add; |
| 1257 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1258 | } |
| 1259 | } |
| 1260 | btrfs_mark_buffer_dirty(leaf); |
| 1261 | ret = 0; |
| 1262 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1263 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1264 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1265 | } |
| 1266 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1267 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1268 | struct btrfs_root *root, |
| 1269 | struct btrfs_path *path, |
| 1270 | int refs_to_drop) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1271 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1272 | struct btrfs_key key; |
| 1273 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1274 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1275 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1276 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1277 | int ret = 0; |
| 1278 | |
| 1279 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1280 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1281 | |
| 1282 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1283 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1284 | struct btrfs_extent_data_ref); |
| 1285 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1286 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1287 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1288 | struct btrfs_shared_data_ref); |
| 1289 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1290 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1291 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1292 | struct btrfs_extent_ref_v0 *ref0; |
| 1293 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1294 | struct btrfs_extent_ref_v0); |
| 1295 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1296 | #endif |
| 1297 | } else { |
| 1298 | BUG(); |
| 1299 | } |
| 1300 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1301 | BUG_ON(num_refs < refs_to_drop); |
| 1302 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1303 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1304 | if (num_refs == 0) { |
| 1305 | ret = btrfs_del_item(trans, root, path); |
| 1306 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1307 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1308 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1309 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1310 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1311 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1312 | else { |
| 1313 | struct btrfs_extent_ref_v0 *ref0; |
| 1314 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1315 | struct btrfs_extent_ref_v0); |
| 1316 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1317 | } |
| 1318 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1319 | btrfs_mark_buffer_dirty(leaf); |
| 1320 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1321 | return ret; |
| 1322 | } |
| 1323 | |
| 1324 | static noinline u32 extent_data_ref_count(struct btrfs_root *root, |
| 1325 | struct btrfs_path *path, |
| 1326 | struct btrfs_extent_inline_ref *iref) |
| 1327 | { |
| 1328 | struct btrfs_key key; |
| 1329 | struct extent_buffer *leaf; |
| 1330 | struct btrfs_extent_data_ref *ref1; |
| 1331 | struct btrfs_shared_data_ref *ref2; |
| 1332 | u32 num_refs = 0; |
| 1333 | |
| 1334 | leaf = path->nodes[0]; |
| 1335 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1336 | if (iref) { |
| 1337 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1338 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1339 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1340 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1341 | } else { |
| 1342 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1343 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1344 | } |
| 1345 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1346 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1347 | struct btrfs_extent_data_ref); |
| 1348 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1349 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1350 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1351 | struct btrfs_shared_data_ref); |
| 1352 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1353 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1354 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1355 | struct btrfs_extent_ref_v0 *ref0; |
| 1356 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1357 | struct btrfs_extent_ref_v0); |
| 1358 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1359 | #endif |
| 1360 | } else { |
| 1361 | WARN_ON(1); |
| 1362 | } |
| 1363 | return num_refs; |
| 1364 | } |
| 1365 | |
| 1366 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1367 | struct btrfs_root *root, |
| 1368 | struct btrfs_path *path, |
| 1369 | u64 bytenr, u64 parent, |
| 1370 | u64 root_objectid) |
| 1371 | { |
| 1372 | struct btrfs_key key; |
| 1373 | int ret; |
| 1374 | |
| 1375 | key.objectid = bytenr; |
| 1376 | if (parent) { |
| 1377 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1378 | key.offset = parent; |
| 1379 | } else { |
| 1380 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1381 | key.offset = root_objectid; |
| 1382 | } |
| 1383 | |
| 1384 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1385 | if (ret > 0) |
| 1386 | ret = -ENOENT; |
| 1387 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1388 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1389 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1390 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1391 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1392 | if (ret > 0) |
| 1393 | ret = -ENOENT; |
| 1394 | } |
| 1395 | #endif |
| 1396 | return ret; |
| 1397 | } |
| 1398 | |
| 1399 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1400 | struct btrfs_root *root, |
| 1401 | struct btrfs_path *path, |
| 1402 | u64 bytenr, u64 parent, |
| 1403 | u64 root_objectid) |
| 1404 | { |
| 1405 | struct btrfs_key key; |
| 1406 | int ret; |
| 1407 | |
| 1408 | key.objectid = bytenr; |
| 1409 | if (parent) { |
| 1410 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1411 | key.offset = parent; |
| 1412 | } else { |
| 1413 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1414 | key.offset = root_objectid; |
| 1415 | } |
| 1416 | |
| 1417 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1418 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1419 | return ret; |
| 1420 | } |
| 1421 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1422 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1423 | { |
| 1424 | int type; |
| 1425 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1426 | if (parent > 0) |
| 1427 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1428 | else |
| 1429 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1430 | } else { |
| 1431 | if (parent > 0) |
| 1432 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1433 | else |
| 1434 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1435 | } |
| 1436 | return type; |
| 1437 | } |
| 1438 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1439 | static int find_next_key(struct btrfs_path *path, int level, |
| 1440 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1441 | |
| 1442 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1443 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1444 | if (!path->nodes[level]) |
| 1445 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1446 | if (path->slots[level] + 1 >= |
| 1447 | btrfs_header_nritems(path->nodes[level])) |
| 1448 | continue; |
| 1449 | if (level == 0) |
| 1450 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1451 | path->slots[level] + 1); |
| 1452 | else |
| 1453 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1454 | path->slots[level] + 1); |
| 1455 | return 0; |
| 1456 | } |
| 1457 | return 1; |
| 1458 | } |
| 1459 | |
| 1460 | /* |
| 1461 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1462 | * to the address of inline back ref, and 0 is returned. |
| 1463 | * |
| 1464 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1465 | * should be inserted, and -ENOENT is returned. |
| 1466 | * |
| 1467 | * if insert is true and there are too many inline back refs, the path |
| 1468 | * points to the extent item, and -EAGAIN is returned. |
| 1469 | * |
| 1470 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1471 | * items in the tree are ordered. |
| 1472 | */ |
| 1473 | static noinline_for_stack |
| 1474 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1475 | struct btrfs_root *root, |
| 1476 | struct btrfs_path *path, |
| 1477 | struct btrfs_extent_inline_ref **ref_ret, |
| 1478 | u64 bytenr, u64 num_bytes, |
| 1479 | u64 parent, u64 root_objectid, |
| 1480 | u64 owner, u64 offset, int insert) |
| 1481 | { |
| 1482 | struct btrfs_key key; |
| 1483 | struct extent_buffer *leaf; |
| 1484 | struct btrfs_extent_item *ei; |
| 1485 | struct btrfs_extent_inline_ref *iref; |
| 1486 | u64 flags; |
| 1487 | u64 item_size; |
| 1488 | unsigned long ptr; |
| 1489 | unsigned long end; |
| 1490 | int extra_size; |
| 1491 | int type; |
| 1492 | int want; |
| 1493 | int ret; |
| 1494 | int err = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1495 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 1496 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1497 | |
| 1498 | key.objectid = bytenr; |
| 1499 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1500 | key.offset = num_bytes; |
| 1501 | |
| 1502 | want = extent_ref_type(parent, owner); |
| 1503 | if (insert) { |
| 1504 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1505 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1506 | } else |
| 1507 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1508 | |
| 1509 | /* |
| 1510 | * Owner is our parent level, so we can just add one to get the level |
| 1511 | * for the block we are interested in. |
| 1512 | */ |
| 1513 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1514 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1515 | key.offset = owner; |
| 1516 | } |
| 1517 | |
| 1518 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1519 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1520 | if (ret < 0) { |
| 1521 | err = ret; |
| 1522 | goto out; |
| 1523 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1524 | |
| 1525 | /* |
| 1526 | * We may be a newly converted file system which still has the old fat |
| 1527 | * extent entries for metadata, so try and see if we have one of those. |
| 1528 | */ |
| 1529 | if (ret > 0 && skinny_metadata) { |
| 1530 | skinny_metadata = false; |
| 1531 | if (path->slots[0]) { |
| 1532 | path->slots[0]--; |
| 1533 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1534 | path->slots[0]); |
| 1535 | if (key.objectid == bytenr && |
| 1536 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1537 | key.offset == num_bytes) |
| 1538 | ret = 0; |
| 1539 | } |
| 1540 | if (ret) { |
| 1541 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1542 | key.offset = num_bytes; |
| 1543 | btrfs_release_path(path); |
| 1544 | goto again; |
| 1545 | } |
| 1546 | } |
| 1547 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1548 | if (ret && !insert) { |
| 1549 | err = -ENOENT; |
| 1550 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1551 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1552 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1553 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1554 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1555 | |
| 1556 | leaf = path->nodes[0]; |
| 1557 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1558 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1559 | if (item_size < sizeof(*ei)) { |
| 1560 | if (!insert) { |
| 1561 | err = -ENOENT; |
| 1562 | goto out; |
| 1563 | } |
| 1564 | ret = convert_extent_item_v0(trans, root, path, owner, |
| 1565 | extra_size); |
| 1566 | if (ret < 0) { |
| 1567 | err = ret; |
| 1568 | goto out; |
| 1569 | } |
| 1570 | leaf = path->nodes[0]; |
| 1571 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1572 | } |
| 1573 | #endif |
| 1574 | BUG_ON(item_size < sizeof(*ei)); |
| 1575 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1576 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1577 | flags = btrfs_extent_flags(leaf, ei); |
| 1578 | |
| 1579 | ptr = (unsigned long)(ei + 1); |
| 1580 | end = (unsigned long)ei + item_size; |
| 1581 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1582 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1583 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1584 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1585 | } |
| 1586 | |
| 1587 | err = -ENOENT; |
| 1588 | while (1) { |
| 1589 | if (ptr >= end) { |
| 1590 | WARN_ON(ptr > end); |
| 1591 | break; |
| 1592 | } |
| 1593 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1594 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1595 | if (want < type) |
| 1596 | break; |
| 1597 | if (want > type) { |
| 1598 | ptr += btrfs_extent_inline_ref_size(type); |
| 1599 | continue; |
| 1600 | } |
| 1601 | |
| 1602 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1603 | struct btrfs_extent_data_ref *dref; |
| 1604 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1605 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1606 | owner, offset)) { |
| 1607 | err = 0; |
| 1608 | break; |
| 1609 | } |
| 1610 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1611 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1612 | break; |
| 1613 | } else { |
| 1614 | u64 ref_offset; |
| 1615 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1616 | if (parent > 0) { |
| 1617 | if (parent == ref_offset) { |
| 1618 | err = 0; |
| 1619 | break; |
| 1620 | } |
| 1621 | if (ref_offset < parent) |
| 1622 | break; |
| 1623 | } else { |
| 1624 | if (root_objectid == ref_offset) { |
| 1625 | err = 0; |
| 1626 | break; |
| 1627 | } |
| 1628 | if (ref_offset < root_objectid) |
| 1629 | break; |
| 1630 | } |
| 1631 | } |
| 1632 | ptr += btrfs_extent_inline_ref_size(type); |
| 1633 | } |
| 1634 | if (err == -ENOENT && insert) { |
| 1635 | if (item_size + extra_size >= |
| 1636 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1637 | err = -EAGAIN; |
| 1638 | goto out; |
| 1639 | } |
| 1640 | /* |
| 1641 | * To add new inline back ref, we have to make sure |
| 1642 | * there is no corresponding back ref item. |
| 1643 | * For simplicity, we just do not add new inline back |
| 1644 | * ref if there is any kind of item for this block |
| 1645 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1646 | if (find_next_key(path, 0, &key) == 0 && |
| 1647 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1648 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1649 | err = -EAGAIN; |
| 1650 | goto out; |
| 1651 | } |
| 1652 | } |
| 1653 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1654 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1655 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1656 | path->keep_locks = 0; |
| 1657 | btrfs_unlock_up_safe(path, 1); |
| 1658 | } |
| 1659 | return err; |
| 1660 | } |
| 1661 | |
| 1662 | /* |
| 1663 | * helper to add new inline back ref |
| 1664 | */ |
| 1665 | static noinline_for_stack |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1666 | void setup_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1667 | struct btrfs_path *path, |
| 1668 | struct btrfs_extent_inline_ref *iref, |
| 1669 | u64 parent, u64 root_objectid, |
| 1670 | u64 owner, u64 offset, int refs_to_add, |
| 1671 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1672 | { |
| 1673 | struct extent_buffer *leaf; |
| 1674 | struct btrfs_extent_item *ei; |
| 1675 | unsigned long ptr; |
| 1676 | unsigned long end; |
| 1677 | unsigned long item_offset; |
| 1678 | u64 refs; |
| 1679 | int size; |
| 1680 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1681 | |
| 1682 | leaf = path->nodes[0]; |
| 1683 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1684 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1685 | |
| 1686 | type = extent_ref_type(parent, owner); |
| 1687 | size = btrfs_extent_inline_ref_size(type); |
| 1688 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1689 | btrfs_extend_item(root, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1690 | |
| 1691 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1692 | refs = btrfs_extent_refs(leaf, ei); |
| 1693 | refs += refs_to_add; |
| 1694 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1695 | if (extent_op) |
| 1696 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1697 | |
| 1698 | ptr = (unsigned long)ei + item_offset; |
| 1699 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1700 | if (ptr < end - size) |
| 1701 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1702 | end - size - ptr); |
| 1703 | |
| 1704 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1705 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1706 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1707 | struct btrfs_extent_data_ref *dref; |
| 1708 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1709 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1710 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1711 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1712 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1713 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1714 | struct btrfs_shared_data_ref *sref; |
| 1715 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1716 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1717 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1718 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1719 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1720 | } else { |
| 1721 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1722 | } |
| 1723 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1724 | } |
| 1725 | |
| 1726 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
| 1727 | struct btrfs_root *root, |
| 1728 | struct btrfs_path *path, |
| 1729 | struct btrfs_extent_inline_ref **ref_ret, |
| 1730 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1731 | u64 root_objectid, u64 owner, u64 offset) |
| 1732 | { |
| 1733 | int ret; |
| 1734 | |
| 1735 | ret = lookup_inline_extent_backref(trans, root, path, ref_ret, |
| 1736 | bytenr, num_bytes, parent, |
| 1737 | root_objectid, owner, offset, 0); |
| 1738 | if (ret != -ENOENT) |
| 1739 | return ret; |
| 1740 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1741 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1742 | *ref_ret = NULL; |
| 1743 | |
| 1744 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1745 | ret = lookup_tree_block_ref(trans, root, path, bytenr, parent, |
| 1746 | root_objectid); |
| 1747 | } else { |
| 1748 | ret = lookup_extent_data_ref(trans, root, path, bytenr, parent, |
| 1749 | root_objectid, owner, offset); |
| 1750 | } |
| 1751 | return ret; |
| 1752 | } |
| 1753 | |
| 1754 | /* |
| 1755 | * helper to update/remove inline back ref |
| 1756 | */ |
| 1757 | static noinline_for_stack |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1758 | void update_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1759 | struct btrfs_path *path, |
| 1760 | struct btrfs_extent_inline_ref *iref, |
| 1761 | int refs_to_mod, |
| 1762 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1763 | { |
| 1764 | struct extent_buffer *leaf; |
| 1765 | struct btrfs_extent_item *ei; |
| 1766 | struct btrfs_extent_data_ref *dref = NULL; |
| 1767 | struct btrfs_shared_data_ref *sref = NULL; |
| 1768 | unsigned long ptr; |
| 1769 | unsigned long end; |
| 1770 | u32 item_size; |
| 1771 | int size; |
| 1772 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1773 | u64 refs; |
| 1774 | |
| 1775 | leaf = path->nodes[0]; |
| 1776 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1777 | refs = btrfs_extent_refs(leaf, ei); |
| 1778 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1779 | refs += refs_to_mod; |
| 1780 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1781 | if (extent_op) |
| 1782 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1783 | |
| 1784 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1785 | |
| 1786 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1787 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1788 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1789 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1790 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1791 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1792 | } else { |
| 1793 | refs = 1; |
| 1794 | BUG_ON(refs_to_mod != -1); |
| 1795 | } |
| 1796 | |
| 1797 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1798 | refs += refs_to_mod; |
| 1799 | |
| 1800 | if (refs > 0) { |
| 1801 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1802 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1803 | else |
| 1804 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1805 | } else { |
| 1806 | size = btrfs_extent_inline_ref_size(type); |
| 1807 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1808 | ptr = (unsigned long)iref; |
| 1809 | end = (unsigned long)ei + item_size; |
| 1810 | if (ptr + size < end) |
| 1811 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1812 | end - ptr - size); |
| 1813 | item_size -= size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1814 | btrfs_truncate_item(root, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1815 | } |
| 1816 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1817 | } |
| 1818 | |
| 1819 | static noinline_for_stack |
| 1820 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1821 | struct btrfs_root *root, |
| 1822 | struct btrfs_path *path, |
| 1823 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1824 | u64 root_objectid, u64 owner, |
| 1825 | u64 offset, int refs_to_add, |
| 1826 | struct btrfs_delayed_extent_op *extent_op) |
| 1827 | { |
| 1828 | struct btrfs_extent_inline_ref *iref; |
| 1829 | int ret; |
| 1830 | |
| 1831 | ret = lookup_inline_extent_backref(trans, root, path, &iref, |
| 1832 | bytenr, num_bytes, parent, |
| 1833 | root_objectid, owner, offset, 1); |
| 1834 | if (ret == 0) { |
| 1835 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1836 | update_inline_extent_backref(root, path, iref, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1837 | refs_to_add, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1838 | } else if (ret == -ENOENT) { |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1839 | setup_inline_extent_backref(root, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1840 | root_objectid, owner, offset, |
| 1841 | refs_to_add, extent_op); |
| 1842 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1843 | } |
| 1844 | return ret; |
| 1845 | } |
| 1846 | |
| 1847 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
| 1848 | struct btrfs_root *root, |
| 1849 | struct btrfs_path *path, |
| 1850 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1851 | u64 owner, u64 offset, int refs_to_add) |
| 1852 | { |
| 1853 | int ret; |
| 1854 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1855 | BUG_ON(refs_to_add != 1); |
| 1856 | ret = insert_tree_block_ref(trans, root, path, bytenr, |
| 1857 | parent, root_objectid); |
| 1858 | } else { |
| 1859 | ret = insert_extent_data_ref(trans, root, path, bytenr, |
| 1860 | parent, root_objectid, |
| 1861 | owner, offset, refs_to_add); |
| 1862 | } |
| 1863 | return ret; |
| 1864 | } |
| 1865 | |
| 1866 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
| 1867 | struct btrfs_root *root, |
| 1868 | struct btrfs_path *path, |
| 1869 | struct btrfs_extent_inline_ref *iref, |
| 1870 | int refs_to_drop, int is_data) |
| 1871 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1872 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1873 | |
| 1874 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1875 | if (iref) { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1876 | update_inline_extent_backref(root, path, iref, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1877 | -refs_to_drop, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1878 | } else if (is_data) { |
| 1879 | ret = remove_extent_data_ref(trans, root, path, refs_to_drop); |
| 1880 | } else { |
| 1881 | ret = btrfs_del_item(trans, root, path); |
| 1882 | } |
| 1883 | return ret; |
| 1884 | } |
| 1885 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1886 | static int btrfs_issue_discard(struct block_device *bdev, |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1887 | u64 start, u64 len) |
| 1888 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1889 | return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0); |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1890 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1891 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1892 | static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1893 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1894 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1895 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1896 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1897 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1898 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 1899 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1900 | /* Tell the block device(s) that the sectors can be discarded */ |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 1901 | ret = btrfs_map_block(root->fs_info, REQ_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1902 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1903 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1904 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1905 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1906 | int i; |
| 1907 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1908 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1909 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1910 | if (!stripe->dev->can_discard) |
| 1911 | continue; |
| 1912 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1913 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 1914 | stripe->physical, |
| 1915 | stripe->length); |
| 1916 | if (!ret) |
| 1917 | discarded_bytes += stripe->length; |
| 1918 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1919 | 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] | 1920 | |
| 1921 | /* |
| 1922 | * Just in case we get back EOPNOTSUPP for some reason, |
| 1923 | * just ignore the return value so we don't screw up |
| 1924 | * people calling discard_extent. |
| 1925 | */ |
| 1926 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1927 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1928 | kfree(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1929 | } |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1930 | |
| 1931 | if (actual_bytes) |
| 1932 | *actual_bytes = discarded_bytes; |
| 1933 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1934 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1935 | if (ret == -EOPNOTSUPP) |
| 1936 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1937 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1938 | } |
| 1939 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1940 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1941 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 1942 | struct btrfs_root *root, |
| 1943 | u64 bytenr, u64 num_bytes, u64 parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1944 | u64 root_objectid, u64 owner, u64 offset, int for_cow) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1945 | { |
| 1946 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1947 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1948 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1949 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 1950 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1951 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1952 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1953 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 1954 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1955 | parent, root_objectid, (int)owner, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1956 | BTRFS_ADD_DELAYED_REF, NULL, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1957 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1958 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 1959 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1960 | parent, root_objectid, owner, offset, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1961 | BTRFS_ADD_DELAYED_REF, NULL, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1962 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1963 | return ret; |
| 1964 | } |
| 1965 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1966 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1967 | struct btrfs_root *root, |
| 1968 | u64 bytenr, u64 num_bytes, |
| 1969 | u64 parent, u64 root_objectid, |
| 1970 | u64 owner, u64 offset, int refs_to_add, |
| 1971 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1972 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1973 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1974 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1975 | struct btrfs_extent_item *item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1976 | u64 refs; |
| 1977 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 1978 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1979 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1980 | if (!path) |
| 1981 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 1982 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 1983 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1984 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1985 | /* this will setup the path even if it fails to insert the back ref */ |
| 1986 | ret = insert_inline_extent_backref(trans, root->fs_info->extent_root, |
| 1987 | path, bytenr, num_bytes, parent, |
| 1988 | root_objectid, owner, offset, |
| 1989 | refs_to_add, extent_op); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 1990 | if (ret != -EAGAIN) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1991 | goto out; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1992 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1993 | leaf = path->nodes[0]; |
| 1994 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1995 | refs = btrfs_extent_refs(leaf, item); |
| 1996 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 1997 | if (extent_op) |
| 1998 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1999 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2000 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2001 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2002 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2003 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2004 | path->leave_spinning = 1; |
| 2005 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2006 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2007 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2008 | path, bytenr, parent, root_objectid, |
| 2009 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2010 | if (ret) |
| 2011 | btrfs_abort_transaction(trans, root, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2012 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2013 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2014 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2015 | } |
| 2016 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2017 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2018 | struct btrfs_root *root, |
| 2019 | struct btrfs_delayed_ref_node *node, |
| 2020 | struct btrfs_delayed_extent_op *extent_op, |
| 2021 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2022 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2023 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2024 | struct btrfs_delayed_data_ref *ref; |
| 2025 | struct btrfs_key ins; |
| 2026 | u64 parent = 0; |
| 2027 | u64 ref_root = 0; |
| 2028 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2029 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2030 | ins.objectid = node->bytenr; |
| 2031 | ins.offset = node->num_bytes; |
| 2032 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2033 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2034 | ref = btrfs_delayed_node_to_data_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2035 | trace_run_delayed_data_ref(node, ref, node->action); |
| 2036 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2037 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2038 | parent = ref->parent; |
| 2039 | else |
| 2040 | ref_root = ref->root; |
| 2041 | |
| 2042 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2043 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2044 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2045 | ret = alloc_reserved_file_extent(trans, root, |
| 2046 | parent, ref_root, flags, |
| 2047 | ref->objectid, ref->offset, |
| 2048 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2049 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2050 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2051 | node->num_bytes, parent, |
| 2052 | ref_root, ref->objectid, |
| 2053 | ref->offset, node->ref_mod, |
| 2054 | extent_op); |
| 2055 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2056 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2057 | node->num_bytes, parent, |
| 2058 | ref_root, ref->objectid, |
| 2059 | ref->offset, node->ref_mod, |
| 2060 | extent_op); |
| 2061 | } else { |
| 2062 | BUG(); |
| 2063 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2064 | return ret; |
| 2065 | } |
| 2066 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2067 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2068 | struct extent_buffer *leaf, |
| 2069 | struct btrfs_extent_item *ei) |
| 2070 | { |
| 2071 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2072 | if (extent_op->update_flags) { |
| 2073 | flags |= extent_op->flags_to_set; |
| 2074 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2075 | } |
| 2076 | |
| 2077 | if (extent_op->update_key) { |
| 2078 | struct btrfs_tree_block_info *bi; |
| 2079 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2080 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2081 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2082 | } |
| 2083 | } |
| 2084 | |
| 2085 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2086 | struct btrfs_root *root, |
| 2087 | struct btrfs_delayed_ref_node *node, |
| 2088 | struct btrfs_delayed_extent_op *extent_op) |
| 2089 | { |
| 2090 | struct btrfs_key key; |
| 2091 | struct btrfs_path *path; |
| 2092 | struct btrfs_extent_item *ei; |
| 2093 | struct extent_buffer *leaf; |
| 2094 | u32 item_size; |
| 2095 | int ret; |
| 2096 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2097 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2098 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2099 | if (trans->aborted) |
| 2100 | return 0; |
| 2101 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2102 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2103 | metadata = 0; |
| 2104 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2105 | path = btrfs_alloc_path(); |
| 2106 | if (!path) |
| 2107 | return -ENOMEM; |
| 2108 | |
| 2109 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2110 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2111 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2112 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2113 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2114 | } else { |
| 2115 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2116 | key.offset = node->num_bytes; |
| 2117 | } |
| 2118 | |
| 2119 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2120 | path->reada = 1; |
| 2121 | path->leave_spinning = 1; |
| 2122 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2123 | path, 0, 1); |
| 2124 | if (ret < 0) { |
| 2125 | err = ret; |
| 2126 | goto out; |
| 2127 | } |
| 2128 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2129 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2130 | if (path->slots[0] > 0) { |
| 2131 | path->slots[0]--; |
| 2132 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2133 | path->slots[0]); |
| 2134 | if (key.objectid == node->bytenr && |
| 2135 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2136 | key.offset == node->num_bytes) |
| 2137 | ret = 0; |
| 2138 | } |
| 2139 | if (ret > 0) { |
| 2140 | btrfs_release_path(path); |
| 2141 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2142 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2143 | key.objectid = node->bytenr; |
| 2144 | key.offset = node->num_bytes; |
| 2145 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2146 | goto again; |
| 2147 | } |
| 2148 | } else { |
| 2149 | err = -EIO; |
| 2150 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2151 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2152 | } |
| 2153 | |
| 2154 | leaf = path->nodes[0]; |
| 2155 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2156 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2157 | if (item_size < sizeof(*ei)) { |
| 2158 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2159 | path, (u64)-1, 0); |
| 2160 | if (ret < 0) { |
| 2161 | err = ret; |
| 2162 | goto out; |
| 2163 | } |
| 2164 | leaf = path->nodes[0]; |
| 2165 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2166 | } |
| 2167 | #endif |
| 2168 | BUG_ON(item_size < sizeof(*ei)); |
| 2169 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2170 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2171 | |
| 2172 | btrfs_mark_buffer_dirty(leaf); |
| 2173 | out: |
| 2174 | btrfs_free_path(path); |
| 2175 | return err; |
| 2176 | } |
| 2177 | |
| 2178 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2179 | struct btrfs_root *root, |
| 2180 | struct btrfs_delayed_ref_node *node, |
| 2181 | struct btrfs_delayed_extent_op *extent_op, |
| 2182 | int insert_reserved) |
| 2183 | { |
| 2184 | int ret = 0; |
| 2185 | struct btrfs_delayed_tree_ref *ref; |
| 2186 | struct btrfs_key ins; |
| 2187 | u64 parent = 0; |
| 2188 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2189 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2190 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2191 | |
| 2192 | ref = btrfs_delayed_node_to_tree_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2193 | trace_run_delayed_tree_ref(node, ref, node->action); |
| 2194 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2195 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2196 | parent = ref->parent; |
| 2197 | else |
| 2198 | ref_root = ref->root; |
| 2199 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2200 | ins.objectid = node->bytenr; |
| 2201 | if (skinny_metadata) { |
| 2202 | ins.offset = ref->level; |
| 2203 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2204 | } else { |
| 2205 | ins.offset = node->num_bytes; |
| 2206 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2207 | } |
| 2208 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2209 | BUG_ON(node->ref_mod != 1); |
| 2210 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2211 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2212 | ret = alloc_reserved_tree_block(trans, root, |
| 2213 | parent, ref_root, |
| 2214 | extent_op->flags_to_set, |
| 2215 | &extent_op->key, |
| 2216 | ref->level, &ins); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2217 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2218 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2219 | node->num_bytes, parent, ref_root, |
| 2220 | ref->level, 0, 1, extent_op); |
| 2221 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2222 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2223 | node->num_bytes, parent, ref_root, |
| 2224 | ref->level, 0, 1, extent_op); |
| 2225 | } else { |
| 2226 | BUG(); |
| 2227 | } |
| 2228 | return ret; |
| 2229 | } |
| 2230 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2231 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2232 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2233 | struct btrfs_root *root, |
| 2234 | struct btrfs_delayed_ref_node *node, |
| 2235 | struct btrfs_delayed_extent_op *extent_op, |
| 2236 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2237 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2238 | int ret = 0; |
| 2239 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2240 | if (trans->aborted) { |
| 2241 | if (insert_reserved) |
| 2242 | btrfs_pin_extent(root, node->bytenr, |
| 2243 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2244 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2245 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2246 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2247 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2248 | struct btrfs_delayed_ref_head *head; |
| 2249 | /* |
| 2250 | * we've hit the end of the chain and we were supposed |
| 2251 | * to insert this extent into the tree. But, it got |
| 2252 | * deleted before we ever needed to insert it, so all |
| 2253 | * we have to do is clean up the accounting |
| 2254 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2255 | BUG_ON(extent_op); |
| 2256 | head = btrfs_delayed_node_to_head(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2257 | trace_run_delayed_ref_head(node, head, node->action); |
| 2258 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2259 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2260 | btrfs_pin_extent(root, node->bytenr, |
| 2261 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2262 | if (head->is_data) { |
| 2263 | ret = btrfs_del_csums(trans, root, |
| 2264 | node->bytenr, |
| 2265 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2266 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2267 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2268 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2269 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2270 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2271 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2272 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2273 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2274 | insert_reserved); |
| 2275 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2276 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2277 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2278 | insert_reserved); |
| 2279 | else |
| 2280 | BUG(); |
| 2281 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2282 | } |
| 2283 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2284 | static noinline struct btrfs_delayed_ref_node * |
| 2285 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2286 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2287 | struct rb_node *node; |
| 2288 | struct btrfs_delayed_ref_node *ref; |
| 2289 | int action = BTRFS_ADD_DELAYED_REF; |
| 2290 | again: |
| 2291 | /* |
| 2292 | * select delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2293 | * this prevents ref count from going down to zero when |
| 2294 | * there still are pending delayed ref. |
| 2295 | */ |
| 2296 | node = rb_prev(&head->node.rb_node); |
| 2297 | while (1) { |
| 2298 | if (!node) |
| 2299 | break; |
| 2300 | ref = rb_entry(node, struct btrfs_delayed_ref_node, |
| 2301 | rb_node); |
| 2302 | if (ref->bytenr != head->node.bytenr) |
| 2303 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2304 | if (ref->action == action) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2305 | return ref; |
| 2306 | node = rb_prev(node); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2307 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2308 | if (action == BTRFS_ADD_DELAYED_REF) { |
| 2309 | action = BTRFS_DROP_DELAYED_REF; |
| 2310 | goto again; |
| 2311 | } |
| 2312 | return NULL; |
| 2313 | } |
| 2314 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2315 | /* |
| 2316 | * Returns 0 on success or if called with an already aborted transaction. |
| 2317 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2318 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2319 | static noinline int run_clustered_refs(struct btrfs_trans_handle *trans, |
| 2320 | struct btrfs_root *root, |
| 2321 | struct list_head *cluster) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2322 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2323 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2324 | struct btrfs_delayed_ref_node *ref; |
| 2325 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2326 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2327 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2328 | int ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2329 | int count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2330 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2331 | |
| 2332 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2333 | while (1) { |
| 2334 | if (!locked_ref) { |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2335 | /* pick a new head ref from the cluster list */ |
| 2336 | if (list_empty(cluster)) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2337 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2338 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2339 | locked_ref = list_entry(cluster->next, |
| 2340 | struct btrfs_delayed_ref_head, cluster); |
| 2341 | |
| 2342 | /* grab the lock that says we are going to process |
| 2343 | * all the refs for this head */ |
| 2344 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
| 2345 | |
| 2346 | /* |
| 2347 | * we may have dropped the spin lock to get the head |
| 2348 | * mutex lock, and that might have given someone else |
| 2349 | * time to free the head. If that's true, it has been |
| 2350 | * removed from our list and we can move on. |
| 2351 | */ |
| 2352 | if (ret == -EAGAIN) { |
| 2353 | locked_ref = NULL; |
| 2354 | count++; |
| 2355 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2356 | } |
| 2357 | } |
| 2358 | |
| 2359 | /* |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2360 | * We need to try and merge add/drops of the same ref since we |
| 2361 | * can run into issues with relocate dropping the implicit ref |
| 2362 | * and then it being added back again before the drop can |
| 2363 | * finish. If we merged anything we need to re-loop so we can |
| 2364 | * get a good ref. |
| 2365 | */ |
| 2366 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2367 | locked_ref); |
| 2368 | |
| 2369 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2370 | * locked_ref is the head node, so we have to go one |
| 2371 | * node back for any delayed ref updates |
| 2372 | */ |
| 2373 | ref = select_delayed_ref(locked_ref); |
| 2374 | |
| 2375 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2376 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2377 | /* |
| 2378 | * there are still refs with lower seq numbers in the |
| 2379 | * process of being added. Don't run this ref yet. |
| 2380 | */ |
| 2381 | list_del_init(&locked_ref->cluster); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2382 | btrfs_delayed_ref_unlock(locked_ref); |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2383 | locked_ref = NULL; |
| 2384 | delayed_refs->num_heads_ready++; |
| 2385 | spin_unlock(&delayed_refs->lock); |
| 2386 | cond_resched(); |
| 2387 | spin_lock(&delayed_refs->lock); |
| 2388 | continue; |
| 2389 | } |
| 2390 | |
| 2391 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2392 | * record the must insert reserved flag before we |
| 2393 | * drop the spin lock. |
| 2394 | */ |
| 2395 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2396 | locked_ref->must_insert_reserved = 0; |
| 2397 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2398 | extent_op = locked_ref->extent_op; |
| 2399 | locked_ref->extent_op = NULL; |
| 2400 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2401 | if (!ref) { |
| 2402 | /* All delayed refs have been processed, Go ahead |
| 2403 | * and send the head node to run_one_delayed_ref, |
| 2404 | * so that any accounting fixes can happen |
| 2405 | */ |
| 2406 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2407 | |
| 2408 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2409 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2410 | extent_op = NULL; |
| 2411 | } |
| 2412 | |
| 2413 | if (extent_op) { |
| 2414 | spin_unlock(&delayed_refs->lock); |
| 2415 | |
| 2416 | ret = run_delayed_extent_op(trans, root, |
| 2417 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2418 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2419 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2420 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2421 | /* |
| 2422 | * Need to reset must_insert_reserved if |
| 2423 | * there was an error so the abort stuff |
| 2424 | * can cleanup the reserved space |
| 2425 | * properly. |
| 2426 | */ |
| 2427 | if (must_insert_reserved) |
| 2428 | locked_ref->must_insert_reserved = 1; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2429 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
Dan Carpenter | 253beeb | 2012-04-18 09:59:03 +0300 | [diff] [blame] | 2430 | spin_lock(&delayed_refs->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2431 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2432 | return ret; |
| 2433 | } |
| 2434 | |
Chris Mason | 203bf28 | 2012-01-06 15:23:57 -0500 | [diff] [blame] | 2435 | goto next; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2436 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2437 | } |
| 2438 | |
| 2439 | ref->in_tree = 0; |
| 2440 | rb_erase(&ref->rb_node, &delayed_refs->root); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame^] | 2441 | if (btrfs_delayed_ref_is_head(ref)) { |
| 2442 | rb_erase(&locked_ref->href_node, |
| 2443 | &delayed_refs->href_root); |
| 2444 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2445 | delayed_refs->num_entries--; |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2446 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2447 | /* |
| 2448 | * when we play the delayed ref, also correct the |
| 2449 | * ref_mod on head |
| 2450 | */ |
| 2451 | switch (ref->action) { |
| 2452 | case BTRFS_ADD_DELAYED_REF: |
| 2453 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2454 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2455 | break; |
| 2456 | case BTRFS_DROP_DELAYED_REF: |
| 2457 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2458 | break; |
| 2459 | default: |
| 2460 | WARN_ON(1); |
| 2461 | } |
Josef Bacik | b8d0c69 | 2013-08-22 17:03:29 -0400 | [diff] [blame] | 2462 | } else { |
| 2463 | list_del_init(&locked_ref->cluster); |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2464 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2465 | spin_unlock(&delayed_refs->lock); |
| 2466 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2467 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2468 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2469 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2470 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2471 | if (ret) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2472 | btrfs_delayed_ref_unlock(locked_ref); |
| 2473 | btrfs_put_delayed_ref(ref); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2474 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret); |
Dan Carpenter | 253beeb | 2012-04-18 09:59:03 +0300 | [diff] [blame] | 2475 | spin_lock(&delayed_refs->lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2476 | return ret; |
| 2477 | } |
| 2478 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2479 | /* |
| 2480 | * If this node is a head, that means all the refs in this head |
| 2481 | * have been dealt with, and we will pick the next head to deal |
| 2482 | * with, so we must unlock the head and drop it from the cluster |
| 2483 | * list before we release it. |
| 2484 | */ |
| 2485 | if (btrfs_delayed_ref_is_head(ref)) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2486 | btrfs_delayed_ref_unlock(locked_ref); |
| 2487 | locked_ref = NULL; |
| 2488 | } |
| 2489 | btrfs_put_delayed_ref(ref); |
| 2490 | count++; |
Chris Mason | 203bf28 | 2012-01-06 15:23:57 -0500 | [diff] [blame] | 2491 | next: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2492 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2493 | spin_lock(&delayed_refs->lock); |
| 2494 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2495 | return count; |
| 2496 | } |
| 2497 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2498 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2499 | /* |
| 2500 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2501 | * correlates in most cases to the order added. To expose dependencies on this |
| 2502 | * order, we start to process the tree in the middle instead of the beginning |
| 2503 | */ |
| 2504 | static u64 find_middle(struct rb_root *root) |
| 2505 | { |
| 2506 | struct rb_node *n = root->rb_node; |
| 2507 | struct btrfs_delayed_ref_node *entry; |
| 2508 | int alt = 1; |
| 2509 | u64 middle; |
| 2510 | u64 first = 0, last = 0; |
| 2511 | |
| 2512 | n = rb_first(root); |
| 2513 | if (n) { |
| 2514 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2515 | first = entry->bytenr; |
| 2516 | } |
| 2517 | n = rb_last(root); |
| 2518 | if (n) { |
| 2519 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2520 | last = entry->bytenr; |
| 2521 | } |
| 2522 | n = root->rb_node; |
| 2523 | |
| 2524 | while (n) { |
| 2525 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2526 | WARN_ON(!entry->in_tree); |
| 2527 | |
| 2528 | middle = entry->bytenr; |
| 2529 | |
| 2530 | if (alt) |
| 2531 | n = n->rb_left; |
| 2532 | else |
| 2533 | n = n->rb_right; |
| 2534 | |
| 2535 | alt = 1 - alt; |
| 2536 | } |
| 2537 | return middle; |
| 2538 | } |
| 2539 | #endif |
| 2540 | |
Arne Jansen | bed92ea | 2012-06-28 18:03:02 +0200 | [diff] [blame] | 2541 | int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans, |
| 2542 | struct btrfs_fs_info *fs_info) |
| 2543 | { |
| 2544 | struct qgroup_update *qgroup_update; |
| 2545 | int ret = 0; |
| 2546 | |
| 2547 | if (list_empty(&trans->qgroup_ref_list) != |
| 2548 | !trans->delayed_ref_elem.seq) { |
| 2549 | /* list without seq or seq without list */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2550 | btrfs_err(fs_info, |
Jan Schmidt | fc36ed7e | 2013-04-24 16:57:33 +0000 | [diff] [blame] | 2551 | "qgroup accounting update error, list is%s empty, seq is %#x.%x", |
Arne Jansen | bed92ea | 2012-06-28 18:03:02 +0200 | [diff] [blame] | 2552 | list_empty(&trans->qgroup_ref_list) ? "" : " not", |
Jan Schmidt | fc36ed7e | 2013-04-24 16:57:33 +0000 | [diff] [blame] | 2553 | (u32)(trans->delayed_ref_elem.seq >> 32), |
| 2554 | (u32)trans->delayed_ref_elem.seq); |
Arne Jansen | bed92ea | 2012-06-28 18:03:02 +0200 | [diff] [blame] | 2555 | BUG(); |
| 2556 | } |
| 2557 | |
| 2558 | if (!trans->delayed_ref_elem.seq) |
| 2559 | return 0; |
| 2560 | |
| 2561 | while (!list_empty(&trans->qgroup_ref_list)) { |
| 2562 | qgroup_update = list_first_entry(&trans->qgroup_ref_list, |
| 2563 | struct qgroup_update, list); |
| 2564 | list_del(&qgroup_update->list); |
| 2565 | if (!ret) |
| 2566 | ret = btrfs_qgroup_account_ref( |
| 2567 | trans, fs_info, qgroup_update->node, |
| 2568 | qgroup_update->extent_op); |
| 2569 | kfree(qgroup_update); |
| 2570 | } |
| 2571 | |
| 2572 | btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem); |
| 2573 | |
| 2574 | return ret; |
| 2575 | } |
| 2576 | |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2577 | static int refs_newer(struct btrfs_delayed_ref_root *delayed_refs, int seq, |
| 2578 | int count) |
| 2579 | { |
| 2580 | int val = atomic_read(&delayed_refs->ref_seq); |
| 2581 | |
| 2582 | if (val < seq || val >= seq + count) |
| 2583 | return 1; |
| 2584 | return 0; |
| 2585 | } |
| 2586 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2587 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2588 | { |
| 2589 | u64 num_bytes; |
| 2590 | |
| 2591 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2592 | sizeof(struct btrfs_extent_inline_ref)); |
| 2593 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2594 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2595 | |
| 2596 | /* |
| 2597 | * We don't ever fill up leaves all the way so multiply by 2 just to be |
| 2598 | * closer to what we're really going to want to ouse. |
| 2599 | */ |
| 2600 | return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root)); |
| 2601 | } |
| 2602 | |
| 2603 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2604 | struct btrfs_root *root) |
| 2605 | { |
| 2606 | struct btrfs_block_rsv *global_rsv; |
| 2607 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
| 2608 | u64 num_bytes; |
| 2609 | int ret = 0; |
| 2610 | |
| 2611 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 2612 | num_heads = heads_to_leaves(root, num_heads); |
| 2613 | if (num_heads > 1) |
| 2614 | num_bytes += (num_heads - 1) * root->leafsize; |
| 2615 | num_bytes <<= 1; |
| 2616 | global_rsv = &root->fs_info->global_block_rsv; |
| 2617 | |
| 2618 | /* |
| 2619 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2620 | * wiggle room since running delayed refs can create more delayed refs. |
| 2621 | */ |
| 2622 | if (global_rsv->space_info->full) |
| 2623 | num_bytes <<= 1; |
| 2624 | |
| 2625 | spin_lock(&global_rsv->lock); |
| 2626 | if (global_rsv->reserved <= num_bytes) |
| 2627 | ret = 1; |
| 2628 | spin_unlock(&global_rsv->lock); |
| 2629 | return ret; |
| 2630 | } |
| 2631 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2632 | /* |
| 2633 | * this starts processing the delayed reference count updates and |
| 2634 | * extent insertions we have queued up so far. count can be |
| 2635 | * 0, which means to process everything in the tree at the start |
| 2636 | * of the run (but not newly added entries), or it can be some target |
| 2637 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2638 | * |
| 2639 | * Returns 0 on success or if called with an aborted transaction |
| 2640 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2641 | */ |
| 2642 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2643 | struct btrfs_root *root, unsigned long count) |
| 2644 | { |
| 2645 | struct rb_node *node; |
| 2646 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame^] | 2647 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2648 | struct list_head cluster; |
| 2649 | int ret; |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2650 | u64 delayed_start; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2651 | int run_all = count == (unsigned long)-1; |
| 2652 | int run_most = 0; |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2653 | int loops; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2654 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2655 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2656 | if (trans->aborted) |
| 2657 | return 0; |
| 2658 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2659 | if (root == root->fs_info->extent_root) |
| 2660 | root = root->fs_info->tree_root; |
| 2661 | |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2662 | btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info); |
| 2663 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2664 | delayed_refs = &trans->transaction->delayed_refs; |
| 2665 | INIT_LIST_HEAD(&cluster); |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2666 | if (count == 0) { |
| 2667 | count = delayed_refs->num_entries * 2; |
| 2668 | run_most = 1; |
| 2669 | } |
| 2670 | |
| 2671 | if (!run_all && !run_most) { |
| 2672 | int old; |
| 2673 | int seq = atomic_read(&delayed_refs->ref_seq); |
| 2674 | |
| 2675 | progress: |
| 2676 | old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1); |
| 2677 | if (old) { |
| 2678 | DEFINE_WAIT(__wait); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2679 | if (delayed_refs->flushing || |
| 2680 | !btrfs_should_throttle_delayed_refs(trans, root)) |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2681 | return 0; |
| 2682 | |
| 2683 | prepare_to_wait(&delayed_refs->wait, &__wait, |
| 2684 | TASK_UNINTERRUPTIBLE); |
| 2685 | |
| 2686 | old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1); |
| 2687 | if (old) { |
| 2688 | schedule(); |
| 2689 | finish_wait(&delayed_refs->wait, &__wait); |
| 2690 | |
| 2691 | if (!refs_newer(delayed_refs, seq, 256)) |
| 2692 | goto progress; |
| 2693 | else |
| 2694 | return 0; |
| 2695 | } else { |
| 2696 | finish_wait(&delayed_refs->wait, &__wait); |
| 2697 | goto again; |
| 2698 | } |
| 2699 | } |
| 2700 | |
| 2701 | } else { |
| 2702 | atomic_inc(&delayed_refs->procs_running_refs); |
| 2703 | } |
| 2704 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2705 | again: |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2706 | loops = 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2707 | spin_lock(&delayed_refs->lock); |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2708 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2709 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2710 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2711 | #endif |
| 2712 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2713 | while (1) { |
| 2714 | if (!(run_all || run_most) && |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2715 | !btrfs_should_throttle_delayed_refs(trans, root)) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2716 | break; |
| 2717 | |
| 2718 | /* |
| 2719 | * go find something we can process in the rbtree. We start at |
| 2720 | * the beginning of the tree, and then build a cluster |
| 2721 | * of refs to process starting at the first one we are able to |
| 2722 | * lock |
| 2723 | */ |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2724 | delayed_start = delayed_refs->run_delayed_start; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2725 | ret = btrfs_find_ref_cluster(trans, &cluster, |
| 2726 | delayed_refs->run_delayed_start); |
| 2727 | if (ret) |
| 2728 | break; |
| 2729 | |
| 2730 | ret = run_clustered_refs(trans, root, &cluster); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2731 | if (ret < 0) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2732 | btrfs_release_ref_cluster(&cluster); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2733 | spin_unlock(&delayed_refs->lock); |
| 2734 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2735 | atomic_dec(&delayed_refs->procs_running_refs); |
Josef Bacik | f971fe2 | 2013-06-10 11:52:32 -0400 | [diff] [blame] | 2736 | wake_up(&delayed_refs->wait); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2737 | return ret; |
| 2738 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2739 | |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2740 | atomic_add(ret, &delayed_refs->ref_seq); |
| 2741 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2742 | count -= min_t(unsigned long, ret, count); |
| 2743 | |
| 2744 | if (count == 0) |
| 2745 | break; |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2746 | |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2747 | if (delayed_start >= delayed_refs->run_delayed_start) { |
| 2748 | if (loops == 0) { |
| 2749 | /* |
| 2750 | * btrfs_find_ref_cluster looped. let's do one |
| 2751 | * more cycle. if we don't run any delayed ref |
| 2752 | * during that cycle (because we can't because |
| 2753 | * all of them are blocked), bail out. |
| 2754 | */ |
| 2755 | loops = 1; |
| 2756 | } else { |
| 2757 | /* |
| 2758 | * no runnable refs left, stop trying |
| 2759 | */ |
| 2760 | BUG_ON(run_all); |
| 2761 | break; |
| 2762 | } |
| 2763 | } |
| 2764 | if (ret) { |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2765 | /* refs were run, let's reset staleness detection */ |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2766 | loops = 0; |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2767 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2768 | } |
| 2769 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2770 | if (run_all) { |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2771 | if (!list_empty(&trans->new_bgs)) { |
| 2772 | spin_unlock(&delayed_refs->lock); |
| 2773 | btrfs_create_pending_block_groups(trans, root); |
| 2774 | spin_lock(&delayed_refs->lock); |
| 2775 | } |
| 2776 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame^] | 2777 | node = rb_first(&delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2778 | if (!node) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2779 | goto out; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2780 | count = (unsigned long)-1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2781 | |
| 2782 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame^] | 2783 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2784 | href_node); |
| 2785 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2786 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2787 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame^] | 2788 | ref = &head->node; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2789 | atomic_inc(&ref->refs); |
| 2790 | |
| 2791 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2792 | /* |
| 2793 | * Mutex was contended, block until it's |
| 2794 | * released and try again |
| 2795 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2796 | mutex_lock(&head->mutex); |
| 2797 | mutex_unlock(&head->mutex); |
| 2798 | |
| 2799 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2800 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2801 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame^] | 2802 | } else { |
| 2803 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2804 | } |
| 2805 | node = rb_next(node); |
| 2806 | } |
| 2807 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2808 | schedule_timeout(1); |
| 2809 | goto again; |
| 2810 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2811 | out: |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2812 | atomic_dec(&delayed_refs->procs_running_refs); |
| 2813 | smp_mb(); |
| 2814 | if (waitqueue_active(&delayed_refs->wait)) |
| 2815 | wake_up(&delayed_refs->wait); |
| 2816 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2817 | spin_unlock(&delayed_refs->lock); |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2818 | assert_qgroups_uptodate(trans); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2819 | return 0; |
| 2820 | } |
| 2821 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2822 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 2823 | struct btrfs_root *root, |
| 2824 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2825 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2826 | { |
| 2827 | struct btrfs_delayed_extent_op *extent_op; |
| 2828 | int ret; |
| 2829 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2830 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2831 | if (!extent_op) |
| 2832 | return -ENOMEM; |
| 2833 | |
| 2834 | extent_op->flags_to_set = flags; |
| 2835 | extent_op->update_flags = 1; |
| 2836 | extent_op->update_key = 0; |
| 2837 | extent_op->is_data = is_data ? 1 : 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2838 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2839 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2840 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 2841 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2842 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2843 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2844 | return ret; |
| 2845 | } |
| 2846 | |
| 2847 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 2848 | struct btrfs_root *root, |
| 2849 | struct btrfs_path *path, |
| 2850 | u64 objectid, u64 offset, u64 bytenr) |
| 2851 | { |
| 2852 | struct btrfs_delayed_ref_head *head; |
| 2853 | struct btrfs_delayed_ref_node *ref; |
| 2854 | struct btrfs_delayed_data_ref *data_ref; |
| 2855 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2856 | struct rb_node *node; |
| 2857 | int ret = 0; |
| 2858 | |
| 2859 | ret = -ENOENT; |
| 2860 | delayed_refs = &trans->transaction->delayed_refs; |
| 2861 | spin_lock(&delayed_refs->lock); |
| 2862 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 2863 | if (!head) |
| 2864 | goto out; |
| 2865 | |
| 2866 | if (!mutex_trylock(&head->mutex)) { |
| 2867 | atomic_inc(&head->node.refs); |
| 2868 | spin_unlock(&delayed_refs->lock); |
| 2869 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2870 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2871 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2872 | /* |
| 2873 | * Mutex was contended, block until it's released and let |
| 2874 | * caller try again |
| 2875 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2876 | mutex_lock(&head->mutex); |
| 2877 | mutex_unlock(&head->mutex); |
| 2878 | btrfs_put_delayed_ref(&head->node); |
| 2879 | return -EAGAIN; |
| 2880 | } |
| 2881 | |
| 2882 | node = rb_prev(&head->node.rb_node); |
| 2883 | if (!node) |
| 2884 | goto out_unlock; |
| 2885 | |
| 2886 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
| 2887 | |
| 2888 | if (ref->bytenr != bytenr) |
| 2889 | goto out_unlock; |
| 2890 | |
| 2891 | ret = 1; |
| 2892 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) |
| 2893 | goto out_unlock; |
| 2894 | |
| 2895 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 2896 | |
| 2897 | node = rb_prev(node); |
| 2898 | if (node) { |
Liu Bo | df57dbe | 2012-07-23 05:50:03 -0600 | [diff] [blame] | 2899 | int seq = ref->seq; |
| 2900 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2901 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
Liu Bo | df57dbe | 2012-07-23 05:50:03 -0600 | [diff] [blame] | 2902 | if (ref->bytenr == bytenr && ref->seq == seq) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2903 | goto out_unlock; |
| 2904 | } |
| 2905 | |
| 2906 | if (data_ref->root != root->root_key.objectid || |
| 2907 | data_ref->objectid != objectid || data_ref->offset != offset) |
| 2908 | goto out_unlock; |
| 2909 | |
| 2910 | ret = 0; |
| 2911 | out_unlock: |
| 2912 | mutex_unlock(&head->mutex); |
| 2913 | out: |
| 2914 | spin_unlock(&delayed_refs->lock); |
| 2915 | return ret; |
| 2916 | } |
| 2917 | |
| 2918 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 2919 | struct btrfs_root *root, |
| 2920 | struct btrfs_path *path, |
| 2921 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2922 | { |
| 2923 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2924 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2925 | struct btrfs_extent_data_ref *ref; |
| 2926 | struct btrfs_extent_inline_ref *iref; |
| 2927 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2928 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2929 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2930 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2931 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2932 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2933 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2934 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2935 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2936 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 2937 | if (ret < 0) |
| 2938 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2939 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 2940 | |
| 2941 | ret = -ENOENT; |
| 2942 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2943 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2944 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2945 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2946 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2947 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2948 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2949 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2950 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2951 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2952 | ret = 1; |
| 2953 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2954 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2955 | if (item_size < sizeof(*ei)) { |
| 2956 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 2957 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2958 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2959 | #endif |
| 2960 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2961 | |
| 2962 | if (item_size != sizeof(*ei) + |
| 2963 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 2964 | goto out; |
| 2965 | |
| 2966 | if (btrfs_extent_generation(leaf, ei) <= |
| 2967 | btrfs_root_last_snapshot(&root->root_item)) |
| 2968 | goto out; |
| 2969 | |
| 2970 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 2971 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 2972 | BTRFS_EXTENT_DATA_REF_KEY) |
| 2973 | goto out; |
| 2974 | |
| 2975 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 2976 | if (btrfs_extent_refs(leaf, ei) != |
| 2977 | btrfs_extent_data_ref_count(leaf, ref) || |
| 2978 | btrfs_extent_data_ref_root(leaf, ref) != |
| 2979 | root->root_key.objectid || |
| 2980 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 2981 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 2982 | goto out; |
| 2983 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2984 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2985 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2986 | return ret; |
| 2987 | } |
| 2988 | |
| 2989 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 2990 | struct btrfs_root *root, |
| 2991 | u64 objectid, u64 offset, u64 bytenr) |
| 2992 | { |
| 2993 | struct btrfs_path *path; |
| 2994 | int ret; |
| 2995 | int ret2; |
| 2996 | |
| 2997 | path = btrfs_alloc_path(); |
| 2998 | if (!path) |
| 2999 | return -ENOENT; |
| 3000 | |
| 3001 | do { |
| 3002 | ret = check_committed_ref(trans, root, path, objectid, |
| 3003 | offset, bytenr); |
| 3004 | if (ret && ret != -ENOENT) |
| 3005 | goto out; |
| 3006 | |
| 3007 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3008 | offset, bytenr); |
| 3009 | } while (ret2 == -EAGAIN); |
| 3010 | |
| 3011 | if (ret2 && ret2 != -ENOENT) { |
| 3012 | ret = ret2; |
| 3013 | goto out; |
| 3014 | } |
| 3015 | |
| 3016 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3017 | ret = 0; |
| 3018 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3019 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3020 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3021 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3022 | return ret; |
| 3023 | } |
| 3024 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3025 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3026 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3027 | struct extent_buffer *buf, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3028 | int full_backref, int inc, int for_cow) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3029 | { |
| 3030 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3031 | u64 num_bytes; |
| 3032 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3033 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3034 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3035 | struct btrfs_key key; |
| 3036 | struct btrfs_file_extent_item *fi; |
| 3037 | int i; |
| 3038 | int level; |
| 3039 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3040 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3041 | u64, u64, u64, u64, u64, u64, int); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3042 | |
| 3043 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3044 | nritems = btrfs_header_nritems(buf); |
| 3045 | level = btrfs_header_level(buf); |
| 3046 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3047 | if (!root->ref_cows && level == 0) |
| 3048 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3049 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3050 | if (inc) |
| 3051 | process_func = btrfs_inc_extent_ref; |
| 3052 | else |
| 3053 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3054 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3055 | if (full_backref) |
| 3056 | parent = buf->start; |
| 3057 | else |
| 3058 | parent = 0; |
| 3059 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3060 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3061 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3062 | btrfs_item_key_to_cpu(buf, &key, i); |
| 3063 | if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3064 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3065 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3066 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3067 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3068 | BTRFS_FILE_EXTENT_INLINE) |
| 3069 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3070 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3071 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3072 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3073 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3074 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3075 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3076 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3077 | parent, ref_root, key.objectid, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3078 | key.offset, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3079 | if (ret) |
| 3080 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3081 | } else { |
| 3082 | bytenr = btrfs_node_blockptr(buf, i); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3083 | num_bytes = btrfs_level_size(root, level - 1); |
| 3084 | ret = process_func(trans, root, bytenr, num_bytes, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3085 | parent, ref_root, level - 1, 0, |
| 3086 | for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3087 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3088 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3089 | } |
| 3090 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3091 | return 0; |
| 3092 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3093 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3094 | } |
| 3095 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3096 | int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3097 | struct extent_buffer *buf, int full_backref, int for_cow) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3098 | { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3099 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3100 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3101 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3102 | int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3103 | struct extent_buffer *buf, int full_backref, int for_cow) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3104 | { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3105 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3106 | } |
| 3107 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3108 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3109 | struct btrfs_root *root, |
| 3110 | struct btrfs_path *path, |
| 3111 | struct btrfs_block_group_cache *cache) |
| 3112 | { |
| 3113 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3114 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3115 | unsigned long bi; |
| 3116 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3117 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3118 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3119 | if (ret < 0) |
| 3120 | goto fail; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3121 | BUG_ON(ret); /* Corruption */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3122 | |
| 3123 | leaf = path->nodes[0]; |
| 3124 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3125 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3126 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3127 | btrfs_release_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3128 | fail: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3129 | if (ret) { |
| 3130 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3131 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3132 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3133 | return 0; |
| 3134 | |
| 3135 | } |
| 3136 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3137 | static struct btrfs_block_group_cache * |
| 3138 | next_block_group(struct btrfs_root *root, |
| 3139 | struct btrfs_block_group_cache *cache) |
| 3140 | { |
| 3141 | struct rb_node *node; |
| 3142 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 3143 | node = rb_next(&cache->cache_node); |
| 3144 | btrfs_put_block_group(cache); |
| 3145 | if (node) { |
| 3146 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3147 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3148 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3149 | } else |
| 3150 | cache = NULL; |
| 3151 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3152 | return cache; |
| 3153 | } |
| 3154 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3155 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3156 | struct btrfs_trans_handle *trans, |
| 3157 | struct btrfs_path *path) |
| 3158 | { |
| 3159 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3160 | struct inode *inode = NULL; |
| 3161 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3162 | int dcs = BTRFS_DC_ERROR; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3163 | int num_pages = 0; |
| 3164 | int retries = 0; |
| 3165 | int ret = 0; |
| 3166 | |
| 3167 | /* |
| 3168 | * If this block group is smaller than 100 megs don't bother caching the |
| 3169 | * block group. |
| 3170 | */ |
| 3171 | if (block_group->key.offset < (100 * 1024 * 1024)) { |
| 3172 | spin_lock(&block_group->lock); |
| 3173 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3174 | spin_unlock(&block_group->lock); |
| 3175 | return 0; |
| 3176 | } |
| 3177 | |
| 3178 | again: |
| 3179 | inode = lookup_free_space_inode(root, block_group, path); |
| 3180 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3181 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3182 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3183 | goto out; |
| 3184 | } |
| 3185 | |
| 3186 | if (IS_ERR(inode)) { |
| 3187 | BUG_ON(retries); |
| 3188 | retries++; |
| 3189 | |
| 3190 | if (block_group->ro) |
| 3191 | goto out_free; |
| 3192 | |
| 3193 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3194 | if (ret) |
| 3195 | goto out_free; |
| 3196 | goto again; |
| 3197 | } |
| 3198 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3199 | /* We've already setup this transaction, go ahead and exit */ |
| 3200 | if (block_group->cache_generation == trans->transid && |
| 3201 | i_size_read(inode)) { |
| 3202 | dcs = BTRFS_DC_SETUP; |
| 3203 | goto out_put; |
| 3204 | } |
| 3205 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3206 | /* |
| 3207 | * We want to set the generation to 0, that way if anything goes wrong |
| 3208 | * from here on out we know not to trust this cache when we load up next |
| 3209 | * time. |
| 3210 | */ |
| 3211 | BTRFS_I(inode)->generation = 0; |
| 3212 | ret = btrfs_update_inode(trans, root, inode); |
| 3213 | WARN_ON(ret); |
| 3214 | |
| 3215 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3216 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3217 | &root->fs_info->global_block_rsv); |
| 3218 | if (ret) |
| 3219 | goto out_put; |
| 3220 | |
Filipe David Borba Manana | 7451432 | 2013-09-20 14:46:51 +0100 | [diff] [blame] | 3221 | ret = btrfs_truncate_free_space_cache(root, trans, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3222 | if (ret) |
| 3223 | goto out_put; |
| 3224 | } |
| 3225 | |
| 3226 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3227 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
| 3228 | !btrfs_test_opt(root, SPACE_CACHE)) { |
| 3229 | /* |
| 3230 | * don't bother trying to write stuff out _if_ |
| 3231 | * a) we're not cached, |
| 3232 | * b) we're with nospace_cache mount option. |
| 3233 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3234 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3235 | spin_unlock(&block_group->lock); |
| 3236 | goto out_put; |
| 3237 | } |
| 3238 | spin_unlock(&block_group->lock); |
| 3239 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3240 | /* |
| 3241 | * Try to preallocate enough space based on how big the block group is. |
| 3242 | * Keep in mind this has to include any pinned space which could end up |
| 3243 | * taking up quite a bit since it's not folded into the other space |
| 3244 | * cache. |
| 3245 | */ |
| 3246 | num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3247 | if (!num_pages) |
| 3248 | num_pages = 1; |
| 3249 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3250 | num_pages *= 16; |
| 3251 | num_pages *= PAGE_CACHE_SIZE; |
| 3252 | |
| 3253 | ret = btrfs_check_data_free_space(inode, num_pages); |
| 3254 | if (ret) |
| 3255 | goto out_put; |
| 3256 | |
| 3257 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3258 | num_pages, num_pages, |
| 3259 | &alloc_hint); |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3260 | if (!ret) |
| 3261 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3262 | btrfs_free_reserved_data_space(inode, num_pages); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3263 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3264 | out_put: |
| 3265 | iput(inode); |
| 3266 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3267 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3268 | out: |
| 3269 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3270 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3271 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3272 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3273 | spin_unlock(&block_group->lock); |
| 3274 | |
| 3275 | return ret; |
| 3276 | } |
| 3277 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3278 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3279 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3280 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3281 | struct btrfs_block_group_cache *cache; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3282 | int err = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3283 | struct btrfs_path *path; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3284 | u64 last = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3285 | |
| 3286 | path = btrfs_alloc_path(); |
| 3287 | if (!path) |
| 3288 | return -ENOMEM; |
| 3289 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3290 | again: |
| 3291 | while (1) { |
| 3292 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3293 | while (cache) { |
| 3294 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3295 | break; |
| 3296 | cache = next_block_group(root, cache); |
| 3297 | } |
| 3298 | if (!cache) { |
| 3299 | if (last == 0) |
| 3300 | break; |
| 3301 | last = 0; |
| 3302 | continue; |
| 3303 | } |
| 3304 | err = cache_save_setup(cache, trans, path); |
| 3305 | last = cache->key.objectid + cache->key.offset; |
| 3306 | btrfs_put_block_group(cache); |
| 3307 | } |
| 3308 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3309 | while (1) { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3310 | if (last == 0) { |
| 3311 | err = btrfs_run_delayed_refs(trans, root, |
| 3312 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3313 | if (err) /* File system offline */ |
| 3314 | goto out; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3315 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3316 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3317 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3318 | while (cache) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3319 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) { |
| 3320 | btrfs_put_block_group(cache); |
| 3321 | goto again; |
| 3322 | } |
| 3323 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3324 | if (cache->dirty) |
| 3325 | break; |
| 3326 | cache = next_block_group(root, cache); |
| 3327 | } |
| 3328 | if (!cache) { |
| 3329 | if (last == 0) |
| 3330 | break; |
| 3331 | last = 0; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3332 | continue; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3333 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3334 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3335 | if (cache->disk_cache_state == BTRFS_DC_SETUP) |
| 3336 | cache->disk_cache_state = BTRFS_DC_NEED_WRITE; |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3337 | cache->dirty = 0; |
| 3338 | last = cache->key.objectid + cache->key.offset; |
| 3339 | |
| 3340 | err = write_one_cache_group(trans, root, path, cache); |
Filipe David Borba Manana | e84cc14 | 2013-09-09 19:49:43 +0100 | [diff] [blame] | 3341 | btrfs_put_block_group(cache); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3342 | if (err) /* File system offline */ |
| 3343 | goto out; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3344 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3345 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3346 | while (1) { |
| 3347 | /* |
| 3348 | * I don't think this is needed since we're just marking our |
| 3349 | * preallocated extent as written, but just in case it can't |
| 3350 | * hurt. |
| 3351 | */ |
| 3352 | if (last == 0) { |
| 3353 | err = btrfs_run_delayed_refs(trans, root, |
| 3354 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3355 | if (err) /* File system offline */ |
| 3356 | goto out; |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3357 | } |
| 3358 | |
| 3359 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3360 | while (cache) { |
| 3361 | /* |
| 3362 | * Really this shouldn't happen, but it could if we |
| 3363 | * couldn't write the entire preallocated extent and |
| 3364 | * splitting the extent resulted in a new block. |
| 3365 | */ |
| 3366 | if (cache->dirty) { |
| 3367 | btrfs_put_block_group(cache); |
| 3368 | goto again; |
| 3369 | } |
| 3370 | if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
| 3371 | break; |
| 3372 | cache = next_block_group(root, cache); |
| 3373 | } |
| 3374 | if (!cache) { |
| 3375 | if (last == 0) |
| 3376 | break; |
| 3377 | last = 0; |
| 3378 | continue; |
| 3379 | } |
| 3380 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3381 | err = btrfs_write_out_cache(root, trans, cache, path); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3382 | |
| 3383 | /* |
| 3384 | * If we didn't have an error then the cache state is still |
| 3385 | * NEED_WRITE, so we can set it to WRITTEN. |
| 3386 | */ |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3387 | if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3388 | cache->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3389 | last = cache->key.objectid + cache->key.offset; |
| 3390 | btrfs_put_block_group(cache); |
| 3391 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3392 | out: |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3393 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3394 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3395 | return err; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3396 | } |
| 3397 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3398 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3399 | { |
| 3400 | struct btrfs_block_group_cache *block_group; |
| 3401 | int readonly = 0; |
| 3402 | |
| 3403 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3404 | if (!block_group || block_group->ro) |
| 3405 | readonly = 1; |
| 3406 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3407 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3408 | return readonly; |
| 3409 | } |
| 3410 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3411 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3412 | u64 total_bytes, u64 bytes_used, |
| 3413 | struct btrfs_space_info **space_info) |
| 3414 | { |
| 3415 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3416 | int i; |
| 3417 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3418 | int ret; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3419 | |
| 3420 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3421 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3422 | factor = 2; |
| 3423 | else |
| 3424 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3425 | |
| 3426 | found = __find_space_info(info, flags); |
| 3427 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3428 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3429 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3430 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3431 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3432 | found->disk_used += bytes_used * factor; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3433 | found->full = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3434 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3435 | *space_info = found; |
| 3436 | return 0; |
| 3437 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3438 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3439 | if (!found) |
| 3440 | return -ENOMEM; |
| 3441 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3442 | ret = percpu_counter_init(&found->total_bytes_pinned, 0); |
| 3443 | if (ret) { |
| 3444 | kfree(found); |
| 3445 | return ret; |
| 3446 | } |
| 3447 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3448 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
| 3449 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3450 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3451 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3452 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3453 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3454 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3455 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3456 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3457 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3458 | found->bytes_reserved = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3459 | found->bytes_readonly = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3460 | found->bytes_may_use = 0; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3461 | found->full = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3462 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3463 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3464 | found->flush = 0; |
| 3465 | init_waitqueue_head(&found->wait); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3466 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3467 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3468 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3469 | info->data_sinfo = found; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3470 | return 0; |
| 3471 | } |
| 3472 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3473 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 3474 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3475 | u64 extra_flags = chunk_to_extended(flags) & |
| 3476 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3477 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3478 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3479 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3480 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 3481 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3482 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 3483 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3484 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3485 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3486 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3487 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3488 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3489 | * returns target flags in extended format or 0 if restripe for this |
| 3490 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 3491 | * |
| 3492 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3493 | */ |
| 3494 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 3495 | { |
| 3496 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3497 | u64 target = 0; |
| 3498 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3499 | if (!bctl) |
| 3500 | return 0; |
| 3501 | |
| 3502 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 3503 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3504 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 3505 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 3506 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3507 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 3508 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 3509 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3510 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 3511 | } |
| 3512 | |
| 3513 | return target; |
| 3514 | } |
| 3515 | |
| 3516 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3517 | * @flags: available profiles in extended format (see ctree.h) |
| 3518 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3519 | * Returns reduced profile in chunk format. If profile changing is in |
| 3520 | * progress (either running or paused) picks the target profile (if it's |
| 3521 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3522 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 3523 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3524 | { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 3525 | /* |
| 3526 | * we add in the count of missing devices because we want |
| 3527 | * to make sure that any RAID levels on a degraded FS |
| 3528 | * continue to be honored. |
| 3529 | */ |
| 3530 | u64 num_devices = root->fs_info->fs_devices->rw_devices + |
| 3531 | root->fs_info->fs_devices->missing_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3532 | u64 target; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3533 | u64 tmp; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3534 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3535 | /* |
| 3536 | * see if restripe for this chunk_type is in progress, if so |
| 3537 | * try to reduce to the target profile |
| 3538 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3539 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3540 | target = get_restripe_target(root->fs_info, flags); |
| 3541 | if (target) { |
| 3542 | /* pick target profile only if it's already available */ |
| 3543 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3544 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3545 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3546 | } |
| 3547 | } |
| 3548 | spin_unlock(&root->fs_info->balance_lock); |
| 3549 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3550 | /* First, mask out the RAID levels which aren't possible */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3551 | if (num_devices == 1) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3552 | flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3553 | BTRFS_BLOCK_GROUP_RAID5); |
| 3554 | if (num_devices < 3) |
| 3555 | flags &= ~BTRFS_BLOCK_GROUP_RAID6; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3556 | if (num_devices < 4) |
| 3557 | flags &= ~BTRFS_BLOCK_GROUP_RAID10; |
| 3558 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3559 | tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 | |
| 3560 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3561 | BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10); |
| 3562 | flags &= ~tmp; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3563 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3564 | if (tmp & BTRFS_BLOCK_GROUP_RAID6) |
| 3565 | tmp = BTRFS_BLOCK_GROUP_RAID6; |
| 3566 | else if (tmp & BTRFS_BLOCK_GROUP_RAID5) |
| 3567 | tmp = BTRFS_BLOCK_GROUP_RAID5; |
| 3568 | else if (tmp & BTRFS_BLOCK_GROUP_RAID10) |
| 3569 | tmp = BTRFS_BLOCK_GROUP_RAID10; |
| 3570 | else if (tmp & BTRFS_BLOCK_GROUP_RAID1) |
| 3571 | tmp = BTRFS_BLOCK_GROUP_RAID1; |
| 3572 | else if (tmp & BTRFS_BLOCK_GROUP_RAID0) |
| 3573 | tmp = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3574 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3575 | return extended_to_chunk(flags | tmp); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3576 | } |
| 3577 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3578 | static u64 get_alloc_profile(struct btrfs_root *root, u64 flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3579 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3580 | unsigned seq; |
| 3581 | |
| 3582 | do { |
| 3583 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 3584 | |
| 3585 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3586 | flags |= root->fs_info->avail_data_alloc_bits; |
| 3587 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3588 | flags |= root->fs_info->avail_system_alloc_bits; |
| 3589 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3590 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 3591 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3592 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3593 | return btrfs_reduce_alloc_profile(root, flags); |
| 3594 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3595 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 3596 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3597 | { |
| 3598 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3599 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3600 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3601 | if (data) |
| 3602 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 3603 | else if (root == root->fs_info->chunk_root) |
| 3604 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 3605 | else |
| 3606 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 3607 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3608 | ret = get_alloc_profile(root, flags); |
| 3609 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3610 | } |
| 3611 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3612 | /* |
| 3613 | * This will check the space that the inode allocates from to make sure we have |
| 3614 | * enough space for bytes. |
| 3615 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3616 | int btrfs_check_data_free_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3617 | { |
| 3618 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3619 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3620 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3621 | u64 used; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3622 | int ret = 0, committed = 0, alloc_chunk = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3623 | |
| 3624 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3625 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3626 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3627 | if (btrfs_is_free_space_inode(inode)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3628 | committed = 1; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3629 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3630 | } |
| 3631 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3632 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3633 | if (!data_sinfo) |
| 3634 | goto alloc; |
| 3635 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3636 | again: |
| 3637 | /* make sure we have enough space to handle the data first */ |
| 3638 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3639 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 3640 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 3641 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3642 | |
| 3643 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3644 | struct btrfs_trans_handle *trans; |
| 3645 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3646 | /* |
| 3647 | * if we don't have enough free bytes in this space then we need |
| 3648 | * to alloc a new chunk. |
| 3649 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3650 | if (!data_sinfo->full && alloc_chunk) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3651 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3652 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3653 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3654 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3655 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3656 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3657 | /* |
| 3658 | * It is ugly that we don't call nolock join |
| 3659 | * transaction for the free space inode case here. |
| 3660 | * But it is safe because we only do the data space |
| 3661 | * reservation for the free space cache in the |
| 3662 | * transaction context, the common join transaction |
| 3663 | * just increase the counter of the current transaction |
| 3664 | * handler, doesn't try to acquire the trans_lock of |
| 3665 | * the fs. |
| 3666 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3667 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3668 | if (IS_ERR(trans)) |
| 3669 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3670 | |
| 3671 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3672 | alloc_target, |
| 3673 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3674 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3675 | if (ret < 0) { |
| 3676 | if (ret != -ENOSPC) |
| 3677 | return ret; |
| 3678 | else |
| 3679 | goto commit_trans; |
| 3680 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3681 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3682 | if (!data_sinfo) |
| 3683 | data_sinfo = fs_info->data_sinfo; |
| 3684 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3685 | goto again; |
| 3686 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3687 | |
| 3688 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3689 | * If we don't have enough pinned space to deal with this |
| 3690 | * allocation don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3691 | */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3692 | if (percpu_counter_compare(&data_sinfo->total_bytes_pinned, |
| 3693 | bytes) < 0) |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3694 | committed = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3695 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3696 | |
| 3697 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3698 | commit_trans: |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 3699 | if (!committed && |
| 3700 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3701 | committed = 1; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3702 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3703 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3704 | if (IS_ERR(trans)) |
| 3705 | return PTR_ERR(trans); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3706 | ret = btrfs_commit_transaction(trans, root); |
| 3707 | if (ret) |
| 3708 | return ret; |
| 3709 | goto again; |
| 3710 | } |
| 3711 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 3712 | trace_btrfs_space_reservation(root->fs_info, |
| 3713 | "space_info:enospc", |
| 3714 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3715 | return -ENOSPC; |
| 3716 | } |
| 3717 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3718 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3719 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3720 | spin_unlock(&data_sinfo->lock); |
| 3721 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3722 | return 0; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3723 | } |
| 3724 | |
| 3725 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3726 | * Called if we need to clear a data reservation for this inode. |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3727 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3728 | void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3729 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3730 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3731 | struct btrfs_space_info *data_sinfo; |
| 3732 | |
| 3733 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3734 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3735 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3736 | data_sinfo = root->fs_info->data_sinfo; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3737 | spin_lock(&data_sinfo->lock); |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 3738 | WARN_ON(data_sinfo->bytes_may_use < bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3739 | data_sinfo->bytes_may_use -= bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3740 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3741 | data_sinfo->flags, bytes, 0); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3742 | spin_unlock(&data_sinfo->lock); |
| 3743 | } |
| 3744 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3745 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 3746 | { |
| 3747 | struct list_head *head = &info->space_info; |
| 3748 | struct btrfs_space_info *found; |
| 3749 | |
| 3750 | rcu_read_lock(); |
| 3751 | list_for_each_entry_rcu(found, head, list) { |
| 3752 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3753 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3754 | } |
| 3755 | rcu_read_unlock(); |
| 3756 | } |
| 3757 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3758 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 3759 | { |
| 3760 | return (global->size << 1); |
| 3761 | } |
| 3762 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3763 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3764 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3765 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3766 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3767 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3768 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3769 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3770 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3771 | if (force == CHUNK_ALLOC_FORCE) |
| 3772 | return 1; |
| 3773 | |
| 3774 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3775 | * We need to take into account the global rsv because for all intents |
| 3776 | * and purposes it's used space. Don't worry about locking the |
| 3777 | * global_rsv, it doesn't change except when the transaction commits. |
| 3778 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 3779 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3780 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3781 | |
| 3782 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3783 | * in limited mode, we want to have some free space up to |
| 3784 | * about 1% of the FS size. |
| 3785 | */ |
| 3786 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 3787 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3788 | thresh = max_t(u64, 64 * 1024 * 1024, |
| 3789 | div_factor_fine(thresh, 1)); |
| 3790 | |
| 3791 | if (num_bytes - num_allocated < thresh) |
| 3792 | return 1; |
| 3793 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3794 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3795 | if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 3796 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3797 | return 1; |
| 3798 | } |
| 3799 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3800 | static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type) |
| 3801 | { |
| 3802 | u64 num_dev; |
| 3803 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3804 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 3805 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3806 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3807 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3808 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 3809 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 3810 | num_dev = 2; |
| 3811 | else |
| 3812 | num_dev = 1; /* DUP or single */ |
| 3813 | |
| 3814 | /* metadata for updaing devices and chunk tree */ |
| 3815 | return btrfs_calc_trans_metadata_size(root, num_dev + 1); |
| 3816 | } |
| 3817 | |
| 3818 | static void check_system_chunk(struct btrfs_trans_handle *trans, |
| 3819 | struct btrfs_root *root, u64 type) |
| 3820 | { |
| 3821 | struct btrfs_space_info *info; |
| 3822 | u64 left; |
| 3823 | u64 thresh; |
| 3824 | |
| 3825 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 3826 | spin_lock(&info->lock); |
| 3827 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 3828 | info->bytes_reserved - info->bytes_readonly; |
| 3829 | spin_unlock(&info->lock); |
| 3830 | |
| 3831 | thresh = get_system_chunk_thresh(root, type); |
| 3832 | if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3833 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 3834 | left, thresh, type); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3835 | dump_space_info(info, 0, 0); |
| 3836 | } |
| 3837 | |
| 3838 | if (left < thresh) { |
| 3839 | u64 flags; |
| 3840 | |
| 3841 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
| 3842 | btrfs_alloc_chunk(trans, root, flags); |
| 3843 | } |
| 3844 | } |
| 3845 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3846 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3847 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3848 | { |
| 3849 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3850 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3851 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3852 | int ret = 0; |
| 3853 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3854 | /* Don't re-enter if we're already allocating a chunk */ |
| 3855 | if (trans->allocating_chunk) |
| 3856 | return -ENOSPC; |
| 3857 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3858 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3859 | if (!space_info) { |
| 3860 | ret = update_space_info(extent_root->fs_info, flags, |
| 3861 | 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3862 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3863 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3864 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3865 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3866 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3867 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 3868 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3869 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3870 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3871 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 3872 | ret = -ENOSPC; |
| 3873 | else |
| 3874 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3875 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3876 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3877 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3878 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3879 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3880 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3881 | return 0; |
| 3882 | } else if (space_info->chunk_alloc) { |
| 3883 | wait_for_alloc = 1; |
| 3884 | } else { |
| 3885 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3886 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3887 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3888 | spin_unlock(&space_info->lock); |
| 3889 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3890 | mutex_lock(&fs_info->chunk_mutex); |
| 3891 | |
| 3892 | /* |
| 3893 | * The chunk_mutex is held throughout the entirety of a chunk |
| 3894 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 3895 | * other guy is done and we need to recheck and see if we should |
| 3896 | * allocate. |
| 3897 | */ |
| 3898 | if (wait_for_alloc) { |
| 3899 | mutex_unlock(&fs_info->chunk_mutex); |
| 3900 | wait_for_alloc = 0; |
| 3901 | goto again; |
| 3902 | } |
| 3903 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3904 | trans->allocating_chunk = true; |
| 3905 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3906 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 3907 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 3908 | * allocating mixed chunks instead of individual chunks. |
| 3909 | */ |
| 3910 | if (btrfs_mixed_space_info(space_info)) |
| 3911 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 3912 | |
| 3913 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3914 | * if we're doing a data chunk, go ahead and make sure that |
| 3915 | * we keep a reasonable number of metadata chunks allocated in the |
| 3916 | * FS as well. |
| 3917 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3918 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3919 | fs_info->data_chunk_allocations++; |
| 3920 | if (!(fs_info->data_chunk_allocations % |
| 3921 | fs_info->metadata_ratio)) |
| 3922 | force_metadata_allocation(fs_info); |
| 3923 | } |
| 3924 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3925 | /* |
| 3926 | * Check if we have enough space in SYSTEM chunk because we may need |
| 3927 | * to update devices. |
| 3928 | */ |
| 3929 | check_system_chunk(trans, extent_root, flags); |
| 3930 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3931 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3932 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 3933 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3934 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 3935 | if (ret < 0 && ret != -ENOSPC) |
| 3936 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3937 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3938 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3939 | else |
| 3940 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3941 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3942 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 3943 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3944 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3945 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 3946 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3947 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3948 | } |
| 3949 | |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3950 | static int can_overcommit(struct btrfs_root *root, |
| 3951 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 3952 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3953 | { |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3954 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3955 | u64 profile = btrfs_get_alloc_profile(root, 0); |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3956 | u64 space_size; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3957 | u64 avail; |
| 3958 | u64 used; |
| 3959 | |
| 3960 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3961 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 3962 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3963 | /* |
| 3964 | * We only want to allow over committing if we have lots of actual space |
| 3965 | * free, but if we don't have enough space to handle the global reserve |
| 3966 | * space then we could end up having a real enospc problem when trying |
| 3967 | * to allocate a chunk or some other such important allocation. |
| 3968 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3969 | spin_lock(&global_rsv->lock); |
| 3970 | space_size = calc_global_rsv_need_space(global_rsv); |
| 3971 | spin_unlock(&global_rsv->lock); |
| 3972 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3973 | return 0; |
| 3974 | |
| 3975 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3976 | |
| 3977 | spin_lock(&root->fs_info->free_chunk_lock); |
| 3978 | avail = root->fs_info->free_chunk_space; |
| 3979 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 3980 | |
| 3981 | /* |
| 3982 | * 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] | 3983 | * space is actually useable. For raid56, the space info used |
| 3984 | * doesn't include the parity drive, so we don't have to |
| 3985 | * change the math |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3986 | */ |
| 3987 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 3988 | BTRFS_BLOCK_GROUP_RAID1 | |
| 3989 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3990 | avail >>= 1; |
| 3991 | |
| 3992 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 3993 | * If we aren't flushing all things, let us overcommit up to |
| 3994 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 3995 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3996 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 3997 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 3998 | avail >>= 3; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3999 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4000 | avail >>= 1; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4001 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4002 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4003 | return 1; |
| 4004 | return 0; |
| 4005 | } |
| 4006 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4007 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
| 4008 | unsigned long nr_pages) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4009 | { |
| 4010 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4011 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4012 | if (down_read_trylock(&sb->s_umount)) { |
| 4013 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4014 | up_read(&sb->s_umount); |
| 4015 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4016 | /* |
| 4017 | * We needn't worry the filesystem going from r/w to r/o though |
| 4018 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4019 | * should guarantee the delalloc inodes list be empty after |
| 4020 | * the filesystem is readonly(all dirty pages are written to |
| 4021 | * the disk). |
| 4022 | */ |
Miao Xie | 91aef86 | 2013-11-04 23:13:26 +0800 | [diff] [blame] | 4023 | btrfs_start_delalloc_roots(root->fs_info, 0); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4024 | if (!current->journal_info) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4025 | btrfs_wait_ordered_roots(root->fs_info, -1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4026 | } |
| 4027 | } |
| 4028 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4029 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4030 | { |
| 4031 | u64 bytes; |
| 4032 | int nr; |
| 4033 | |
| 4034 | bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 4035 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4036 | if (!nr) |
| 4037 | nr = 1; |
| 4038 | return nr; |
| 4039 | } |
| 4040 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4041 | #define EXTENT_SIZE_PER_ITEM (256 * 1024) |
| 4042 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4043 | /* |
| 4044 | * shrink metadata reservation for delalloc |
| 4045 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4046 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4047 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4048 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4049 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4050 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4051 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4052 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4053 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4054 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4055 | unsigned long nr_pages; |
| 4056 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4057 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4058 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4059 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4060 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4061 | items = calc_reclaim_items_nr(root, to_reclaim); |
| 4062 | to_reclaim = items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4063 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4064 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4065 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4066 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4067 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4068 | delalloc_bytes = percpu_counter_sum_positive( |
| 4069 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4070 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4071 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4072 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4073 | if (wait_ordered) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4074 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4075 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4076 | } |
| 4077 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4078 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4079 | while (delalloc_bytes && loops < 3) { |
| 4080 | max_reclaim = min(delalloc_bytes, to_reclaim); |
| 4081 | nr_pages = max_reclaim >> PAGE_CACHE_SHIFT; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4082 | btrfs_writeback_inodes_sb_nr(root, nr_pages); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4083 | /* |
| 4084 | * We need to wait for the async pages to actually start before |
| 4085 | * we do anything. |
| 4086 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4087 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4088 | if (!max_reclaim) |
| 4089 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4090 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4091 | if (max_reclaim <= nr_pages) |
| 4092 | max_reclaim = 0; |
| 4093 | else |
| 4094 | max_reclaim -= nr_pages; |
| 4095 | |
| 4096 | wait_event(root->fs_info->async_submit_wait, |
| 4097 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4098 | (int)max_reclaim); |
| 4099 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4100 | if (!trans) |
| 4101 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4102 | else |
| 4103 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4104 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4105 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4106 | spin_unlock(&space_info->lock); |
| 4107 | break; |
| 4108 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4109 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4110 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4111 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4112 | if (wait_ordered && !trans) { |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4113 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4114 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4115 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4116 | if (time_left) |
| 4117 | break; |
| 4118 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4119 | delalloc_bytes = percpu_counter_sum_positive( |
| 4120 | &root->fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4121 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4122 | } |
| 4123 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4124 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4125 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4126 | * @root - the root we're allocating for |
| 4127 | * @bytes - the number of bytes we want to reserve |
| 4128 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4129 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4130 | * This will check to make sure that committing the transaction will actually |
| 4131 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4132 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4133 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4134 | static int may_commit_transaction(struct btrfs_root *root, |
| 4135 | struct btrfs_space_info *space_info, |
| 4136 | u64 bytes, int force) |
| 4137 | { |
| 4138 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4139 | struct btrfs_trans_handle *trans; |
| 4140 | |
| 4141 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4142 | if (trans) |
| 4143 | return -EAGAIN; |
| 4144 | |
| 4145 | if (force) |
| 4146 | goto commit; |
| 4147 | |
| 4148 | /* See if there is enough pinned space to make this reservation */ |
| 4149 | spin_lock(&space_info->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4150 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4151 | bytes) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4152 | spin_unlock(&space_info->lock); |
| 4153 | goto commit; |
| 4154 | } |
| 4155 | spin_unlock(&space_info->lock); |
| 4156 | |
| 4157 | /* |
| 4158 | * See if there is some space in the delayed insertion reservation for |
| 4159 | * this reservation. |
| 4160 | */ |
| 4161 | if (space_info != delayed_rsv->space_info) |
| 4162 | return -ENOSPC; |
| 4163 | |
Liu Bo | d9b0218 | 2012-02-16 18:34:39 +0800 | [diff] [blame] | 4164 | spin_lock(&space_info->lock); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4165 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4166 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4167 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4168 | spin_unlock(&delayed_rsv->lock); |
Liu Bo | d9b0218 | 2012-02-16 18:34:39 +0800 | [diff] [blame] | 4169 | spin_unlock(&space_info->lock); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4170 | return -ENOSPC; |
| 4171 | } |
| 4172 | spin_unlock(&delayed_rsv->lock); |
Liu Bo | d9b0218 | 2012-02-16 18:34:39 +0800 | [diff] [blame] | 4173 | spin_unlock(&space_info->lock); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4174 | |
| 4175 | commit: |
| 4176 | trans = btrfs_join_transaction(root); |
| 4177 | if (IS_ERR(trans)) |
| 4178 | return -ENOSPC; |
| 4179 | |
| 4180 | return btrfs_commit_transaction(trans, root); |
| 4181 | } |
| 4182 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4183 | enum flush_state { |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4184 | FLUSH_DELAYED_ITEMS_NR = 1, |
| 4185 | FLUSH_DELAYED_ITEMS = 2, |
| 4186 | FLUSH_DELALLOC = 3, |
| 4187 | FLUSH_DELALLOC_WAIT = 4, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4188 | ALLOC_CHUNK = 5, |
| 4189 | COMMIT_TRANS = 6, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4190 | }; |
| 4191 | |
| 4192 | static int flush_space(struct btrfs_root *root, |
| 4193 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4194 | u64 orig_bytes, int state) |
| 4195 | { |
| 4196 | struct btrfs_trans_handle *trans; |
| 4197 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4198 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4199 | |
| 4200 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4201 | case FLUSH_DELAYED_ITEMS_NR: |
| 4202 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4203 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4204 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4205 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4206 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4207 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4208 | trans = btrfs_join_transaction(root); |
| 4209 | if (IS_ERR(trans)) { |
| 4210 | ret = PTR_ERR(trans); |
| 4211 | break; |
| 4212 | } |
| 4213 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4214 | btrfs_end_transaction(trans, root); |
| 4215 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4216 | case FLUSH_DELALLOC: |
| 4217 | case FLUSH_DELALLOC_WAIT: |
| 4218 | shrink_delalloc(root, num_bytes, orig_bytes, |
| 4219 | state == FLUSH_DELALLOC_WAIT); |
| 4220 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4221 | case ALLOC_CHUNK: |
| 4222 | trans = btrfs_join_transaction(root); |
| 4223 | if (IS_ERR(trans)) { |
| 4224 | ret = PTR_ERR(trans); |
| 4225 | break; |
| 4226 | } |
| 4227 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4228 | btrfs_get_alloc_profile(root, 0), |
| 4229 | CHUNK_ALLOC_NO_FORCE); |
| 4230 | btrfs_end_transaction(trans, root); |
| 4231 | if (ret == -ENOSPC) |
| 4232 | ret = 0; |
| 4233 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4234 | case COMMIT_TRANS: |
| 4235 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4236 | break; |
| 4237 | default: |
| 4238 | ret = -ENOSPC; |
| 4239 | break; |
| 4240 | } |
| 4241 | |
| 4242 | return ret; |
| 4243 | } |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4244 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4245 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 4246 | * @root - the root we're allocating for |
| 4247 | * @block_rsv - the block_rsv we're allocating for |
| 4248 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 4249 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4250 | * |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4251 | * This will reserve orgi_bytes number of bytes from the space info associated |
| 4252 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 4253 | * flush out space to make room. It will do this by flushing delalloc if |
| 4254 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 4255 | * regain reservations will be made and this will fail if there is not enough |
| 4256 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4257 | */ |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4258 | static int reserve_metadata_bytes(struct btrfs_root *root, |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4259 | struct btrfs_block_rsv *block_rsv, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4260 | u64 orig_bytes, |
| 4261 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4262 | { |
| 4263 | struct btrfs_space_info *space_info = block_rsv->space_info; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4264 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4265 | u64 num_bytes = orig_bytes; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4266 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4267 | int ret = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4268 | bool flushing = false; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4269 | |
| 4270 | again: |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4271 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4272 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4273 | /* |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4274 | * We only want to wait if somebody other than us is flushing and we |
| 4275 | * are actually allowed to flush all things. |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4276 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4277 | while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing && |
| 4278 | space_info->flush) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4279 | spin_unlock(&space_info->lock); |
| 4280 | /* |
| 4281 | * If we have a trans handle we can't wait because the flusher |
| 4282 | * may have to commit the transaction, which would mean we would |
| 4283 | * deadlock since we are waiting for the flusher to finish, but |
| 4284 | * hold the current transaction open. |
| 4285 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4286 | if (current->journal_info) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4287 | return -EAGAIN; |
Arne Jansen | b9688bb | 2012-04-18 10:27:16 +0200 | [diff] [blame] | 4288 | ret = wait_event_killable(space_info->wait, !space_info->flush); |
| 4289 | /* Must have been killed, return */ |
| 4290 | if (ret) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4291 | return -EINTR; |
| 4292 | |
| 4293 | spin_lock(&space_info->lock); |
| 4294 | } |
| 4295 | |
| 4296 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4297 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4298 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4299 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4300 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4301 | /* |
| 4302 | * The idea here is that we've not already over-reserved the block group |
| 4303 | * then we can go ahead and save our reservation first and then start |
| 4304 | * flushing if we need to. Otherwise if we've already overcommitted |
| 4305 | * lets start flushing stuff first and then come back and try to make |
| 4306 | * our reservation. |
| 4307 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4308 | if (used <= space_info->total_bytes) { |
| 4309 | if (used + orig_bytes <= space_info->total_bytes) { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4310 | space_info->bytes_may_use += orig_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4311 | trace_btrfs_space_reservation(root->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4312 | "space_info", space_info->flags, orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4313 | ret = 0; |
| 4314 | } else { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4315 | /* |
| 4316 | * Ok set num_bytes to orig_bytes since we aren't |
| 4317 | * overocmmitted, this way we only try and reclaim what |
| 4318 | * we need. |
| 4319 | */ |
| 4320 | num_bytes = orig_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4321 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4322 | } else { |
| 4323 | /* |
| 4324 | * Ok we're over committed, set num_bytes to the overcommitted |
| 4325 | * amount plus the amount of bytes that we need for this |
| 4326 | * reservation. |
| 4327 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4328 | num_bytes = used - space_info->total_bytes + |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4329 | (orig_bytes * 2); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4330 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4331 | |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 4332 | if (ret && can_overcommit(root, space_info, orig_bytes, flush)) { |
| 4333 | space_info->bytes_may_use += orig_bytes; |
| 4334 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4335 | space_info->flags, orig_bytes, |
| 4336 | 1); |
| 4337 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4338 | } |
| 4339 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4340 | /* |
| 4341 | * Couldn't make our reservation, save our place so while we're trying |
| 4342 | * to reclaim space we can actually use it instead of somebody else |
| 4343 | * stealing it from us. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4344 | * |
| 4345 | * We make the other tasks wait for the flush only when we can flush |
| 4346 | * all things. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4347 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 4348 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4349 | flushing = true; |
| 4350 | space_info->flush = 1; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4351 | } |
| 4352 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4353 | spin_unlock(&space_info->lock); |
| 4354 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4355 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4356 | goto out; |
| 4357 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4358 | ret = flush_space(root, space_info, num_bytes, orig_bytes, |
| 4359 | flush_state); |
| 4360 | flush_state++; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4361 | |
| 4362 | /* |
| 4363 | * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock |
| 4364 | * would happen. So skip delalloc flush. |
| 4365 | */ |
| 4366 | if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4367 | (flush_state == FLUSH_DELALLOC || |
| 4368 | flush_state == FLUSH_DELALLOC_WAIT)) |
| 4369 | flush_state = ALLOC_CHUNK; |
| 4370 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4371 | if (!ret) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4372 | goto again; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4373 | else if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4374 | flush_state < COMMIT_TRANS) |
| 4375 | goto again; |
| 4376 | else if (flush == BTRFS_RESERVE_FLUSH_ALL && |
| 4377 | flush_state <= COMMIT_TRANS) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4378 | goto again; |
| 4379 | |
| 4380 | out: |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 4381 | if (ret == -ENOSPC && |
| 4382 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 4383 | struct btrfs_block_rsv *global_rsv = |
| 4384 | &root->fs_info->global_block_rsv; |
| 4385 | |
| 4386 | if (block_rsv != global_rsv && |
| 4387 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 4388 | ret = 0; |
| 4389 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4390 | if (ret == -ENOSPC) |
| 4391 | trace_btrfs_space_reservation(root->fs_info, |
| 4392 | "space_info:enospc", |
| 4393 | space_info->flags, orig_bytes, 1); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4394 | if (flushing) { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4395 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4396 | space_info->flush = 0; |
| 4397 | wake_up_all(&space_info->wait); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4398 | spin_unlock(&space_info->lock); |
| 4399 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4400 | return ret; |
| 4401 | } |
| 4402 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4403 | static struct btrfs_block_rsv *get_block_rsv( |
| 4404 | const struct btrfs_trans_handle *trans, |
| 4405 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4406 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4407 | struct btrfs_block_rsv *block_rsv = NULL; |
| 4408 | |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4409 | if (root->ref_cows) |
| 4410 | block_rsv = trans->block_rsv; |
| 4411 | |
| 4412 | if (root == root->fs_info->csum_root && trans->adding_csums) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4413 | block_rsv = trans->block_rsv; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4414 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4415 | if (root == root->fs_info->uuid_root) |
| 4416 | block_rsv = trans->block_rsv; |
| 4417 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4418 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4419 | block_rsv = root->block_rsv; |
| 4420 | |
| 4421 | if (!block_rsv) |
| 4422 | block_rsv = &root->fs_info->empty_block_rsv; |
| 4423 | |
| 4424 | return block_rsv; |
| 4425 | } |
| 4426 | |
| 4427 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 4428 | u64 num_bytes) |
| 4429 | { |
| 4430 | int ret = -ENOSPC; |
| 4431 | spin_lock(&block_rsv->lock); |
| 4432 | if (block_rsv->reserved >= num_bytes) { |
| 4433 | block_rsv->reserved -= num_bytes; |
| 4434 | if (block_rsv->reserved < block_rsv->size) |
| 4435 | block_rsv->full = 0; |
| 4436 | ret = 0; |
| 4437 | } |
| 4438 | spin_unlock(&block_rsv->lock); |
| 4439 | return ret; |
| 4440 | } |
| 4441 | |
| 4442 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 4443 | u64 num_bytes, int update_size) |
| 4444 | { |
| 4445 | spin_lock(&block_rsv->lock); |
| 4446 | block_rsv->reserved += num_bytes; |
| 4447 | if (update_size) |
| 4448 | block_rsv->size += num_bytes; |
| 4449 | else if (block_rsv->reserved >= block_rsv->size) |
| 4450 | block_rsv->full = 1; |
| 4451 | spin_unlock(&block_rsv->lock); |
| 4452 | } |
| 4453 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 4454 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 4455 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 4456 | int min_factor) |
| 4457 | { |
| 4458 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 4459 | u64 min_bytes; |
| 4460 | |
| 4461 | if (global_rsv->space_info != dest->space_info) |
| 4462 | return -ENOSPC; |
| 4463 | |
| 4464 | spin_lock(&global_rsv->lock); |
| 4465 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 4466 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 4467 | spin_unlock(&global_rsv->lock); |
| 4468 | return -ENOSPC; |
| 4469 | } |
| 4470 | global_rsv->reserved -= num_bytes; |
| 4471 | if (global_rsv->reserved < global_rsv->size) |
| 4472 | global_rsv->full = 0; |
| 4473 | spin_unlock(&global_rsv->lock); |
| 4474 | |
| 4475 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 4476 | return 0; |
| 4477 | } |
| 4478 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4479 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 4480 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 4481 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4482 | { |
| 4483 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 4484 | |
| 4485 | spin_lock(&block_rsv->lock); |
| 4486 | if (num_bytes == (u64)-1) |
| 4487 | num_bytes = block_rsv->size; |
| 4488 | block_rsv->size -= num_bytes; |
| 4489 | if (block_rsv->reserved >= block_rsv->size) { |
| 4490 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 4491 | block_rsv->reserved = block_rsv->size; |
| 4492 | block_rsv->full = 1; |
| 4493 | } else { |
| 4494 | num_bytes = 0; |
| 4495 | } |
| 4496 | spin_unlock(&block_rsv->lock); |
| 4497 | |
| 4498 | if (num_bytes > 0) { |
| 4499 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 4500 | spin_lock(&dest->lock); |
| 4501 | if (!dest->full) { |
| 4502 | u64 bytes_to_add; |
| 4503 | |
| 4504 | bytes_to_add = dest->size - dest->reserved; |
| 4505 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 4506 | dest->reserved += bytes_to_add; |
| 4507 | if (dest->reserved >= dest->size) |
| 4508 | dest->full = 1; |
| 4509 | num_bytes -= bytes_to_add; |
| 4510 | } |
| 4511 | spin_unlock(&dest->lock); |
| 4512 | } |
| 4513 | if (num_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4514 | spin_lock(&space_info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4515 | space_info->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4516 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4517 | space_info->flags, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4518 | spin_unlock(&space_info->lock); |
| 4519 | } |
| 4520 | } |
| 4521 | } |
| 4522 | |
| 4523 | static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src, |
| 4524 | struct btrfs_block_rsv *dst, u64 num_bytes) |
| 4525 | { |
| 4526 | int ret; |
| 4527 | |
| 4528 | ret = block_rsv_use_bytes(src, num_bytes); |
| 4529 | if (ret) |
| 4530 | return ret; |
| 4531 | |
| 4532 | block_rsv_add_bytes(dst, num_bytes, 1); |
| 4533 | return 0; |
| 4534 | } |
| 4535 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4536 | 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] | 4537 | { |
| 4538 | memset(rsv, 0, sizeof(*rsv)); |
| 4539 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4540 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4541 | } |
| 4542 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4543 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 4544 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4545 | { |
| 4546 | struct btrfs_block_rsv *block_rsv; |
| 4547 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4548 | |
| 4549 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 4550 | if (!block_rsv) |
| 4551 | return NULL; |
| 4552 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4553 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4554 | block_rsv->space_info = __find_space_info(fs_info, |
| 4555 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4556 | return block_rsv; |
| 4557 | } |
| 4558 | |
| 4559 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 4560 | struct btrfs_block_rsv *rsv) |
| 4561 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4562 | if (!rsv) |
| 4563 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4564 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 4565 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4566 | } |
| 4567 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4568 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 4569 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 4570 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4571 | { |
| 4572 | int ret; |
| 4573 | |
| 4574 | if (num_bytes == 0) |
| 4575 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4576 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 4577 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4578 | if (!ret) { |
| 4579 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 4580 | return 0; |
| 4581 | } |
| 4582 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4583 | return ret; |
| 4584 | } |
| 4585 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4586 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4587 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4588 | { |
| 4589 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4590 | int ret = -ENOSPC; |
| 4591 | |
| 4592 | if (!block_rsv) |
| 4593 | return 0; |
| 4594 | |
| 4595 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4596 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 4597 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4598 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4599 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4600 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4601 | return ret; |
| 4602 | } |
| 4603 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4604 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 4605 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 4606 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4607 | { |
| 4608 | u64 num_bytes = 0; |
| 4609 | int ret = -ENOSPC; |
| 4610 | |
| 4611 | if (!block_rsv) |
| 4612 | return 0; |
| 4613 | |
| 4614 | spin_lock(&block_rsv->lock); |
| 4615 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4616 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4617 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4618 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4619 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4620 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4621 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4622 | if (!ret) |
| 4623 | return 0; |
| 4624 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 4625 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4626 | if (!ret) { |
| 4627 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4628 | return 0; |
| 4629 | } |
| 4630 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4631 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4632 | } |
| 4633 | |
| 4634 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv, |
| 4635 | struct btrfs_block_rsv *dst_rsv, |
| 4636 | u64 num_bytes) |
| 4637 | { |
| 4638 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4639 | } |
| 4640 | |
| 4641 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 4642 | struct btrfs_block_rsv *block_rsv, |
| 4643 | u64 num_bytes) |
| 4644 | { |
| 4645 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
| 4646 | if (global_rsv->full || global_rsv == block_rsv || |
| 4647 | block_rsv->space_info != global_rsv->space_info) |
| 4648 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4649 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 4650 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4651 | } |
| 4652 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4653 | /* |
| 4654 | * helper to calculate size of global block reservation. |
| 4655 | * the desired value is sum of space used by extent tree, |
| 4656 | * checksum tree and root tree |
| 4657 | */ |
| 4658 | static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info) |
| 4659 | { |
| 4660 | struct btrfs_space_info *sinfo; |
| 4661 | u64 num_bytes; |
| 4662 | u64 meta_used; |
| 4663 | u64 data_used; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4664 | int csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4665 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4666 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 4667 | spin_lock(&sinfo->lock); |
| 4668 | data_used = sinfo->bytes_used; |
| 4669 | spin_unlock(&sinfo->lock); |
| 4670 | |
| 4671 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4672 | spin_lock(&sinfo->lock); |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4673 | if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4674 | data_used = 0; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4675 | meta_used = sinfo->bytes_used; |
| 4676 | spin_unlock(&sinfo->lock); |
| 4677 | |
| 4678 | num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) * |
| 4679 | csum_size * 2; |
| 4680 | num_bytes += div64_u64(data_used + meta_used, 50); |
| 4681 | |
| 4682 | if (num_bytes * 3 > meta_used) |
Chris Mason | 8e62c2d | 2012-04-12 13:46:48 -0400 | [diff] [blame] | 4683 | num_bytes = div64_u64(meta_used, 3); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4684 | |
| 4685 | return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10); |
| 4686 | } |
| 4687 | |
| 4688 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4689 | { |
| 4690 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 4691 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 4692 | u64 num_bytes; |
| 4693 | |
| 4694 | num_bytes = calc_global_metadata_size(fs_info); |
| 4695 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4696 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4697 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4698 | |
Josef Bacik | fdf30d1 | 2013-03-26 15:31:45 -0400 | [diff] [blame] | 4699 | block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4700 | |
| 4701 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4702 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 4703 | sinfo->bytes_may_use; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4704 | |
| 4705 | if (sinfo->total_bytes > num_bytes) { |
| 4706 | num_bytes = sinfo->total_bytes - num_bytes; |
| 4707 | block_rsv->reserved += num_bytes; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4708 | sinfo->bytes_may_use += num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4709 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4710 | sinfo->flags, num_bytes, 1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4711 | } |
| 4712 | |
| 4713 | if (block_rsv->reserved >= block_rsv->size) { |
| 4714 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4715 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4716 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4717 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4718 | block_rsv->reserved = block_rsv->size; |
| 4719 | block_rsv->full = 1; |
| 4720 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 4721 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4722 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4723 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4724 | } |
| 4725 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4726 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4727 | { |
| 4728 | struct btrfs_space_info *space_info; |
| 4729 | |
| 4730 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4731 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4732 | |
| 4733 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4734 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4735 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4736 | fs_info->trans_block_rsv.space_info = space_info; |
| 4737 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4738 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4739 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4740 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 4741 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 4742 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 4743 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 4744 | if (fs_info->quota_root) |
| 4745 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4746 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4747 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4748 | update_global_block_rsv(fs_info); |
| 4749 | } |
| 4750 | |
| 4751 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4752 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4753 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 4754 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4755 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 4756 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 4757 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 4758 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 4759 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 4760 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4761 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 4762 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4763 | } |
| 4764 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4765 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 4766 | struct btrfs_root *root) |
| 4767 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4768 | if (!trans->block_rsv) |
| 4769 | return; |
| 4770 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4771 | if (!trans->bytes_reserved) |
| 4772 | return; |
| 4773 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 4774 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4775 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 4776 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4777 | trans->bytes_reserved = 0; |
| 4778 | } |
| 4779 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4780 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4781 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 4782 | struct inode *inode) |
| 4783 | { |
| 4784 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4785 | struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root); |
| 4786 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 4787 | |
| 4788 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4789 | * We need to hold space in order to delete our orphan item once we've |
| 4790 | * added it, so this takes the reservation so we can release it later |
| 4791 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4792 | */ |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4793 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4794 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4795 | btrfs_ino(inode), num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4796 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4797 | } |
| 4798 | |
| 4799 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 4800 | { |
| 4801 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4802 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4803 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4804 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4805 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 4806 | } |
| 4807 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4808 | /* |
| 4809 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 4810 | * root: the root of the parent directory |
| 4811 | * rsv: block reservation |
| 4812 | * items: the number of items that we need do reservation |
| 4813 | * qgroup_reserved: used to return the reserved size in qgroup |
| 4814 | * |
| 4815 | * This function is used to reserve the space for snapshot/subvolume |
| 4816 | * creation and deletion. Those operations are different with the |
| 4817 | * common file/directory operations, they change two fs/file trees |
| 4818 | * and root tree, the number of items that the qgroup reserves is |
| 4819 | * different with the free space reservation. So we can not use |
| 4820 | * the space reseravtion mechanism in start_transaction(). |
| 4821 | */ |
| 4822 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 4823 | struct btrfs_block_rsv *rsv, |
| 4824 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4825 | u64 *qgroup_reserved, |
| 4826 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4827 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4828 | u64 num_bytes; |
| 4829 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4830 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4831 | |
| 4832 | if (root->fs_info->quota_enabled) { |
| 4833 | /* One for parent inode, two for dir entries */ |
| 4834 | num_bytes = 3 * root->leafsize; |
| 4835 | ret = btrfs_qgroup_reserve(root, num_bytes); |
| 4836 | if (ret) |
| 4837 | return ret; |
| 4838 | } else { |
| 4839 | num_bytes = 0; |
| 4840 | } |
| 4841 | |
| 4842 | *qgroup_reserved = num_bytes; |
| 4843 | |
| 4844 | num_bytes = btrfs_calc_trans_metadata_size(root, items); |
| 4845 | rsv->space_info = __find_space_info(root->fs_info, |
| 4846 | BTRFS_BLOCK_GROUP_METADATA); |
| 4847 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 4848 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4849 | |
| 4850 | if (ret == -ENOSPC && use_global_rsv) |
| 4851 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes); |
| 4852 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4853 | if (ret) { |
| 4854 | if (*qgroup_reserved) |
| 4855 | btrfs_qgroup_free(root, *qgroup_reserved); |
| 4856 | } |
| 4857 | |
| 4858 | return ret; |
| 4859 | } |
| 4860 | |
| 4861 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 4862 | struct btrfs_block_rsv *rsv, |
| 4863 | u64 qgroup_reserved) |
| 4864 | { |
| 4865 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 4866 | if (qgroup_reserved) |
| 4867 | btrfs_qgroup_free(root, qgroup_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4868 | } |
| 4869 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 4870 | /** |
| 4871 | * drop_outstanding_extent - drop an outstanding extent |
| 4872 | * @inode: the inode we're dropping the extent for |
| 4873 | * |
| 4874 | * This is called when we are freeing up an outstanding extent, either called |
| 4875 | * after an error or after an extent is written. This will return the number of |
| 4876 | * reserved extents that need to be freed. This must be called with |
| 4877 | * BTRFS_I(inode)->lock held. |
| 4878 | */ |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4879 | static unsigned drop_outstanding_extent(struct inode *inode) |
| 4880 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4881 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4882 | unsigned dropped_extents = 0; |
| 4883 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4884 | BUG_ON(!BTRFS_I(inode)->outstanding_extents); |
| 4885 | BTRFS_I(inode)->outstanding_extents--; |
| 4886 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4887 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 4888 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 4889 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4890 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4891 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4892 | /* |
| 4893 | * If we have more or the same amount of outsanding extents than we have |
| 4894 | * reserved then we need to leave the reserved extents count alone. |
| 4895 | */ |
| 4896 | if (BTRFS_I(inode)->outstanding_extents >= |
| 4897 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4898 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4899 | |
| 4900 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 4901 | BTRFS_I(inode)->outstanding_extents; |
| 4902 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4903 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4904 | } |
| 4905 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 4906 | /** |
| 4907 | * calc_csum_metadata_size - return the amount of metada space that must be |
| 4908 | * reserved/free'd for the given bytes. |
| 4909 | * @inode: the inode we're manipulating |
| 4910 | * @num_bytes: the number of bytes in question |
| 4911 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 4912 | * |
| 4913 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 4914 | * correct amount of metadata that must either be reserved or freed. We |
| 4915 | * calculate how many checksums we can fit into one leaf and then divide the |
| 4916 | * number of bytes that will need to be checksumed by this value to figure out |
| 4917 | * how many checksums will be required. If we are adding bytes then the number |
| 4918 | * may go up and we will return the number of additional bytes that must be |
| 4919 | * reserved. If it is going down we will return the number of bytes that must |
| 4920 | * be freed. |
| 4921 | * |
| 4922 | * This must be called with BTRFS_I(inode)->lock held. |
| 4923 | */ |
| 4924 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 4925 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4926 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 4927 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4928 | u64 csum_size; |
| 4929 | int num_csums_per_leaf; |
| 4930 | int num_csums; |
| 4931 | int old_csums; |
| 4932 | |
| 4933 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 4934 | BTRFS_I(inode)->csum_bytes == 0) |
| 4935 | return 0; |
| 4936 | |
| 4937 | old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 4938 | if (reserve) |
| 4939 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 4940 | else |
| 4941 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
| 4942 | csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item); |
| 4943 | num_csums_per_leaf = (int)div64_u64(csum_size, |
| 4944 | sizeof(struct btrfs_csum_item) + |
| 4945 | sizeof(struct btrfs_disk_key)); |
| 4946 | num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 4947 | num_csums = num_csums + num_csums_per_leaf - 1; |
| 4948 | num_csums = num_csums / num_csums_per_leaf; |
| 4949 | |
| 4950 | old_csums = old_csums + num_csums_per_leaf - 1; |
| 4951 | old_csums = old_csums / num_csums_per_leaf; |
| 4952 | |
| 4953 | /* No change, no need to reserve more */ |
| 4954 | if (old_csums == num_csums) |
| 4955 | return 0; |
| 4956 | |
| 4957 | if (reserve) |
| 4958 | return btrfs_calc_trans_metadata_size(root, |
| 4959 | num_csums - old_csums); |
| 4960 | |
| 4961 | return btrfs_calc_trans_metadata_size(root, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4962 | } |
| 4963 | |
| 4964 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 4965 | { |
| 4966 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4967 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4968 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 4969 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4970 | unsigned nr_extents = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 4971 | int extra_reserve = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4972 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 4973 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4974 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 4975 | u64 to_free = 0; |
| 4976 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4977 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4978 | /* If we are a free space inode we need to not flush since we will be in |
| 4979 | * the middle of a transaction commit. We also don't need the delalloc |
| 4980 | * mutex since we won't race with anybody. We need this mostly to make |
| 4981 | * lockdep shut its filthy mouth. |
| 4982 | */ |
| 4983 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4984 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4985 | delalloc_lock = false; |
| 4986 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 4987 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4988 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 4989 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4990 | schedule_timeout(1); |
| 4991 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4992 | if (delalloc_lock) |
| 4993 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 4994 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4995 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4996 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4997 | spin_lock(&BTRFS_I(inode)->lock); |
| 4998 | BTRFS_I(inode)->outstanding_extents++; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 4999 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5000 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5001 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5002 | nr_extents = BTRFS_I(inode)->outstanding_extents - |
| 5003 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5004 | |
| 5005 | /* |
| 5006 | * Add an item to reserve for updating the inode when we complete the |
| 5007 | * delalloc io. |
| 5008 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5009 | if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5010 | &BTRFS_I(inode)->runtime_flags)) { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5011 | nr_extents++; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5012 | extra_reserve = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5013 | } |
| 5014 | |
| 5015 | to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5016 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5017 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5018 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5019 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5020 | if (root->fs_info->quota_enabled) { |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5021 | ret = btrfs_qgroup_reserve(root, num_bytes + |
| 5022 | nr_extents * root->leafsize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5023 | if (ret) |
| 5024 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5025 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5026 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5027 | ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush); |
| 5028 | if (unlikely(ret)) { |
| 5029 | if (root->fs_info->quota_enabled) |
Miao Xie | 4b5829a | 2012-12-05 10:53:25 +0000 | [diff] [blame] | 5030 | btrfs_qgroup_free(root, num_bytes + |
| 5031 | nr_extents * root->leafsize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5032 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5033 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5034 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5035 | spin_lock(&BTRFS_I(inode)->lock); |
| 5036 | if (extra_reserve) { |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5037 | set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5038 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5039 | nr_extents--; |
| 5040 | } |
| 5041 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 5042 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5043 | |
| 5044 | if (delalloc_lock) |
| 5045 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5046 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5047 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 5048 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5049 | btrfs_ino(inode), to_reserve, 1); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5050 | block_rsv_add_bytes(block_rsv, to_reserve, 1); |
| 5051 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5052 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5053 | |
| 5054 | out_fail: |
| 5055 | spin_lock(&BTRFS_I(inode)->lock); |
| 5056 | dropped = drop_outstanding_extent(inode); |
| 5057 | /* |
| 5058 | * If the inodes csum_bytes is the same as the original |
| 5059 | * csum_bytes then we know we haven't raced with any free()ers |
| 5060 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5061 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5062 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5063 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5064 | } else { |
| 5065 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 5066 | u64 bytes; |
| 5067 | |
| 5068 | /* |
| 5069 | * This is tricky, but first we need to figure out how much we |
| 5070 | * free'd from any free-ers that occured during this |
| 5071 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 5072 | * before we dropped our lock, and then call the free for the |
| 5073 | * number of bytes that were freed while we were trying our |
| 5074 | * reservation. |
| 5075 | */ |
| 5076 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 5077 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 5078 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 5079 | |
| 5080 | |
| 5081 | /* |
| 5082 | * Now we need to see how much we would have freed had we not |
| 5083 | * been making this reservation and our ->csum_bytes were not |
| 5084 | * artificially inflated. |
| 5085 | */ |
| 5086 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 5087 | bytes = csum_bytes - orig_csum_bytes; |
| 5088 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 5089 | |
| 5090 | /* |
| 5091 | * Now reset ->csum_bytes to what it should be. If bytes is |
| 5092 | * more than to_free then we would have free'd more space had we |
| 5093 | * not had an artificially high ->csum_bytes, so we need to free |
| 5094 | * the remainder. If bytes is the same or less then we don't |
| 5095 | * need to do anything, the other free-ers did the correct |
| 5096 | * thing. |
| 5097 | */ |
| 5098 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 5099 | if (bytes > to_free) |
| 5100 | to_free = bytes - to_free; |
| 5101 | else |
| 5102 | to_free = 0; |
| 5103 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5104 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5105 | if (dropped) |
| 5106 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
| 5107 | |
| 5108 | if (to_free) { |
| 5109 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 5110 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5111 | btrfs_ino(inode), to_free, 0); |
| 5112 | } |
| 5113 | if (delalloc_lock) |
| 5114 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 5115 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5116 | } |
| 5117 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5118 | /** |
| 5119 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 5120 | * @inode: the inode to release the reservation for |
| 5121 | * @num_bytes: the number of bytes we're releasing |
| 5122 | * |
| 5123 | * This will release the metadata reservation for an inode. This can be called |
| 5124 | * once we complete IO for a given set of bytes to release their metadata |
| 5125 | * reservations. |
| 5126 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5127 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 5128 | { |
| 5129 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5130 | u64 to_free = 0; |
| 5131 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5132 | |
| 5133 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5134 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5135 | dropped = drop_outstanding_extent(inode); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5136 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 5137 | if (num_bytes) |
| 5138 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5139 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5140 | if (dropped > 0) |
| 5141 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5142 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5143 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5144 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5145 | if (root->fs_info->quota_enabled) { |
| 5146 | btrfs_qgroup_free(root, num_bytes + |
| 5147 | dropped * root->leafsize); |
| 5148 | } |
| 5149 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5150 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 5151 | to_free); |
| 5152 | } |
| 5153 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5154 | /** |
| 5155 | * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc |
| 5156 | * @inode: inode we're writing to |
| 5157 | * @num_bytes: the number of bytes we want to allocate |
| 5158 | * |
| 5159 | * This will do the following things |
| 5160 | * |
| 5161 | * o reserve space in the data space info for num_bytes |
| 5162 | * o reserve space in the metadata space info based on number of outstanding |
| 5163 | * extents and how much csums will be needed |
| 5164 | * o add to the inodes ->delalloc_bytes |
| 5165 | * o add it to the fs_info's delalloc inodes list. |
| 5166 | * |
| 5167 | * This will return 0 for success and -ENOSPC if there is no space left. |
| 5168 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5169 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes) |
| 5170 | { |
| 5171 | int ret; |
| 5172 | |
| 5173 | ret = btrfs_check_data_free_space(inode, num_bytes); |
| 5174 | if (ret) |
| 5175 | return ret; |
| 5176 | |
| 5177 | ret = btrfs_delalloc_reserve_metadata(inode, num_bytes); |
| 5178 | if (ret) { |
| 5179 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5180 | return ret; |
| 5181 | } |
| 5182 | |
| 5183 | return 0; |
| 5184 | } |
| 5185 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5186 | /** |
| 5187 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
| 5188 | * @inode: inode we're releasing space for |
| 5189 | * @num_bytes: the number of bytes we want to free up |
| 5190 | * |
| 5191 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 5192 | * called in the case that we don't need the metadata AND data reservations |
| 5193 | * anymore. So if there is an error or we insert an inline extent. |
| 5194 | * |
| 5195 | * This function will release the metadata space that was not used and will |
| 5196 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 5197 | * list if there are no delalloc bytes left. |
| 5198 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5199 | void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes) |
| 5200 | { |
| 5201 | btrfs_delalloc_release_metadata(inode, num_bytes); |
| 5202 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5203 | } |
| 5204 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 5205 | static int update_block_group(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5206 | u64 bytenr, u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5207 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5208 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5209 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5210 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5211 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5212 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5213 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 5214 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5215 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5216 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5217 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5218 | if (alloc) |
| 5219 | old_val += num_bytes; |
| 5220 | else |
| 5221 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5222 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5223 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5224 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5225 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5226 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5227 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5228 | return -ENOENT; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5229 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 5230 | BTRFS_BLOCK_GROUP_RAID1 | |
| 5231 | BTRFS_BLOCK_GROUP_RAID10)) |
| 5232 | factor = 2; |
| 5233 | else |
| 5234 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 5235 | /* |
| 5236 | * If this block group has free space cache written out, we |
| 5237 | * need to make sure to load it if we are removing space. This |
| 5238 | * is because we need the unpinning stage to actually add the |
| 5239 | * space back to the block group, otherwise we will leak space. |
| 5240 | */ |
| 5241 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5242 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5243 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5244 | byte_in_group = bytenr - cache->key.objectid; |
| 5245 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5246 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5247 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5248 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5249 | |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 5250 | if (btrfs_test_opt(root, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5251 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 5252 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 5253 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5254 | cache->dirty = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5255 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5256 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5257 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5258 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5259 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5260 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5261 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5262 | cache->space_info->bytes_used += num_bytes; |
| 5263 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5264 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5265 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5266 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5267 | old_val -= num_bytes; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5268 | btrfs_set_block_group_used(&cache->item, old_val); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5269 | cache->pinned += num_bytes; |
| 5270 | cache->space_info->bytes_pinned += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5271 | cache->space_info->bytes_used -= num_bytes; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5272 | cache->space_info->disk_used -= num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5273 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5274 | spin_unlock(&cache->space_info->lock); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5275 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5276 | set_extent_dirty(info->pinned_extents, |
| 5277 | bytenr, bytenr + num_bytes - 1, |
| 5278 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5279 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5280 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5281 | total -= num_bytes; |
| 5282 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5283 | } |
| 5284 | return 0; |
| 5285 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 5286 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5287 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 5288 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5289 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5290 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5291 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 5292 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 5293 | bytenr = root->fs_info->first_logical_byte; |
| 5294 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 5295 | |
| 5296 | if (bytenr < (u64)-1) |
| 5297 | return bytenr; |
| 5298 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5299 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 5300 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5301 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5302 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5303 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5304 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5305 | |
| 5306 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5307 | } |
| 5308 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5309 | static int pin_down_extent(struct btrfs_root *root, |
| 5310 | struct btrfs_block_group_cache *cache, |
| 5311 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5312 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5313 | spin_lock(&cache->space_info->lock); |
| 5314 | spin_lock(&cache->lock); |
| 5315 | cache->pinned += num_bytes; |
| 5316 | cache->space_info->bytes_pinned += num_bytes; |
| 5317 | if (reserved) { |
| 5318 | cache->reserved -= num_bytes; |
| 5319 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5320 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5321 | spin_unlock(&cache->lock); |
| 5322 | spin_unlock(&cache->space_info->lock); |
| 5323 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5324 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 5325 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 5326 | if (reserved) |
| 5327 | trace_btrfs_reserved_extent_free(root, bytenr, num_bytes); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5328 | return 0; |
| 5329 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5330 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5331 | /* |
| 5332 | * this function must be called within transaction |
| 5333 | */ |
| 5334 | int btrfs_pin_extent(struct btrfs_root *root, |
| 5335 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5336 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5337 | struct btrfs_block_group_cache *cache; |
| 5338 | |
| 5339 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5340 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5341 | |
| 5342 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 5343 | |
| 5344 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5345 | return 0; |
| 5346 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5347 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5348 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5349 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5350 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 5351 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5352 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5353 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5354 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5355 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5356 | |
| 5357 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5358 | if (!cache) |
| 5359 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5360 | |
| 5361 | /* |
| 5362 | * pull in the free space cache (if any) so that our pin |
| 5363 | * removes the free space from the cache. We have load_only set |
| 5364 | * to one because the slow code to read in the free extents does check |
| 5365 | * the pinned extents. |
| 5366 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5367 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5368 | |
| 5369 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 5370 | |
| 5371 | /* 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] | 5372 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5373 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5374 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5375 | } |
| 5376 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 5377 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 5378 | { |
| 5379 | int ret; |
| 5380 | struct btrfs_block_group_cache *block_group; |
| 5381 | struct btrfs_caching_control *caching_ctl; |
| 5382 | |
| 5383 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 5384 | if (!block_group) |
| 5385 | return -EINVAL; |
| 5386 | |
| 5387 | cache_block_group(block_group, 0); |
| 5388 | caching_ctl = get_caching_control(block_group); |
| 5389 | |
| 5390 | if (!caching_ctl) { |
| 5391 | /* Logic error */ |
| 5392 | BUG_ON(!block_group_cache_done(block_group)); |
| 5393 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 5394 | } else { |
| 5395 | mutex_lock(&caching_ctl->mutex); |
| 5396 | |
| 5397 | if (start >= caching_ctl->progress) { |
| 5398 | ret = add_excluded_extent(root, start, num_bytes); |
| 5399 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 5400 | ret = btrfs_remove_free_space(block_group, |
| 5401 | start, num_bytes); |
| 5402 | } else { |
| 5403 | num_bytes = caching_ctl->progress - start; |
| 5404 | ret = btrfs_remove_free_space(block_group, |
| 5405 | start, num_bytes); |
| 5406 | if (ret) |
| 5407 | goto out_lock; |
| 5408 | |
| 5409 | num_bytes = (start + num_bytes) - |
| 5410 | caching_ctl->progress; |
| 5411 | start = caching_ctl->progress; |
| 5412 | ret = add_excluded_extent(root, start, num_bytes); |
| 5413 | } |
| 5414 | out_lock: |
| 5415 | mutex_unlock(&caching_ctl->mutex); |
| 5416 | put_caching_control(caching_ctl); |
| 5417 | } |
| 5418 | btrfs_put_block_group(block_group); |
| 5419 | return ret; |
| 5420 | } |
| 5421 | |
| 5422 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 5423 | struct extent_buffer *eb) |
| 5424 | { |
| 5425 | struct btrfs_file_extent_item *item; |
| 5426 | struct btrfs_key key; |
| 5427 | int found_type; |
| 5428 | int i; |
| 5429 | |
| 5430 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 5431 | return 0; |
| 5432 | |
| 5433 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 5434 | btrfs_item_key_to_cpu(eb, &key, i); |
| 5435 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 5436 | continue; |
| 5437 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 5438 | found_type = btrfs_file_extent_type(eb, item); |
| 5439 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 5440 | continue; |
| 5441 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 5442 | continue; |
| 5443 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 5444 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 5445 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 5446 | } |
| 5447 | |
| 5448 | return 0; |
| 5449 | } |
| 5450 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5451 | /** |
| 5452 | * btrfs_update_reserved_bytes - update the block_group and space info counters |
| 5453 | * @cache: The cache we are manipulating |
| 5454 | * @num_bytes: The number of bytes in question |
| 5455 | * @reserve: One of the reservation enums |
| 5456 | * |
| 5457 | * This is called by the allocator when it reserves space, or by somebody who is |
| 5458 | * freeing space that was never actually used on disk. For example if you |
| 5459 | * reserve some space for a new leaf in transaction A and before transaction A |
| 5460 | * commits you free that leaf, you call this with reserve set to 0 in order to |
| 5461 | * clear the reservation. |
| 5462 | * |
| 5463 | * Metadata reservations should be called with RESERVE_ALLOC so we do the proper |
| 5464 | * ENOSPC accounting. For data we handle the reservation through clearing the |
| 5465 | * delalloc bits in the io_tree. We have to do this since we could end up |
| 5466 | * allocating less disk space for the amount of data we have reserved in the |
| 5467 | * case of compression. |
| 5468 | * |
| 5469 | * If this is a reservation and the block group has become read only we cannot |
| 5470 | * make the reservation and return -EAGAIN, otherwise this function always |
| 5471 | * succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5472 | */ |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5473 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 5474 | u64 num_bytes, int reserve) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5475 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5476 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5477 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5478 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5479 | spin_lock(&space_info->lock); |
| 5480 | spin_lock(&cache->lock); |
| 5481 | if (reserve != RESERVE_FREE) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5482 | if (cache->ro) { |
| 5483 | ret = -EAGAIN; |
| 5484 | } else { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5485 | cache->reserved += num_bytes; |
| 5486 | space_info->bytes_reserved += num_bytes; |
| 5487 | if (reserve == RESERVE_ALLOC) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5488 | trace_btrfs_space_reservation(cache->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5489 | "space_info", space_info->flags, |
| 5490 | num_bytes, 0); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5491 | space_info->bytes_may_use -= num_bytes; |
| 5492 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5493 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5494 | } else { |
| 5495 | if (cache->ro) |
| 5496 | space_info->bytes_readonly += num_bytes; |
| 5497 | cache->reserved -= num_bytes; |
| 5498 | space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5499 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5500 | spin_unlock(&cache->lock); |
| 5501 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5502 | return ret; |
| 5503 | } |
| 5504 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 5505 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5506 | struct btrfs_root *root) |
| 5507 | { |
| 5508 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5509 | struct btrfs_caching_control *next; |
| 5510 | struct btrfs_caching_control *caching_ctl; |
| 5511 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5512 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5513 | |
| 5514 | down_write(&fs_info->extent_commit_sem); |
| 5515 | |
| 5516 | list_for_each_entry_safe(caching_ctl, next, |
| 5517 | &fs_info->caching_block_groups, list) { |
| 5518 | cache = caching_ctl->block_group; |
| 5519 | if (block_group_cache_done(cache)) { |
| 5520 | cache->last_byte_to_unpin = (u64)-1; |
| 5521 | list_del_init(&caching_ctl->list); |
| 5522 | put_caching_control(caching_ctl); |
| 5523 | } else { |
| 5524 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 5525 | } |
| 5526 | } |
| 5527 | |
| 5528 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5529 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 5530 | else |
| 5531 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 5532 | |
| 5533 | up_write(&fs_info->extent_commit_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5534 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5535 | list_for_each_entry_rcu(space_info, &fs_info->space_info, list) |
| 5536 | percpu_counter_set(&space_info->total_bytes_pinned, 0); |
| 5537 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5538 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5539 | } |
| 5540 | |
| 5541 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 5542 | { |
| 5543 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5544 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5545 | struct btrfs_space_info *space_info; |
| 5546 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5547 | u64 len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5548 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5549 | |
| 5550 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5551 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5552 | if (!cache || |
| 5553 | start >= cache->key.objectid + cache->key.offset) { |
| 5554 | if (cache) |
| 5555 | btrfs_put_block_group(cache); |
| 5556 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5557 | BUG_ON(!cache); /* Logic error */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5558 | } |
| 5559 | |
| 5560 | len = cache->key.objectid + cache->key.offset - start; |
| 5561 | len = min(len, end + 1 - start); |
| 5562 | |
| 5563 | if (start < cache->last_byte_to_unpin) { |
| 5564 | len = min(len, cache->last_byte_to_unpin - start); |
| 5565 | btrfs_add_free_space(cache, start, len); |
| 5566 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5567 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5568 | start += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5569 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5570 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5571 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5572 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5573 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5574 | space_info->bytes_pinned -= len; |
| 5575 | if (cache->ro) { |
| 5576 | space_info->bytes_readonly += len; |
| 5577 | readonly = true; |
| 5578 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5579 | spin_unlock(&cache->lock); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5580 | if (!readonly && global_rsv->space_info == space_info) { |
| 5581 | spin_lock(&global_rsv->lock); |
| 5582 | if (!global_rsv->full) { |
| 5583 | len = min(len, global_rsv->size - |
| 5584 | global_rsv->reserved); |
| 5585 | global_rsv->reserved += len; |
| 5586 | space_info->bytes_may_use += len; |
| 5587 | if (global_rsv->reserved >= global_rsv->size) |
| 5588 | global_rsv->full = 1; |
| 5589 | } |
| 5590 | spin_unlock(&global_rsv->lock); |
| 5591 | } |
| 5592 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5593 | } |
| 5594 | |
| 5595 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5596 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 5597 | return 0; |
| 5598 | } |
| 5599 | |
| 5600 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5601 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5602 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5603 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5604 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5605 | u64 start; |
| 5606 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5607 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5608 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5609 | if (trans->aborted) |
| 5610 | return 0; |
| 5611 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5612 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5613 | unpin = &fs_info->freed_extents[1]; |
| 5614 | else |
| 5615 | unpin = &fs_info->freed_extents[0]; |
| 5616 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5617 | while (1) { |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5618 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 5619 | EXTENT_DIRTY, NULL); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5620 | if (ret) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5621 | break; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5622 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 5623 | if (btrfs_test_opt(root, DISCARD)) |
| 5624 | ret = btrfs_discard_extent(root, start, |
| 5625 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5626 | |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5627 | clear_extent_dirty(unpin, start, end, GFP_NOFS); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5628 | unpin_extent_range(root, start, end); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5629 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5630 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 5631 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 5632 | return 0; |
| 5633 | } |
| 5634 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5635 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 5636 | u64 owner, u64 root_objectid) |
| 5637 | { |
| 5638 | struct btrfs_space_info *space_info; |
| 5639 | u64 flags; |
| 5640 | |
| 5641 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 5642 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 5643 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 5644 | else |
| 5645 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 5646 | } else { |
| 5647 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 5648 | } |
| 5649 | |
| 5650 | space_info = __find_space_info(fs_info, flags); |
| 5651 | BUG_ON(!space_info); /* Logic bug */ |
| 5652 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 5653 | } |
| 5654 | |
| 5655 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5656 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 5657 | struct btrfs_root *root, |
| 5658 | u64 bytenr, u64 num_bytes, u64 parent, |
| 5659 | u64 root_objectid, u64 owner_objectid, |
| 5660 | u64 owner_offset, int refs_to_drop, |
| 5661 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5662 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 5663 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5664 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 5665 | struct btrfs_fs_info *info = root->fs_info; |
| 5666 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5667 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5668 | struct btrfs_extent_item *ei; |
| 5669 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5670 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5671 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5672 | int extent_slot = 0; |
| 5673 | int found_extent = 0; |
| 5674 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5675 | u32 item_size; |
| 5676 | u64 refs; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5677 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 5678 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 5679 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 5680 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 5681 | if (!path) |
| 5682 | return -ENOMEM; |
| 5683 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 5684 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5685 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5686 | |
| 5687 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 5688 | BUG_ON(!is_data && refs_to_drop != 1); |
| 5689 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5690 | if (is_data) |
| 5691 | skinny_metadata = 0; |
| 5692 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5693 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 5694 | bytenr, num_bytes, parent, |
| 5695 | root_objectid, owner_objectid, |
| 5696 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5697 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5698 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5699 | while (extent_slot >= 0) { |
| 5700 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5701 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5702 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5703 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5704 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5705 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5706 | found_extent = 1; |
| 5707 | break; |
| 5708 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5709 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 5710 | key.offset == owner_objectid) { |
| 5711 | found_extent = 1; |
| 5712 | break; |
| 5713 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5714 | if (path->slots[0] - extent_slot > 5) |
| 5715 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5716 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5717 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5718 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5719 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 5720 | if (found_extent && item_size < sizeof(*ei)) |
| 5721 | found_extent = 0; |
| 5722 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5723 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5724 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 5725 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5726 | NULL, refs_to_drop, |
| 5727 | is_data); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5728 | if (ret) { |
| 5729 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5730 | goto out; |
| 5731 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5732 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5733 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5734 | |
| 5735 | key.objectid = bytenr; |
| 5736 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5737 | key.offset = num_bytes; |
| 5738 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5739 | if (!is_data && skinny_metadata) { |
| 5740 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 5741 | key.offset = owner_objectid; |
| 5742 | } |
| 5743 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5744 | ret = btrfs_search_slot(trans, extent_root, |
| 5745 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5746 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 5747 | /* |
| 5748 | * Couldn't find our skinny metadata item, |
| 5749 | * see if we have ye olde extent item. |
| 5750 | */ |
| 5751 | path->slots[0]--; |
| 5752 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 5753 | path->slots[0]); |
| 5754 | if (key.objectid == bytenr && |
| 5755 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5756 | key.offset == num_bytes) |
| 5757 | ret = 0; |
| 5758 | } |
| 5759 | |
| 5760 | if (ret > 0 && skinny_metadata) { |
| 5761 | skinny_metadata = false; |
| 5762 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5763 | key.offset = num_bytes; |
| 5764 | btrfs_release_path(path); |
| 5765 | ret = btrfs_search_slot(trans, extent_root, |
| 5766 | &key, path, -1, 1); |
| 5767 | } |
| 5768 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5769 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5770 | 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] | 5771 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 5772 | if (ret > 0) |
| 5773 | btrfs_print_leaf(extent_root, |
| 5774 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5775 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5776 | if (ret < 0) { |
| 5777 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5778 | goto out; |
| 5779 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5780 | extent_slot = path->slots[0]; |
| 5781 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 5782 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5783 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5784 | btrfs_err(info, |
| 5785 | "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] | 5786 | bytenr, parent, root_objectid, owner_objectid, |
| 5787 | owner_offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5788 | } else { |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5789 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5790 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5791 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5792 | |
| 5793 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5794 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 5795 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5796 | if (item_size < sizeof(*ei)) { |
| 5797 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 5798 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 5799 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5800 | if (ret < 0) { |
| 5801 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5802 | goto out; |
| 5803 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5804 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5805 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5806 | path->leave_spinning = 1; |
| 5807 | |
| 5808 | key.objectid = bytenr; |
| 5809 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5810 | key.offset = num_bytes; |
| 5811 | |
| 5812 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 5813 | -1, 1); |
| 5814 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5815 | 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] | 5816 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5817 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 5818 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5819 | if (ret < 0) { |
| 5820 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5821 | goto out; |
| 5822 | } |
| 5823 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5824 | extent_slot = path->slots[0]; |
| 5825 | leaf = path->nodes[0]; |
| 5826 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 5827 | } |
| 5828 | #endif |
| 5829 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5830 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 5831 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5832 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 5833 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5834 | struct btrfs_tree_block_info *bi; |
| 5835 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 5836 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 5837 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5838 | } |
| 5839 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5840 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 5841 | if (refs < refs_to_drop) { |
| 5842 | btrfs_err(info, "trying to drop %d refs but we only have %Lu " |
| 5843 | "for bytenr %Lu\n", refs_to_drop, refs, bytenr); |
| 5844 | ret = -EINVAL; |
| 5845 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5846 | goto out; |
| 5847 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5848 | refs -= refs_to_drop; |
| 5849 | |
| 5850 | if (refs > 0) { |
| 5851 | if (extent_op) |
| 5852 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 5853 | /* |
| 5854 | * In the case of inline back ref, reference count will |
| 5855 | * be updated by remove_extent_backref |
| 5856 | */ |
| 5857 | if (iref) { |
| 5858 | BUG_ON(!found_extent); |
| 5859 | } else { |
| 5860 | btrfs_set_extent_refs(leaf, ei, refs); |
| 5861 | btrfs_mark_buffer_dirty(leaf); |
| 5862 | } |
| 5863 | if (found_extent) { |
| 5864 | ret = remove_extent_backref(trans, extent_root, path, |
| 5865 | iref, refs_to_drop, |
| 5866 | is_data); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5867 | if (ret) { |
| 5868 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5869 | goto out; |
| 5870 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5871 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5872 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 5873 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5874 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5875 | if (found_extent) { |
| 5876 | BUG_ON(is_data && refs_to_drop != |
| 5877 | extent_data_ref_count(root, path, iref)); |
| 5878 | if (iref) { |
| 5879 | BUG_ON(path->slots[0] != extent_slot); |
| 5880 | } else { |
| 5881 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 5882 | path->slots[0] = extent_slot; |
| 5883 | num_to_del = 2; |
| 5884 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 5885 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5886 | |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5887 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 5888 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5889 | if (ret) { |
| 5890 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5891 | goto out; |
| 5892 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5893 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 5894 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5895 | if (is_data) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 5896 | ret = btrfs_del_csums(trans, root, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5897 | if (ret) { |
| 5898 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5899 | goto out; |
| 5900 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 5901 | } |
| 5902 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 5903 | ret = update_block_group(root, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5904 | if (ret) { |
| 5905 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5906 | goto out; |
| 5907 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5908 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5909 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 5910 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5911 | return ret; |
| 5912 | } |
| 5913 | |
| 5914 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5915 | * 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] | 5916 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 5917 | * a given extent, and if there are no other delayed refs to be processed, it |
| 5918 | * removes it from the tree. |
| 5919 | */ |
| 5920 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 5921 | struct btrfs_root *root, u64 bytenr) |
| 5922 | { |
| 5923 | struct btrfs_delayed_ref_head *head; |
| 5924 | struct btrfs_delayed_ref_root *delayed_refs; |
| 5925 | struct btrfs_delayed_ref_node *ref; |
| 5926 | struct rb_node *node; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5927 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5928 | |
| 5929 | delayed_refs = &trans->transaction->delayed_refs; |
| 5930 | spin_lock(&delayed_refs->lock); |
| 5931 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 5932 | if (!head) |
| 5933 | goto out; |
| 5934 | |
| 5935 | node = rb_prev(&head->node.rb_node); |
| 5936 | if (!node) |
| 5937 | goto out; |
| 5938 | |
| 5939 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
| 5940 | |
| 5941 | /* there are still entries for this ref, we can't drop it */ |
| 5942 | if (ref->bytenr == bytenr) |
| 5943 | goto out; |
| 5944 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5945 | if (head->extent_op) { |
| 5946 | if (!head->must_insert_reserved) |
| 5947 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 5948 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5949 | head->extent_op = NULL; |
| 5950 | } |
| 5951 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5952 | /* |
| 5953 | * waiting for the lock here would deadlock. If someone else has it |
| 5954 | * locked they are already in the process of dropping it anyway |
| 5955 | */ |
| 5956 | if (!mutex_trylock(&head->mutex)) |
| 5957 | goto out; |
| 5958 | |
| 5959 | /* |
| 5960 | * at this point we have a head with no other entries. Go |
| 5961 | * ahead and process it. |
| 5962 | */ |
| 5963 | head->node.in_tree = 0; |
| 5964 | rb_erase(&head->node.rb_node, &delayed_refs->root); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame^] | 5965 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 5966 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5967 | delayed_refs->num_entries--; |
| 5968 | |
| 5969 | /* |
| 5970 | * we don't take a ref on the node because we're removing it from the |
| 5971 | * tree, so we just steal the ref the tree was holding. |
| 5972 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 5973 | delayed_refs->num_heads--; |
| 5974 | if (list_empty(&head->cluster)) |
| 5975 | delayed_refs->num_heads_ready--; |
| 5976 | |
| 5977 | list_del_init(&head->cluster); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5978 | spin_unlock(&delayed_refs->lock); |
| 5979 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5980 | BUG_ON(head->extent_op); |
| 5981 | if (head->must_insert_reserved) |
| 5982 | ret = 1; |
| 5983 | |
| 5984 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5985 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5986 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5987 | out: |
| 5988 | spin_unlock(&delayed_refs->lock); |
| 5989 | return 0; |
| 5990 | } |
| 5991 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5992 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 5993 | struct btrfs_root *root, |
| 5994 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 5995 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5996 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5997 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5998 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5999 | int ret; |
| 6000 | |
| 6001 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6002 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 6003 | buf->start, buf->len, |
| 6004 | parent, root->root_key.objectid, |
| 6005 | btrfs_header_level(buf), |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6006 | BTRFS_DROP_DELAYED_REF, NULL, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6007 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6008 | } |
| 6009 | |
| 6010 | if (!last_ref) |
| 6011 | return; |
| 6012 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6013 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6014 | |
| 6015 | if (btrfs_header_generation(buf) == trans->transid) { |
| 6016 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 6017 | ret = check_ref_cleanup(trans, root, buf->start); |
| 6018 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6019 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6020 | } |
| 6021 | |
| 6022 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 6023 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6024 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6025 | } |
| 6026 | |
| 6027 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 6028 | |
| 6029 | btrfs_add_free_space(cache, buf->start, buf->len); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6030 | btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6031 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6032 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6033 | } |
| 6034 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6035 | if (pin) |
| 6036 | add_pinned_bytes(root->fs_info, buf->len, |
| 6037 | btrfs_header_level(buf), |
| 6038 | root->root_key.objectid); |
| 6039 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 6040 | /* |
| 6041 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 6042 | * anymore. |
| 6043 | */ |
| 6044 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6045 | btrfs_put_block_group(cache); |
| 6046 | } |
| 6047 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6048 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6049 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6050 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
| 6051 | u64 owner, u64 offset, int for_cow) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6052 | { |
| 6053 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6054 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6055 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6056 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 6057 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6058 | /* |
| 6059 | * tree log blocks never actually go into the extent allocation |
| 6060 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6061 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6062 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 6063 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6064 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6065 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6066 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6067 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6068 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 6069 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6070 | parent, root_objectid, (int)owner, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6071 | BTRFS_DROP_DELAYED_REF, NULL, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6072 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6073 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 6074 | num_bytes, |
| 6075 | parent, root_objectid, owner, |
| 6076 | offset, BTRFS_DROP_DELAYED_REF, |
| 6077 | NULL, for_cow); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6078 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6079 | return ret; |
| 6080 | } |
| 6081 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6082 | static u64 stripe_align(struct btrfs_root *root, |
| 6083 | struct btrfs_block_group_cache *cache, |
| 6084 | u64 val, u64 num_bytes) |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 6085 | { |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 6086 | u64 ret = ALIGN(val, root->stripesize); |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 6087 | return ret; |
| 6088 | } |
| 6089 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6090 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6091 | * when we wait for progress in the block group caching, its because |
| 6092 | * our allocation attempt failed at least once. So, we must sleep |
| 6093 | * and let some progress happen before we try again. |
| 6094 | * |
| 6095 | * This function will sleep at least once waiting for new free space to |
| 6096 | * show up, and then it will check the block group free space numbers |
| 6097 | * for our min num_bytes. Another option is to have it go ahead |
| 6098 | * and look in the rbtree for a free extent of a given size, but this |
| 6099 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6100 | * |
| 6101 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 6102 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6103 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6104 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6105 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 6106 | u64 num_bytes) |
| 6107 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6108 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6109 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6110 | caching_ctl = get_caching_control(cache); |
| 6111 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6112 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6113 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6114 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 6115 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6116 | |
| 6117 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6118 | } |
| 6119 | |
| 6120 | static noinline int |
| 6121 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 6122 | { |
| 6123 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6124 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6125 | |
| 6126 | caching_ctl = get_caching_control(cache); |
| 6127 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6128 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6129 | |
| 6130 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6131 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 6132 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6133 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6134 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6135 | } |
| 6136 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6137 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6138 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6139 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6140 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6141 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6142 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6143 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6144 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6145 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6146 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6147 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6148 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6149 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6150 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6151 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6152 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6153 | } |
| 6154 | |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6155 | static int get_block_group_index(struct btrfs_block_group_cache *cache) |
| 6156 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6157 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6158 | } |
| 6159 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6160 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6161 | LOOP_CACHING_NOWAIT = 0, |
| 6162 | LOOP_CACHING_WAIT = 1, |
| 6163 | LOOP_ALLOC_CHUNK = 2, |
| 6164 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6165 | }; |
| 6166 | |
| 6167 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6168 | * walks the btree of allocated extents and find a hole of a given size. |
| 6169 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6170 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 6171 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6172 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6173 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6174 | * |
| 6175 | * If there is no suitable free space, we will record the max size of |
| 6176 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6177 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6178 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6179 | u64 num_bytes, u64 empty_size, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6180 | u64 hint_byte, struct btrfs_key *ins, |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6181 | u64 flags) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6182 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6183 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6184 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6185 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6186 | struct btrfs_block_group_cache *block_group = NULL; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6187 | struct btrfs_block_group_cache *used_block_group; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 6188 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6189 | u64 max_extent_size = 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6190 | int empty_cluster = 2 * 1024 * 1024; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6191 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6192 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6193 | int index = __get_raid_index(flags); |
| 6194 | int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ? |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6195 | RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6196 | bool found_uncached_bg = false; |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6197 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6198 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6199 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6200 | bool have_caching_bg = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6201 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6202 | WARN_ON(num_bytes < root->sectorsize); |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6203 | btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6204 | ins->objectid = 0; |
| 6205 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6206 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6207 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6208 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6209 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6210 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6211 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6212 | return -ENOSPC; |
| 6213 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6214 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6215 | /* |
| 6216 | * If the space info is for both data and metadata it means we have a |
| 6217 | * small filesystem and we can't use the clustering stuff. |
| 6218 | */ |
| 6219 | if (btrfs_mixed_space_info(space_info)) |
| 6220 | use_cluster = false; |
| 6221 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6222 | if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6223 | last_ptr = &root->fs_info->meta_alloc_cluster; |
Chris Mason | 536ac8a | 2009-02-12 09:41:38 -0500 | [diff] [blame] | 6224 | if (!btrfs_test_opt(root, SSD)) |
| 6225 | empty_cluster = 64 * 1024; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6226 | } |
| 6227 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6228 | if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster && |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6229 | btrfs_test_opt(root, SSD)) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6230 | last_ptr = &root->fs_info->data_alloc_cluster; |
| 6231 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6232 | |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6233 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6234 | spin_lock(&last_ptr->lock); |
| 6235 | if (last_ptr->block_group) |
| 6236 | hint_byte = last_ptr->window_start; |
| 6237 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6238 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6239 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6240 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6241 | search_start = max(search_start, hint_byte); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6242 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6243 | if (!last_ptr) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6244 | empty_cluster = 0; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6245 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6246 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6247 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 6248 | search_start); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6249 | used_block_group = block_group; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6250 | /* |
| 6251 | * we don't want to use the block group if it doesn't match our |
| 6252 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6253 | * |
| 6254 | * However if we are re-searching with an ideal block group |
| 6255 | * 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] | 6256 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6257 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6258 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6259 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6260 | if (list_empty(&block_group->list) || |
| 6261 | block_group->ro) { |
| 6262 | /* |
| 6263 | * someone is removing this block group, |
| 6264 | * we can't jump into the have_block_group |
| 6265 | * target because our list pointers are not |
| 6266 | * valid |
| 6267 | */ |
| 6268 | btrfs_put_block_group(block_group); |
| 6269 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6270 | } else { |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6271 | index = get_block_group_index(block_group); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6272 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6273 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6274 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6275 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6276 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6277 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6278 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6279 | have_caching_bg = false; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6280 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6281 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 6282 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6283 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6284 | int cached; |
Chris Mason | 8a1413a2 | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 6285 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6286 | used_block_group = block_group; |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 6287 | btrfs_get_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6288 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6289 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6290 | /* |
| 6291 | * this can happen if we end up cycling through all the |
| 6292 | * raid types, but we want to make sure we only allocate |
| 6293 | * for the proper type. |
| 6294 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6295 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6296 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 6297 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6298 | BTRFS_BLOCK_GROUP_RAID5 | |
| 6299 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6300 | BTRFS_BLOCK_GROUP_RAID10; |
| 6301 | |
| 6302 | /* |
| 6303 | * if they asked for extra copies and this block group |
| 6304 | * doesn't provide them, bail. This does allow us to |
| 6305 | * fill raid0 from raid1. |
| 6306 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6307 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6308 | goto loop; |
| 6309 | } |
| 6310 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6311 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6312 | cached = block_group_cache_done(block_group); |
| 6313 | if (unlikely(!cached)) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6314 | found_uncached_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6315 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 6316 | BUG_ON(ret < 0); |
| 6317 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6318 | } |
| 6319 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6320 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 6321 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6322 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6323 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6324 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6325 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6326 | * Ok we want to try and use the cluster allocator, so |
| 6327 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6328 | */ |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6329 | if (last_ptr) { |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6330 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6331 | /* |
| 6332 | * the refill lock keeps out other |
| 6333 | * people trying to start a new cluster |
| 6334 | */ |
| 6335 | spin_lock(&last_ptr->refill_lock); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6336 | used_block_group = last_ptr->block_group; |
| 6337 | if (used_block_group != block_group && |
| 6338 | (!used_block_group || |
| 6339 | used_block_group->ro || |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6340 | !block_group_bits(used_block_group, flags))) { |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6341 | used_block_group = block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6342 | goto refill_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6343 | } |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6344 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6345 | if (used_block_group != block_group) |
| 6346 | btrfs_get_block_group(used_block_group); |
| 6347 | |
| 6348 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6349 | last_ptr, |
| 6350 | num_bytes, |
| 6351 | used_block_group->key.objectid, |
| 6352 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6353 | if (offset) { |
| 6354 | /* we have a block, we're done */ |
| 6355 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6356 | trace_btrfs_reserve_extent_cluster(root, |
| 6357 | block_group, search_start, num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6358 | goto checks; |
| 6359 | } |
| 6360 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6361 | WARN_ON(last_ptr->block_group != used_block_group); |
| 6362 | if (used_block_group != block_group) { |
| 6363 | btrfs_put_block_group(used_block_group); |
| 6364 | used_block_group = block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6365 | } |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6366 | refill_cluster: |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6367 | BUG_ON(used_block_group != block_group); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6368 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 6369 | * set up a new clusters, so lets just skip it |
| 6370 | * and let the allocator find whatever block |
| 6371 | * it can find. If we reach this point, we |
| 6372 | * will have tried the cluster allocator |
| 6373 | * plenty of times and not have found |
| 6374 | * anything, so we are likely way too |
| 6375 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6376 | * anything. |
| 6377 | * |
| 6378 | * However, if the cluster is taken from the |
| 6379 | * current block group, release the cluster |
| 6380 | * first, so that we stand a better chance of |
| 6381 | * succeeding in the unclustered |
| 6382 | * allocation. */ |
| 6383 | if (loop >= LOOP_NO_EMPTY_SIZE && |
| 6384 | last_ptr->block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6385 | spin_unlock(&last_ptr->refill_lock); |
| 6386 | goto unclustered_alloc; |
| 6387 | } |
| 6388 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6389 | /* |
| 6390 | * this cluster didn't work out, free it and |
| 6391 | * start over |
| 6392 | */ |
| 6393 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 6394 | |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6395 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 6396 | spin_unlock(&last_ptr->refill_lock); |
| 6397 | goto unclustered_alloc; |
| 6398 | } |
| 6399 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6400 | aligned_cluster = max_t(unsigned long, |
| 6401 | empty_cluster + empty_size, |
| 6402 | block_group->full_stripe_len); |
| 6403 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6404 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6405 | ret = btrfs_find_space_cluster(root, block_group, |
| 6406 | last_ptr, search_start, |
| 6407 | num_bytes, |
| 6408 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6409 | if (ret == 0) { |
| 6410 | /* |
| 6411 | * now pull our allocation out of this |
| 6412 | * cluster |
| 6413 | */ |
| 6414 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6415 | last_ptr, |
| 6416 | num_bytes, |
| 6417 | search_start, |
| 6418 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6419 | if (offset) { |
| 6420 | /* we found one, proceed */ |
| 6421 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6422 | trace_btrfs_reserve_extent_cluster(root, |
| 6423 | block_group, search_start, |
| 6424 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6425 | goto checks; |
| 6426 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6427 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 6428 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6429 | spin_unlock(&last_ptr->refill_lock); |
| 6430 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6431 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6432 | wait_block_group_cache_progress(block_group, |
| 6433 | num_bytes + empty_cluster + empty_size); |
| 6434 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6435 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6436 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6437 | /* |
| 6438 | * at this point we either didn't find a cluster |
| 6439 | * or we weren't able to allocate a block from our |
| 6440 | * cluster. Free the cluster we've been trying |
| 6441 | * to use, and go to the next block group |
| 6442 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6443 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6444 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6445 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6446 | } |
| 6447 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6448 | unclustered_alloc: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6449 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 6450 | if (cached && |
| 6451 | block_group->free_space_ctl->free_space < |
| 6452 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6453 | if (block_group->free_space_ctl->free_space > |
| 6454 | max_extent_size) |
| 6455 | max_extent_size = |
| 6456 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6457 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6458 | goto loop; |
| 6459 | } |
| 6460 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6461 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6462 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6463 | num_bytes, empty_size, |
| 6464 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6465 | /* |
| 6466 | * If we didn't find a chunk, and we haven't failed on this |
| 6467 | * block group before, and this block group is in the middle of |
| 6468 | * caching and we are ok with waiting, then go ahead and wait |
| 6469 | * for progress to be made, and set failed_alloc to true. |
| 6470 | * |
| 6471 | * If failed_alloc is true then we've already waited on this |
| 6472 | * block group once and should move on to the next block group. |
| 6473 | */ |
| 6474 | if (!offset && !failed_alloc && !cached && |
| 6475 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6476 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6477 | num_bytes + empty_size); |
| 6478 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6479 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6480 | } else if (!offset) { |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6481 | if (!cached) |
| 6482 | have_caching_bg = true; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6483 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6484 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6485 | checks: |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6486 | search_start = stripe_align(root, used_block_group, |
| 6487 | offset, num_bytes); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 6488 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6489 | /* move on to the next group */ |
| 6490 | if (search_start + num_bytes > |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6491 | used_block_group->key.objectid + used_block_group->key.offset) { |
| 6492 | btrfs_add_free_space(used_block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6493 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6494 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6495 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6496 | if (offset < search_start) |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6497 | btrfs_add_free_space(used_block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6498 | search_start - offset); |
| 6499 | BUG_ON(offset > search_start); |
| 6500 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6501 | ret = btrfs_update_reserved_bytes(used_block_group, num_bytes, |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6502 | alloc_type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6503 | if (ret == -EAGAIN) { |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6504 | btrfs_add_free_space(used_block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6505 | goto loop; |
| 6506 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6507 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6508 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6509 | ins->objectid = search_start; |
| 6510 | ins->offset = num_bytes; |
| 6511 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6512 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 6513 | search_start, num_bytes); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6514 | if (used_block_group != block_group) |
| 6515 | btrfs_put_block_group(used_block_group); |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6516 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6517 | break; |
| 6518 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6519 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6520 | failed_alloc = false; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6521 | BUG_ON(index != get_block_group_index(block_group)); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6522 | if (used_block_group != block_group) |
| 6523 | btrfs_put_block_group(used_block_group); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6524 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6525 | } |
| 6526 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 6527 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6528 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 6529 | goto search; |
| 6530 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6531 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 6532 | goto search; |
| 6533 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6534 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6535 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 6536 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6537 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 6538 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 6539 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 6540 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6541 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6542 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6543 | index = 0; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6544 | loop++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6545 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6546 | struct btrfs_trans_handle *trans; |
| 6547 | |
| 6548 | trans = btrfs_join_transaction(root); |
| 6549 | if (IS_ERR(trans)) { |
| 6550 | ret = PTR_ERR(trans); |
| 6551 | goto out; |
| 6552 | } |
| 6553 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6554 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6555 | CHUNK_ALLOC_FORCE); |
| 6556 | /* |
| 6557 | * Do not bail out on ENOSPC since we |
| 6558 | * can do more things. |
| 6559 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6560 | if (ret < 0 && ret != -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6561 | btrfs_abort_transaction(trans, |
| 6562 | root, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6563 | else |
| 6564 | ret = 0; |
| 6565 | btrfs_end_transaction(trans, root); |
| 6566 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6567 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6568 | } |
| 6569 | |
| 6570 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6571 | empty_size = 0; |
| 6572 | empty_cluster = 0; |
| 6573 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6574 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6575 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6576 | } else if (!ins->objectid) { |
| 6577 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6578 | } else if (ins->objectid) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6579 | ret = 0; |
| 6580 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6581 | out: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6582 | if (ret == -ENOSPC) |
| 6583 | ins->offset = max_extent_size; |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 6584 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6585 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 6586 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6587 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 6588 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6589 | { |
| 6590 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6591 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6592 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6593 | spin_lock(&info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6594 | printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6595 | info->flags, |
| 6596 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 6597 | info->bytes_reserved - info->bytes_readonly, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6598 | (info->full) ? "" : "not "); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6599 | printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, " |
| 6600 | "reserved=%llu, may_use=%llu, readonly=%llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6601 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 6602 | info->bytes_reserved, info->bytes_may_use, |
| 6603 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6604 | spin_unlock(&info->lock); |
| 6605 | |
| 6606 | if (!dump_block_groups) |
| 6607 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6608 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6609 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6610 | again: |
| 6611 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6612 | spin_lock(&cache->lock); |
Liu Bo | 799ffc3 | 2012-07-06 03:31:35 -0600 | [diff] [blame] | 6613 | printk(KERN_INFO "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6614 | cache->key.objectid, cache->key.offset, |
| 6615 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 6616 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6617 | btrfs_dump_free_space(cache, bytes); |
| 6618 | spin_unlock(&cache->lock); |
| 6619 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6620 | if (++index < BTRFS_NR_RAID_TYPES) |
| 6621 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6622 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6623 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6624 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6625 | int btrfs_reserve_extent(struct btrfs_root *root, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6626 | u64 num_bytes, u64 min_alloc_size, |
| 6627 | u64 empty_size, u64 hint_byte, |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6628 | struct btrfs_key *ins, int is_data) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6629 | { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6630 | bool final_tried = false; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6631 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6632 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6633 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6634 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 6635 | again: |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6636 | WARN_ON(num_bytes < root->sectorsize); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6637 | ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins, |
| 6638 | flags); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6639 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6640 | if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6641 | if (!final_tried && ins->offset) { |
| 6642 | num_bytes = min(num_bytes >> 1, ins->offset); |
Zach Brown | 24542bf | 2012-11-16 00:04:43 +0000 | [diff] [blame] | 6643 | num_bytes = round_down(num_bytes, root->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6644 | num_bytes = max(num_bytes, min_alloc_size); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6645 | if (num_bytes == min_alloc_size) |
| 6646 | final_tried = true; |
| 6647 | goto again; |
| 6648 | } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 6649 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6650 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6651 | sinfo = __find_space_info(root->fs_info, flags); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6652 | btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6653 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 6654 | if (sinfo) |
| 6655 | dump_space_info(sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6656 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6657 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6658 | |
| 6659 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6660 | } |
| 6661 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6662 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
| 6663 | u64 start, u64 len, int pin) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6664 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6665 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6666 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6667 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6668 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 6669 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6670 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6671 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6672 | return -ENOSPC; |
| 6673 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6674 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6675 | if (btrfs_test_opt(root, DISCARD)) |
| 6676 | ret = btrfs_discard_extent(root, start, len, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6677 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6678 | if (pin) |
| 6679 | pin_down_extent(root, cache, start, len, 1); |
| 6680 | else { |
| 6681 | btrfs_add_free_space(cache, start, len); |
| 6682 | btrfs_update_reserved_bytes(cache, len, RESERVE_FREE); |
| 6683 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6684 | btrfs_put_block_group(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6685 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 6686 | trace_btrfs_reserved_extent_free(root, start, len); |
| 6687 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6688 | return ret; |
| 6689 | } |
| 6690 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6691 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
| 6692 | u64 start, u64 len) |
| 6693 | { |
| 6694 | return __btrfs_free_reserved_extent(root, start, len, 0); |
| 6695 | } |
| 6696 | |
| 6697 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 6698 | u64 start, u64 len) |
| 6699 | { |
| 6700 | return __btrfs_free_reserved_extent(root, start, len, 1); |
| 6701 | } |
| 6702 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6703 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 6704 | struct btrfs_root *root, |
| 6705 | u64 parent, u64 root_objectid, |
| 6706 | u64 flags, u64 owner, u64 offset, |
| 6707 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6708 | { |
| 6709 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6710 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6711 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6712 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6713 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6714 | struct extent_buffer *leaf; |
| 6715 | int type; |
| 6716 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 6717 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6718 | if (parent > 0) |
| 6719 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 6720 | else |
| 6721 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6722 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6723 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6724 | |
| 6725 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 6726 | if (!path) |
| 6727 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6728 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6729 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6730 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 6731 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6732 | if (ret) { |
| 6733 | btrfs_free_path(path); |
| 6734 | return ret; |
| 6735 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6736 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6737 | leaf = path->nodes[0]; |
| 6738 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6739 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6740 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 6741 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 6742 | btrfs_set_extent_flags(leaf, extent_item, |
| 6743 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6744 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6745 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 6746 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 6747 | if (parent > 0) { |
| 6748 | struct btrfs_shared_data_ref *ref; |
| 6749 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 6750 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 6751 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 6752 | } else { |
| 6753 | struct btrfs_extent_data_ref *ref; |
| 6754 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 6755 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 6756 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 6757 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 6758 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 6759 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6760 | |
| 6761 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6762 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 6763 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 6764 | ret = update_block_group(root, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6765 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6766 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6767 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 6768 | BUG(); |
| 6769 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6770 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6771 | return ret; |
| 6772 | } |
| 6773 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6774 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 6775 | struct btrfs_root *root, |
| 6776 | u64 parent, u64 root_objectid, |
| 6777 | u64 flags, struct btrfs_disk_key *key, |
| 6778 | int level, struct btrfs_key *ins) |
| 6779 | { |
| 6780 | int ret; |
| 6781 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6782 | struct btrfs_extent_item *extent_item; |
| 6783 | struct btrfs_tree_block_info *block_info; |
| 6784 | struct btrfs_extent_inline_ref *iref; |
| 6785 | struct btrfs_path *path; |
| 6786 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6787 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
| 6788 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 6789 | SKINNY_METADATA); |
| 6790 | |
| 6791 | if (!skinny_metadata) |
| 6792 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6793 | |
| 6794 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 6795 | if (!path) { |
| 6796 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
| 6797 | root->leafsize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 6798 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 6799 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6800 | |
| 6801 | path->leave_spinning = 1; |
| 6802 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 6803 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6804 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 6805 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
| 6806 | root->leafsize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6807 | btrfs_free_path(path); |
| 6808 | return ret; |
| 6809 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6810 | |
| 6811 | leaf = path->nodes[0]; |
| 6812 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 6813 | struct btrfs_extent_item); |
| 6814 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 6815 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 6816 | btrfs_set_extent_flags(leaf, extent_item, |
| 6817 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6818 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6819 | if (skinny_metadata) { |
| 6820 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 6821 | } else { |
| 6822 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 6823 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 6824 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 6825 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 6826 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6827 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6828 | if (parent > 0) { |
| 6829 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 6830 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 6831 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 6832 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 6833 | } else { |
| 6834 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 6835 | BTRFS_TREE_BLOCK_REF_KEY); |
| 6836 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 6837 | } |
| 6838 | |
| 6839 | btrfs_mark_buffer_dirty(leaf); |
| 6840 | btrfs_free_path(path); |
| 6841 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6842 | ret = update_block_group(root, ins->objectid, root->leafsize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6843 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6844 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6845 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6846 | BUG(); |
| 6847 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6848 | |
| 6849 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6850 | return ret; |
| 6851 | } |
| 6852 | |
| 6853 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 6854 | struct btrfs_root *root, |
| 6855 | u64 root_objectid, u64 owner, |
| 6856 | u64 offset, struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6857 | { |
| 6858 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 6859 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6860 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6861 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6862 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 6863 | ins->offset, 0, |
| 6864 | root_objectid, owner, offset, |
| 6865 | BTRFS_ADD_DELAYED_EXTENT, NULL, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6866 | return ret; |
| 6867 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6868 | |
| 6869 | /* |
| 6870 | * this is used by the tree logging recovery code. It records that |
| 6871 | * an extent has been allocated and makes sure to clear the free |
| 6872 | * space cache bits as well |
| 6873 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6874 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 6875 | struct btrfs_root *root, |
| 6876 | u64 root_objectid, u64 owner, u64 offset, |
| 6877 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6878 | { |
| 6879 | int ret; |
| 6880 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6881 | |
| 6882 | /* |
| 6883 | * Mixed block groups will exclude before processing the log so we only |
| 6884 | * need to do the exlude dance if this fs isn't mixed. |
| 6885 | */ |
| 6886 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 6887 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 6888 | if (ret) |
| 6889 | return ret; |
| 6890 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6891 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6892 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6893 | if (!block_group) |
| 6894 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6895 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6896 | ret = btrfs_update_reserved_bytes(block_group, ins->offset, |
| 6897 | RESERVE_ALLOC_NO_ACCOUNT); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6898 | BUG_ON(ret); /* logic error */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6899 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 6900 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6901 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6902 | return ret; |
| 6903 | } |
| 6904 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 6905 | static struct extent_buffer * |
| 6906 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6907 | u64 bytenr, u32 blocksize, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6908 | { |
| 6909 | struct extent_buffer *buf; |
| 6910 | |
| 6911 | buf = btrfs_find_create_tree_block(root, bytenr, blocksize); |
| 6912 | if (!buf) |
| 6913 | return ERR_PTR(-ENOMEM); |
| 6914 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6915 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6916 | btrfs_tree_lock(buf); |
| 6917 | clean_tree_block(trans, root, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 6918 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 6919 | |
| 6920 | btrfs_set_lock_blocking(buf); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6921 | btrfs_set_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 6922 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 6923 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 6924 | /* |
| 6925 | * we allow two log transactions at a time, use different |
| 6926 | * EXENT bit to differentiate dirty pages. |
| 6927 | */ |
| 6928 | if (root->log_transid % 2 == 0) |
| 6929 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 6930 | buf->start + buf->len - 1, GFP_NOFS); |
| 6931 | else |
| 6932 | set_extent_new(&root->dirty_log_pages, buf->start, |
| 6933 | buf->start + buf->len - 1, GFP_NOFS); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 6934 | } else { |
| 6935 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 6936 | buf->start + buf->len - 1, GFP_NOFS); |
| 6937 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6938 | trans->blocks_used++; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 6939 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6940 | return buf; |
| 6941 | } |
| 6942 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6943 | static struct btrfs_block_rsv * |
| 6944 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 6945 | struct btrfs_root *root, u32 blocksize) |
| 6946 | { |
| 6947 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 6948 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6949 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 6950 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6951 | |
| 6952 | block_rsv = get_block_rsv(trans, root); |
| 6953 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6954 | if (unlikely(block_rsv->size == 0)) |
| 6955 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 6956 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6957 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 6958 | if (!ret) |
| 6959 | return block_rsv; |
| 6960 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6961 | if (block_rsv->failfast) |
| 6962 | return ERR_PTR(ret); |
| 6963 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 6964 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 6965 | global_updated = true; |
| 6966 | update_global_block_rsv(root->fs_info); |
| 6967 | goto again; |
| 6968 | } |
| 6969 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6970 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 6971 | static DEFINE_RATELIMIT_STATE(_rs, |
| 6972 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 6973 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 6974 | if (__ratelimit(&_rs)) |
| 6975 | WARN(1, KERN_DEBUG |
| 6976 | "btrfs: block rsv returned %d\n", ret); |
| 6977 | } |
| 6978 | try_reserve: |
| 6979 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 6980 | BTRFS_RESERVE_NO_FLUSH); |
| 6981 | if (!ret) |
| 6982 | return block_rsv; |
| 6983 | /* |
| 6984 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 6985 | * the global reserve if its space type is the same as the global |
| 6986 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6987 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 6988 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 6989 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6990 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 6991 | if (!ret) |
| 6992 | return global_rsv; |
| 6993 | } |
| 6994 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6995 | } |
| 6996 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6997 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 6998 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6999 | { |
| 7000 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7001 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7002 | } |
| 7003 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7004 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7005 | * finds a free extent and does all the dirty work required for allocation |
| 7006 | * returns the key for the extent through ins, and a tree buffer for |
| 7007 | * the first block of the extent through buf. |
| 7008 | * |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7009 | * returns the tree buffer or NULL. |
| 7010 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7011 | struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7012 | struct btrfs_root *root, u32 blocksize, |
| 7013 | u64 parent, u64 root_objectid, |
| 7014 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7015 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7016 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 7017 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7018 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7019 | struct extent_buffer *buf; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7020 | u64 flags = 0; |
| 7021 | int ret; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7022 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7023 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7024 | |
| 7025 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 7026 | if (IS_ERR(block_rsv)) |
| 7027 | return ERR_CAST(block_rsv); |
| 7028 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7029 | ret = btrfs_reserve_extent(root, blocksize, blocksize, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7030 | empty_size, hint, &ins, 0); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7031 | if (ret) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7032 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7033 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7034 | } |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 7035 | |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 7036 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, |
| 7037 | blocksize, level); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7038 | BUG_ON(IS_ERR(buf)); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7039 | |
| 7040 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 7041 | if (parent == 0) |
| 7042 | parent = ins.objectid; |
| 7043 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7044 | } else |
| 7045 | BUG_ON(parent > 0); |
| 7046 | |
| 7047 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 7048 | struct btrfs_delayed_extent_op *extent_op; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7049 | extent_op = btrfs_alloc_delayed_extent_op(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7050 | BUG_ON(!extent_op); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7051 | if (key) |
| 7052 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 7053 | else |
| 7054 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 7055 | extent_op->flags_to_set = flags; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7056 | if (skinny_metadata) |
| 7057 | extent_op->update_key = 0; |
| 7058 | else |
| 7059 | extent_op->update_key = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7060 | extent_op->update_flags = 1; |
| 7061 | extent_op->is_data = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7062 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7063 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7064 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 7065 | ins.objectid, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7066 | ins.offset, parent, root_objectid, |
| 7067 | level, BTRFS_ADD_DELAYED_EXTENT, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7068 | extent_op, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7069 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7070 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7071 | return buf; |
| 7072 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7073 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7074 | struct walk_control { |
| 7075 | u64 refs[BTRFS_MAX_LEVEL]; |
| 7076 | u64 flags[BTRFS_MAX_LEVEL]; |
| 7077 | struct btrfs_key update_progress; |
| 7078 | int stage; |
| 7079 | int level; |
| 7080 | int shared_level; |
| 7081 | int update_ref; |
| 7082 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7083 | int reada_slot; |
| 7084 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7085 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7086 | }; |
| 7087 | |
| 7088 | #define DROP_REFERENCE 1 |
| 7089 | #define UPDATE_BACKREF 2 |
| 7090 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7091 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 7092 | struct btrfs_root *root, |
| 7093 | struct walk_control *wc, |
| 7094 | struct btrfs_path *path) |
| 7095 | { |
| 7096 | u64 bytenr; |
| 7097 | u64 generation; |
| 7098 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7099 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7100 | u32 nritems; |
| 7101 | u32 blocksize; |
| 7102 | struct btrfs_key key; |
| 7103 | struct extent_buffer *eb; |
| 7104 | int ret; |
| 7105 | int slot; |
| 7106 | int nread = 0; |
| 7107 | |
| 7108 | if (path->slots[wc->level] < wc->reada_slot) { |
| 7109 | wc->reada_count = wc->reada_count * 2 / 3; |
| 7110 | wc->reada_count = max(wc->reada_count, 2); |
| 7111 | } else { |
| 7112 | wc->reada_count = wc->reada_count * 3 / 2; |
| 7113 | wc->reada_count = min_t(int, wc->reada_count, |
| 7114 | BTRFS_NODEPTRS_PER_BLOCK(root)); |
| 7115 | } |
| 7116 | |
| 7117 | eb = path->nodes[wc->level]; |
| 7118 | nritems = btrfs_header_nritems(eb); |
| 7119 | blocksize = btrfs_level_size(root, wc->level - 1); |
| 7120 | |
| 7121 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 7122 | if (nread >= wc->reada_count) |
| 7123 | break; |
| 7124 | |
| 7125 | cond_resched(); |
| 7126 | bytenr = btrfs_node_blockptr(eb, slot); |
| 7127 | generation = btrfs_node_ptr_generation(eb, slot); |
| 7128 | |
| 7129 | if (slot == path->slots[wc->level]) |
| 7130 | goto reada; |
| 7131 | |
| 7132 | if (wc->stage == UPDATE_BACKREF && |
| 7133 | generation <= root->root_key.offset) |
| 7134 | continue; |
| 7135 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7136 | /* 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] | 7137 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 7138 | wc->level - 1, 1, &refs, |
| 7139 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7140 | /* We don't care about errors in readahead. */ |
| 7141 | if (ret < 0) |
| 7142 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7143 | BUG_ON(refs == 0); |
| 7144 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7145 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7146 | if (refs == 1) |
| 7147 | goto reada; |
| 7148 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7149 | if (wc->level == 1 && |
| 7150 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7151 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7152 | if (!wc->update_ref || |
| 7153 | generation <= root->root_key.offset) |
| 7154 | continue; |
| 7155 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 7156 | ret = btrfs_comp_cpu_keys(&key, |
| 7157 | &wc->update_progress); |
| 7158 | if (ret < 0) |
| 7159 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7160 | } else { |
| 7161 | if (wc->level == 1 && |
| 7162 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7163 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7164 | } |
| 7165 | reada: |
| 7166 | ret = readahead_tree_block(root, bytenr, blocksize, |
| 7167 | generation); |
| 7168 | if (ret) |
| 7169 | break; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7170 | nread++; |
| 7171 | } |
| 7172 | wc->reada_slot = slot; |
| 7173 | } |
| 7174 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7175 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7176 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7177 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7178 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 7179 | * back refs for pointers in the block. |
| 7180 | * |
| 7181 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7182 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7183 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 7184 | struct btrfs_root *root, |
| 7185 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7186 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7187 | { |
| 7188 | int level = wc->level; |
| 7189 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7190 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7191 | int ret; |
| 7192 | |
| 7193 | if (wc->stage == UPDATE_BACKREF && |
| 7194 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 7195 | return 1; |
| 7196 | |
| 7197 | /* |
| 7198 | * when reference count of tree block is 1, it won't increase |
| 7199 | * again. once full backref flag is set, we never clear it. |
| 7200 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7201 | if (lookup_info && |
| 7202 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 7203 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7204 | BUG_ON(!path->locks[level]); |
| 7205 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7206 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7207 | &wc->refs[level], |
| 7208 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7209 | BUG_ON(ret == -ENOMEM); |
| 7210 | if (ret) |
| 7211 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7212 | BUG_ON(wc->refs[level] == 0); |
| 7213 | } |
| 7214 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7215 | if (wc->stage == DROP_REFERENCE) { |
| 7216 | if (wc->refs[level] > 1) |
| 7217 | return 1; |
| 7218 | |
| 7219 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7220 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7221 | path->locks[level] = 0; |
| 7222 | } |
| 7223 | return 0; |
| 7224 | } |
| 7225 | |
| 7226 | /* wc->stage == UPDATE_BACKREF */ |
| 7227 | if (!(wc->flags[level] & flag)) { |
| 7228 | BUG_ON(!path->locks[level]); |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7229 | ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7230 | BUG_ON(ret); /* -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7231 | ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7232 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7233 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7234 | eb->len, flag, |
| 7235 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7236 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7237 | wc->flags[level] |= flag; |
| 7238 | } |
| 7239 | |
| 7240 | /* |
| 7241 | * the block is shared by multiple trees, so it's not good to |
| 7242 | * keep the tree lock |
| 7243 | */ |
| 7244 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7245 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7246 | path->locks[level] = 0; |
| 7247 | } |
| 7248 | return 0; |
| 7249 | } |
| 7250 | |
| 7251 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7252 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7253 | * |
| 7254 | * when wc->stage == DROP_REFERENCE, this function checks |
| 7255 | * reference count of the block pointed to. if the block |
| 7256 | * is shared and we need update back refs for the subtree |
| 7257 | * rooted at the block, this function changes wc->stage to |
| 7258 | * UPDATE_BACKREF. if the block is shared and there is no |
| 7259 | * need to update back, this function drops the reference |
| 7260 | * to the block. |
| 7261 | * |
| 7262 | * NOTE: return value 1 means we should stop walking down. |
| 7263 | */ |
| 7264 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 7265 | struct btrfs_root *root, |
| 7266 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7267 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7268 | { |
| 7269 | u64 bytenr; |
| 7270 | u64 generation; |
| 7271 | u64 parent; |
| 7272 | u32 blocksize; |
| 7273 | struct btrfs_key key; |
| 7274 | struct extent_buffer *next; |
| 7275 | int level = wc->level; |
| 7276 | int reada = 0; |
| 7277 | int ret = 0; |
| 7278 | |
| 7279 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 7280 | path->slots[level]); |
| 7281 | /* |
| 7282 | * if the lower level block was created before the snapshot |
| 7283 | * was created, we know there is no need to update back refs |
| 7284 | * for the subtree |
| 7285 | */ |
| 7286 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7287 | generation <= root->root_key.offset) { |
| 7288 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7289 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7290 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7291 | |
| 7292 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
| 7293 | blocksize = btrfs_level_size(root, level - 1); |
| 7294 | |
| 7295 | next = btrfs_find_tree_block(root, bytenr, blocksize); |
| 7296 | if (!next) { |
| 7297 | next = btrfs_find_create_tree_block(root, bytenr, blocksize); |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 7298 | if (!next) |
| 7299 | return -ENOMEM; |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 7300 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 7301 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7302 | reada = 1; |
| 7303 | } |
| 7304 | btrfs_tree_lock(next); |
| 7305 | btrfs_set_lock_blocking(next); |
| 7306 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7307 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7308 | &wc->refs[level - 1], |
| 7309 | &wc->flags[level - 1]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7310 | if (ret < 0) { |
| 7311 | btrfs_tree_unlock(next); |
| 7312 | return ret; |
| 7313 | } |
| 7314 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7315 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 7316 | btrfs_err(root->fs_info, "Missing references."); |
| 7317 | BUG(); |
| 7318 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7319 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7320 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7321 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7322 | if (wc->refs[level - 1] > 1) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7323 | if (level == 1 && |
| 7324 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7325 | goto skip; |
| 7326 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7327 | if (!wc->update_ref || |
| 7328 | generation <= root->root_key.offset) |
| 7329 | goto skip; |
| 7330 | |
| 7331 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 7332 | path->slots[level]); |
| 7333 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 7334 | if (ret < 0) |
| 7335 | goto skip; |
| 7336 | |
| 7337 | wc->stage = UPDATE_BACKREF; |
| 7338 | wc->shared_level = level - 1; |
| 7339 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7340 | } else { |
| 7341 | if (level == 1 && |
| 7342 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7343 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7344 | } |
| 7345 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 7346 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7347 | btrfs_tree_unlock(next); |
| 7348 | free_extent_buffer(next); |
| 7349 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7350 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7351 | } |
| 7352 | |
| 7353 | if (!next) { |
| 7354 | if (reada && level == 1) |
| 7355 | reada_walk_down(trans, root, wc, path); |
| 7356 | next = read_tree_block(root, bytenr, blocksize, generation); |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7357 | if (!next || !extent_buffer_uptodate(next)) { |
| 7358 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 7359 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7360 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7361 | btrfs_tree_lock(next); |
| 7362 | btrfs_set_lock_blocking(next); |
| 7363 | } |
| 7364 | |
| 7365 | level--; |
| 7366 | BUG_ON(level != btrfs_header_level(next)); |
| 7367 | path->nodes[level] = next; |
| 7368 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7369 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7370 | wc->level = level; |
| 7371 | if (wc->level == 1) |
| 7372 | wc->reada_slot = 0; |
| 7373 | return 0; |
| 7374 | skip: |
| 7375 | wc->refs[level - 1] = 0; |
| 7376 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7377 | if (wc->stage == DROP_REFERENCE) { |
| 7378 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 7379 | parent = path->nodes[level]->start; |
| 7380 | } else { |
| 7381 | BUG_ON(root->root_key.objectid != |
| 7382 | btrfs_header_owner(path->nodes[level])); |
| 7383 | parent = 0; |
| 7384 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7385 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7386 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7387 | root->root_key.objectid, level - 1, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7388 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7389 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7390 | btrfs_tree_unlock(next); |
| 7391 | free_extent_buffer(next); |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7392 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7393 | return 1; |
| 7394 | } |
| 7395 | |
| 7396 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7397 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7398 | * |
| 7399 | * when wc->stage == DROP_REFERENCE, this function drops |
| 7400 | * reference count on the block. |
| 7401 | * |
| 7402 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 7403 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 7404 | * to UPDATE_BACKREF previously while processing the block. |
| 7405 | * |
| 7406 | * NOTE: return value 1 means we should stop walking up. |
| 7407 | */ |
| 7408 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 7409 | struct btrfs_root *root, |
| 7410 | struct btrfs_path *path, |
| 7411 | struct walk_control *wc) |
| 7412 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7413 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7414 | int level = wc->level; |
| 7415 | struct extent_buffer *eb = path->nodes[level]; |
| 7416 | u64 parent = 0; |
| 7417 | |
| 7418 | if (wc->stage == UPDATE_BACKREF) { |
| 7419 | BUG_ON(wc->shared_level < level); |
| 7420 | if (level < wc->shared_level) |
| 7421 | goto out; |
| 7422 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7423 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 7424 | if (ret > 0) |
| 7425 | wc->update_ref = 0; |
| 7426 | |
| 7427 | wc->stage = DROP_REFERENCE; |
| 7428 | wc->shared_level = -1; |
| 7429 | path->slots[level] = 0; |
| 7430 | |
| 7431 | /* |
| 7432 | * check reference count again if the block isn't locked. |
| 7433 | * we should start walking down the tree again if reference |
| 7434 | * count is one. |
| 7435 | */ |
| 7436 | if (!path->locks[level]) { |
| 7437 | BUG_ON(level == 0); |
| 7438 | btrfs_tree_lock(eb); |
| 7439 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7440 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7441 | |
| 7442 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7443 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7444 | &wc->refs[level], |
| 7445 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7446 | if (ret < 0) { |
| 7447 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7448 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7449 | return ret; |
| 7450 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7451 | BUG_ON(wc->refs[level] == 0); |
| 7452 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7453 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7454 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7455 | return 1; |
| 7456 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7457 | } |
| 7458 | } |
| 7459 | |
| 7460 | /* wc->stage == DROP_REFERENCE */ |
| 7461 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 7462 | |
| 7463 | if (wc->refs[level] == 1) { |
| 7464 | if (level == 0) { |
| 7465 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7466 | ret = btrfs_dec_ref(trans, root, eb, 1, |
| 7467 | wc->for_reloc); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7468 | else |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7469 | ret = btrfs_dec_ref(trans, root, eb, 0, |
| 7470 | wc->for_reloc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7471 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7472 | } |
| 7473 | /* make block locked assertion in clean_tree_block happy */ |
| 7474 | if (!path->locks[level] && |
| 7475 | btrfs_header_generation(eb) == trans->transid) { |
| 7476 | btrfs_tree_lock(eb); |
| 7477 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7478 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7479 | } |
| 7480 | clean_tree_block(trans, root, eb); |
| 7481 | } |
| 7482 | |
| 7483 | if (eb == root->node) { |
| 7484 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 7485 | parent = eb->start; |
| 7486 | else |
| 7487 | BUG_ON(root->root_key.objectid != |
| 7488 | btrfs_header_owner(eb)); |
| 7489 | } else { |
| 7490 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 7491 | parent = path->nodes[level + 1]->start; |
| 7492 | else |
| 7493 | BUG_ON(root->root_key.objectid != |
| 7494 | btrfs_header_owner(path->nodes[level + 1])); |
| 7495 | } |
| 7496 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7497 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7498 | out: |
| 7499 | wc->refs[level] = 0; |
| 7500 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7501 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7502 | } |
| 7503 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7504 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 7505 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7506 | struct btrfs_path *path, |
| 7507 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7508 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7509 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7510 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7511 | int ret; |
| 7512 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7513 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7514 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7515 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7516 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7517 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7518 | if (level == 0) |
| 7519 | break; |
| 7520 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 7521 | if (path->slots[level] >= |
| 7522 | btrfs_header_nritems(path->nodes[level])) |
| 7523 | break; |
| 7524 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7525 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7526 | if (ret > 0) { |
| 7527 | path->slots[level]++; |
| 7528 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 7529 | } else if (ret < 0) |
| 7530 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7531 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7532 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7533 | return 0; |
| 7534 | } |
| 7535 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7536 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 7537 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7538 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7539 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7540 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7541 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7542 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7543 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7544 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 7545 | while (level < max_level && path->nodes[level]) { |
| 7546 | wc->level = level; |
| 7547 | if (path->slots[level] + 1 < |
| 7548 | btrfs_header_nritems(path->nodes[level])) { |
| 7549 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7550 | return 0; |
| 7551 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7552 | ret = walk_up_proc(trans, root, path, wc); |
| 7553 | if (ret > 0) |
| 7554 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 7555 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7556 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7557 | btrfs_tree_unlock_rw(path->nodes[level], |
| 7558 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7559 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7560 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7561 | free_extent_buffer(path->nodes[level]); |
| 7562 | path->nodes[level] = NULL; |
| 7563 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7564 | } |
| 7565 | } |
| 7566 | return 1; |
| 7567 | } |
| 7568 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7569 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7570 | * drop a subvolume tree. |
| 7571 | * |
| 7572 | * this function traverses the tree freeing any blocks that only |
| 7573 | * referenced by the tree. |
| 7574 | * |
| 7575 | * when a shared tree block is found. this function decreases its |
| 7576 | * reference count by one. if update_ref is true, this function |
| 7577 | * also make sure backrefs for the shared block and all lower level |
| 7578 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 7579 | * |
| 7580 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7581 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 7582 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7583 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 7584 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7585 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7586 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7587 | struct btrfs_trans_handle *trans; |
| 7588 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7589 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7590 | struct walk_control *wc; |
| 7591 | struct btrfs_key key; |
| 7592 | int err = 0; |
| 7593 | int ret; |
| 7594 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7595 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7596 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7597 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7598 | if (!path) { |
| 7599 | err = -ENOMEM; |
| 7600 | goto out; |
| 7601 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7602 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7603 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 7604 | if (!wc) { |
| 7605 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7606 | err = -ENOMEM; |
| 7607 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 7608 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7609 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7610 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7611 | if (IS_ERR(trans)) { |
| 7612 | err = PTR_ERR(trans); |
| 7613 | goto out_free; |
| 7614 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 7615 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7616 | if (block_rsv) |
| 7617 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7618 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7619 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7620 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7621 | path->nodes[level] = btrfs_lock_root_node(root); |
| 7622 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7623 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7624 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7625 | memset(&wc->update_progress, 0, |
| 7626 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7627 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7628 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7629 | memcpy(&wc->update_progress, &key, |
| 7630 | sizeof(wc->update_progress)); |
| 7631 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 7632 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7633 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 7634 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7635 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 7636 | path->lowest_level = 0; |
| 7637 | if (ret < 0) { |
| 7638 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7639 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7640 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7641 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7642 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 7643 | /* |
| 7644 | * unlock our path, this is safe because only this |
| 7645 | * function is allowed to delete this snapshot |
| 7646 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7647 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7648 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7649 | level = btrfs_header_level(root->node); |
| 7650 | while (1) { |
| 7651 | btrfs_tree_lock(path->nodes[level]); |
| 7652 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 7653 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7654 | |
| 7655 | ret = btrfs_lookup_extent_info(trans, root, |
| 7656 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7657 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7658 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7659 | if (ret < 0) { |
| 7660 | err = ret; |
| 7661 | goto out_end_trans; |
| 7662 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7663 | BUG_ON(wc->refs[level] == 0); |
| 7664 | |
| 7665 | if (level == root_item->drop_level) |
| 7666 | break; |
| 7667 | |
| 7668 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 7669 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7670 | WARN_ON(wc->refs[level] != 1); |
| 7671 | level--; |
| 7672 | } |
| 7673 | } |
| 7674 | |
| 7675 | wc->level = level; |
| 7676 | wc->shared_level = -1; |
| 7677 | wc->stage = DROP_REFERENCE; |
| 7678 | wc->update_ref = update_ref; |
| 7679 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7680 | wc->for_reloc = for_reloc; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7681 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7682 | |
| 7683 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 7684 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7685 | ret = walk_down_tree(trans, root, path, wc); |
| 7686 | if (ret < 0) { |
| 7687 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 7688 | break; |
| 7689 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7690 | |
| 7691 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 7692 | if (ret < 0) { |
| 7693 | err = ret; |
| 7694 | break; |
| 7695 | } |
| 7696 | |
| 7697 | if (ret > 0) { |
| 7698 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 7699 | break; |
| 7700 | } |
| 7701 | |
| 7702 | if (wc->stage == DROP_REFERENCE) { |
| 7703 | level = wc->level; |
| 7704 | btrfs_node_key(path->nodes[level], |
| 7705 | &root_item->drop_progress, |
| 7706 | path->slots[level]); |
| 7707 | root_item->drop_level = level; |
| 7708 | } |
| 7709 | |
| 7710 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 7711 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 7712 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7713 | ret = btrfs_update_root(trans, tree_root, |
| 7714 | &root->root_key, |
| 7715 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7716 | if (ret) { |
| 7717 | btrfs_abort_transaction(trans, tree_root, ret); |
| 7718 | err = ret; |
| 7719 | goto out_end_trans; |
| 7720 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7721 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7722 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 7723 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
| 7724 | pr_debug("btrfs: drop snapshot early exit\n"); |
| 7725 | err = -EAGAIN; |
| 7726 | goto out_free; |
| 7727 | } |
| 7728 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7729 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7730 | if (IS_ERR(trans)) { |
| 7731 | err = PTR_ERR(trans); |
| 7732 | goto out_free; |
| 7733 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7734 | if (block_rsv) |
| 7735 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7736 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7737 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7738 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7739 | if (err) |
| 7740 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7741 | |
| 7742 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7743 | if (ret) { |
| 7744 | btrfs_abort_transaction(trans, tree_root, ret); |
| 7745 | goto out_end_trans; |
| 7746 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7747 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7748 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7749 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 7750 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7751 | if (ret < 0) { |
| 7752 | btrfs_abort_transaction(trans, tree_root, ret); |
| 7753 | err = ret; |
| 7754 | goto out_end_trans; |
| 7755 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 7756 | /* if we fail to delete the orphan item this time |
| 7757 | * around, it'll get picked up the next time. |
| 7758 | * |
| 7759 | * The most common failure here is just -ENOENT. |
| 7760 | */ |
| 7761 | btrfs_del_orphan_item(trans, tree_root, |
| 7762 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7763 | } |
| 7764 | } |
| 7765 | |
| 7766 | if (root->in_radix) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7767 | btrfs_drop_and_free_fs_root(tree_root->fs_info, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7768 | } else { |
| 7769 | free_extent_buffer(root->node); |
| 7770 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 7771 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7772 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7773 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7774 | out_end_trans: |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7775 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7776 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7777 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7778 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7779 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7780 | /* |
| 7781 | * So if we need to stop dropping the snapshot for whatever reason we |
| 7782 | * need to make sure to add it back to the dead root list so that we |
| 7783 | * keep trying to do the work later. This also cleans up roots if we |
| 7784 | * don't have it in the radix (like when we recover after a power fail |
| 7785 | * or unmount) so we don't leak memory. |
| 7786 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 7787 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7788 | btrfs_add_dead_root(root); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7789 | if (err) |
| 7790 | btrfs_std_error(root->fs_info, err); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 7791 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7792 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 7793 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7794 | /* |
| 7795 | * drop subtree rooted at tree block 'node'. |
| 7796 | * |
| 7797 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7798 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7799 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7800 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 7801 | struct btrfs_root *root, |
| 7802 | struct extent_buffer *node, |
| 7803 | struct extent_buffer *parent) |
| 7804 | { |
| 7805 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7806 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7807 | int level; |
| 7808 | int parent_level; |
| 7809 | int ret = 0; |
| 7810 | int wret; |
| 7811 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7812 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 7813 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7814 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 7815 | if (!path) |
| 7816 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7817 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7818 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 7819 | if (!wc) { |
| 7820 | btrfs_free_path(path); |
| 7821 | return -ENOMEM; |
| 7822 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7823 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 7824 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7825 | parent_level = btrfs_header_level(parent); |
| 7826 | extent_buffer_get(parent); |
| 7827 | path->nodes[parent_level] = parent; |
| 7828 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 7829 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 7830 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7831 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7832 | path->nodes[level] = node; |
| 7833 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7834 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7835 | |
| 7836 | wc->refs[parent_level] = 1; |
| 7837 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7838 | wc->level = level; |
| 7839 | wc->shared_level = -1; |
| 7840 | wc->stage = DROP_REFERENCE; |
| 7841 | wc->update_ref = 0; |
| 7842 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7843 | wc->for_reloc = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7844 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7845 | |
| 7846 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7847 | wret = walk_down_tree(trans, root, path, wc); |
| 7848 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7849 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7850 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7851 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7852 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7853 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7854 | if (wret < 0) |
| 7855 | ret = wret; |
| 7856 | if (wret != 0) |
| 7857 | break; |
| 7858 | } |
| 7859 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7860 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7861 | btrfs_free_path(path); |
| 7862 | return ret; |
| 7863 | } |
| 7864 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7865 | static u64 update_block_group_flags(struct btrfs_root *root, u64 flags) |
| 7866 | { |
| 7867 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7868 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7869 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7870 | /* |
| 7871 | * if restripe for this chunk_type is on pick target profile and |
| 7872 | * return, otherwise do the usual balance |
| 7873 | */ |
| 7874 | stripped = get_restripe_target(root->fs_info, flags); |
| 7875 | if (stripped) |
| 7876 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 7877 | |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 7878 | /* |
| 7879 | * we add in the count of missing devices because we want |
| 7880 | * to make sure that any RAID levels on a degraded FS |
| 7881 | * continue to be honored. |
| 7882 | */ |
| 7883 | num_devices = root->fs_info->fs_devices->rw_devices + |
| 7884 | root->fs_info->fs_devices->missing_devices; |
| 7885 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7886 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7887 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7888 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 7889 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7890 | if (num_devices == 1) { |
| 7891 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 7892 | stripped = flags & ~stripped; |
| 7893 | |
| 7894 | /* turn raid0 into single device chunks */ |
| 7895 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 7896 | return stripped; |
| 7897 | |
| 7898 | /* turn mirroring into duplication */ |
| 7899 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 7900 | BTRFS_BLOCK_GROUP_RAID10)) |
| 7901 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7902 | } else { |
| 7903 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7904 | if (flags & stripped) |
| 7905 | return flags; |
| 7906 | |
| 7907 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 7908 | stripped = flags & ~stripped; |
| 7909 | |
| 7910 | /* switch duplicated blocks with raid1 */ |
| 7911 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 7912 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 7913 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 7914 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7915 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 7916 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7917 | return flags; |
| 7918 | } |
| 7919 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7920 | 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] | 7921 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7922 | struct btrfs_space_info *sinfo = cache->space_info; |
| 7923 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7924 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7925 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 7926 | |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 7927 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7928 | /* |
| 7929 | * We need some metadata space and system metadata space for |
| 7930 | * allocating chunks in some corner cases until we force to set |
| 7931 | * it to be readonly. |
| 7932 | */ |
| 7933 | if ((sinfo->flags & |
| 7934 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 7935 | !force) |
| 7936 | min_allocable_bytes = 1 * 1024 * 1024; |
| 7937 | else |
| 7938 | min_allocable_bytes = 0; |
| 7939 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7940 | spin_lock(&sinfo->lock); |
| 7941 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 7942 | |
| 7943 | if (cache->ro) { |
| 7944 | ret = 0; |
| 7945 | goto out; |
| 7946 | } |
| 7947 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7948 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 7949 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 7950 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7951 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7952 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 7953 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7954 | sinfo->bytes_readonly += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7955 | cache->ro = 1; |
| 7956 | ret = 0; |
| 7957 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 7958 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7959 | spin_unlock(&cache->lock); |
| 7960 | spin_unlock(&sinfo->lock); |
| 7961 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 7962 | } |
| 7963 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7964 | int btrfs_set_block_group_ro(struct btrfs_root *root, |
| 7965 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7966 | |
| 7967 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7968 | struct btrfs_trans_handle *trans; |
| 7969 | u64 alloc_flags; |
| 7970 | int ret; |
| 7971 | |
| 7972 | BUG_ON(cache->ro); |
| 7973 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 7974 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7975 | if (IS_ERR(trans)) |
| 7976 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7977 | |
| 7978 | alloc_flags = update_block_group_flags(root, cache->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7979 | if (alloc_flags != cache->flags) { |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 7980 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7981 | CHUNK_ALLOC_FORCE); |
| 7982 | if (ret < 0) |
| 7983 | goto out; |
| 7984 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7985 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7986 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7987 | if (!ret) |
| 7988 | goto out; |
| 7989 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 7990 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 7991 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7992 | if (ret < 0) |
| 7993 | goto out; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7994 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7995 | out: |
| 7996 | btrfs_end_transaction(trans, root); |
| 7997 | return ret; |
| 7998 | } |
| 7999 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8000 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 8001 | struct btrfs_root *root, u64 type) |
| 8002 | { |
| 8003 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8004 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8005 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8006 | } |
| 8007 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8008 | /* |
| 8009 | * helper to account the unused space of all the readonly block group in the |
| 8010 | * list. takes mirrors into account. |
| 8011 | */ |
| 8012 | static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list) |
| 8013 | { |
| 8014 | struct btrfs_block_group_cache *block_group; |
| 8015 | u64 free_bytes = 0; |
| 8016 | int factor; |
| 8017 | |
| 8018 | list_for_each_entry(block_group, groups_list, list) { |
| 8019 | spin_lock(&block_group->lock); |
| 8020 | |
| 8021 | if (!block_group->ro) { |
| 8022 | spin_unlock(&block_group->lock); |
| 8023 | continue; |
| 8024 | } |
| 8025 | |
| 8026 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8027 | BTRFS_BLOCK_GROUP_RAID10 | |
| 8028 | BTRFS_BLOCK_GROUP_DUP)) |
| 8029 | factor = 2; |
| 8030 | else |
| 8031 | factor = 1; |
| 8032 | |
| 8033 | free_bytes += (block_group->key.offset - |
| 8034 | btrfs_block_group_used(&block_group->item)) * |
| 8035 | factor; |
| 8036 | |
| 8037 | spin_unlock(&block_group->lock); |
| 8038 | } |
| 8039 | |
| 8040 | return free_bytes; |
| 8041 | } |
| 8042 | |
| 8043 | /* |
| 8044 | * helper to account the unused space of all the readonly block group in the |
| 8045 | * space_info. takes mirrors into account. |
| 8046 | */ |
| 8047 | u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo) |
| 8048 | { |
| 8049 | int i; |
| 8050 | u64 free_bytes = 0; |
| 8051 | |
| 8052 | spin_lock(&sinfo->lock); |
| 8053 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8054 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8055 | if (!list_empty(&sinfo->block_groups[i])) |
| 8056 | free_bytes += __btrfs_get_ro_block_group_free_space( |
| 8057 | &sinfo->block_groups[i]); |
| 8058 | |
| 8059 | spin_unlock(&sinfo->lock); |
| 8060 | |
| 8061 | return free_bytes; |
| 8062 | } |
| 8063 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 8064 | void btrfs_set_block_group_rw(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8065 | struct btrfs_block_group_cache *cache) |
| 8066 | { |
| 8067 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8068 | u64 num_bytes; |
| 8069 | |
| 8070 | BUG_ON(!cache->ro); |
| 8071 | |
| 8072 | spin_lock(&sinfo->lock); |
| 8073 | spin_lock(&cache->lock); |
| 8074 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8075 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
| 8076 | sinfo->bytes_readonly -= num_bytes; |
| 8077 | cache->ro = 0; |
| 8078 | spin_unlock(&cache->lock); |
| 8079 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8080 | } |
| 8081 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8082 | /* |
| 8083 | * checks to see if its even possible to relocate this block group. |
| 8084 | * |
| 8085 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 8086 | * ok to go ahead and try. |
| 8087 | */ |
| 8088 | int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8089 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8090 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8091 | struct btrfs_space_info *space_info; |
| 8092 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 8093 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8094 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8095 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8096 | u64 dev_min = 1; |
| 8097 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8098 | u64 target; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8099 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8100 | int full = 0; |
| 8101 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8102 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8103 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8104 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8105 | /* odd, couldn't find the block group, leave it alone */ |
| 8106 | if (!block_group) |
| 8107 | return -1; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8108 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8109 | min_free = btrfs_block_group_used(&block_group->item); |
| 8110 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8111 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8112 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8113 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8114 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8115 | space_info = block_group->space_info; |
| 8116 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8117 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8118 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8119 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8120 | /* |
| 8121 | * 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] | 8122 | * relocate it unless we're able to allocate a new chunk below. |
| 8123 | * |
| 8124 | * Otherwise, we need to make sure we have room in the space to handle |
| 8125 | * 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] | 8126 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 8127 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8128 | (space_info->bytes_used + space_info->bytes_reserved + |
| 8129 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 8130 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8131 | spin_unlock(&space_info->lock); |
| 8132 | goto out; |
| 8133 | } |
| 8134 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8135 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8136 | /* |
| 8137 | * ok we don't have enough space, but maybe we have free space on our |
| 8138 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8139 | * alloc devices and guess if we have enough space. if this block |
| 8140 | * group is going to be restriped, run checks against the target |
| 8141 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8142 | */ |
| 8143 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 8144 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8145 | /* |
| 8146 | * index: |
| 8147 | * 0: raid10 |
| 8148 | * 1: raid1 |
| 8149 | * 2: dup |
| 8150 | * 3: raid0 |
| 8151 | * 4: single |
| 8152 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8153 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 8154 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 8155 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8156 | } else { |
| 8157 | /* |
| 8158 | * this is just a balance, so if we were marked as full |
| 8159 | * we know there is no space for a new chunk |
| 8160 | */ |
| 8161 | if (full) |
| 8162 | goto out; |
| 8163 | |
| 8164 | index = get_block_group_index(block_group); |
| 8165 | } |
| 8166 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8167 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8168 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8169 | /* Divide by 2 */ |
| 8170 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8171 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8172 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8173 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8174 | /* Multiply by 2 */ |
| 8175 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8176 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8177 | dev_min = fs_devices->rw_devices; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8178 | do_div(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8179 | } |
| 8180 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8181 | /* We need to do this so that we can look at pending chunks */ |
| 8182 | trans = btrfs_join_transaction(root); |
| 8183 | if (IS_ERR(trans)) { |
| 8184 | ret = PTR_ERR(trans); |
| 8185 | goto out; |
| 8186 | } |
| 8187 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8188 | mutex_lock(&root->fs_info->chunk_mutex); |
| 8189 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8190 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8191 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8192 | /* |
| 8193 | * check to make sure we can actually find a chunk with enough |
| 8194 | * space to fit our block group in. |
| 8195 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 8196 | if (device->total_bytes > device->bytes_used + min_free && |
| 8197 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8198 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8199 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8200 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8201 | dev_nr++; |
| 8202 | |
| 8203 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8204 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8205 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8206 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8207 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8208 | } |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8209 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8210 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8211 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8212 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8213 | return ret; |
| 8214 | } |
| 8215 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 8216 | static int find_first_block_group(struct btrfs_root *root, |
| 8217 | struct btrfs_path *path, struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8218 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8219 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8220 | struct btrfs_key found_key; |
| 8221 | struct extent_buffer *leaf; |
| 8222 | int slot; |
| 8223 | |
| 8224 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 8225 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8226 | goto out; |
| 8227 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8228 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8229 | slot = path->slots[0]; |
| 8230 | leaf = path->nodes[0]; |
| 8231 | if (slot >= btrfs_header_nritems(leaf)) { |
| 8232 | ret = btrfs_next_leaf(root, path); |
| 8233 | if (ret == 0) |
| 8234 | continue; |
| 8235 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8236 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8237 | break; |
| 8238 | } |
| 8239 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 8240 | |
| 8241 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8242 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
| 8243 | ret = 0; |
| 8244 | goto out; |
| 8245 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8246 | path->slots[0]++; |
| 8247 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8248 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8249 | return ret; |
| 8250 | } |
| 8251 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8252 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 8253 | { |
| 8254 | struct btrfs_block_group_cache *block_group; |
| 8255 | u64 last = 0; |
| 8256 | |
| 8257 | while (1) { |
| 8258 | struct inode *inode; |
| 8259 | |
| 8260 | block_group = btrfs_lookup_first_block_group(info, last); |
| 8261 | while (block_group) { |
| 8262 | spin_lock(&block_group->lock); |
| 8263 | if (block_group->iref) |
| 8264 | break; |
| 8265 | spin_unlock(&block_group->lock); |
| 8266 | block_group = next_block_group(info->tree_root, |
| 8267 | block_group); |
| 8268 | } |
| 8269 | if (!block_group) { |
| 8270 | if (last == 0) |
| 8271 | break; |
| 8272 | last = 0; |
| 8273 | continue; |
| 8274 | } |
| 8275 | |
| 8276 | inode = block_group->inode; |
| 8277 | block_group->iref = 0; |
| 8278 | block_group->inode = NULL; |
| 8279 | spin_unlock(&block_group->lock); |
| 8280 | iput(inode); |
| 8281 | last = block_group->key.objectid + block_group->key.offset; |
| 8282 | btrfs_put_block_group(block_group); |
| 8283 | } |
| 8284 | } |
| 8285 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8286 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 8287 | { |
| 8288 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8289 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8290 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8291 | struct rb_node *n; |
| 8292 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8293 | down_write(&info->extent_commit_sem); |
| 8294 | while (!list_empty(&info->caching_block_groups)) { |
| 8295 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 8296 | struct btrfs_caching_control, list); |
| 8297 | list_del(&caching_ctl->list); |
| 8298 | put_caching_control(caching_ctl); |
| 8299 | } |
| 8300 | up_write(&info->extent_commit_sem); |
| 8301 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8302 | spin_lock(&info->block_group_cache_lock); |
| 8303 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 8304 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 8305 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8306 | rb_erase(&block_group->cache_node, |
| 8307 | &info->block_group_cache_tree); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8308 | spin_unlock(&info->block_group_cache_lock); |
| 8309 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8310 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8311 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8312 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8313 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8314 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8315 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8316 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8317 | /* |
| 8318 | * We haven't cached this block group, which means we could |
| 8319 | * possibly have excluded extents on this block group. |
| 8320 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 8321 | if (block_group->cached == BTRFS_CACHE_NO || |
| 8322 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8323 | free_excluded_extents(info->extent_root, block_group); |
| 8324 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8325 | btrfs_remove_free_space_cache(block_group); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 8326 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8327 | |
| 8328 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8329 | } |
| 8330 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8331 | |
| 8332 | /* now that all the block groups are freed, go through and |
| 8333 | * free all the space_info structs. This is only called during |
| 8334 | * the final stages of unmount, and so we know nobody is |
| 8335 | * using them. We call synchronize_rcu() once before we start, |
| 8336 | * just to be on the safe side. |
| 8337 | */ |
| 8338 | synchronize_rcu(); |
| 8339 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 8340 | release_global_block_rsv(info); |
| 8341 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8342 | while (!list_empty(&info->space_info)) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8343 | space_info = list_entry(info->space_info.next, |
| 8344 | struct btrfs_space_info, |
| 8345 | list); |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8346 | if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) { |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8347 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8348 | space_info->bytes_reserved > 0 || |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8349 | space_info->bytes_may_use > 0)) { |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8350 | dump_space_info(space_info, 0, 0); |
| 8351 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8352 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 8353 | percpu_counter_destroy(&space_info->total_bytes_pinned); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8354 | list_del(&space_info->list); |
| 8355 | kfree(space_info); |
| 8356 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8357 | return 0; |
| 8358 | } |
| 8359 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8360 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 8361 | struct btrfs_block_group_cache *cache) |
| 8362 | { |
| 8363 | int index = get_block_group_index(cache); |
| 8364 | |
| 8365 | down_write(&space_info->groups_sem); |
| 8366 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 8367 | up_write(&space_info->groups_sem); |
| 8368 | } |
| 8369 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8370 | int btrfs_read_block_groups(struct btrfs_root *root) |
| 8371 | { |
| 8372 | struct btrfs_path *path; |
| 8373 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8374 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 8375 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8376 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8377 | struct btrfs_key key; |
| 8378 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8379 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8380 | int need_clear = 0; |
| 8381 | u64 cache_gen; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 8382 | |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 8383 | root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8384 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8385 | key.offset = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8386 | btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8387 | path = btrfs_alloc_path(); |
| 8388 | if (!path) |
| 8389 | return -ENOMEM; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 8390 | path->reada = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8391 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 8392 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 8393 | if (btrfs_test_opt(root, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 8394 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8395 | need_clear = 1; |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 8396 | if (btrfs_test_opt(root, CLEAR_CACHE)) |
| 8397 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8398 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8399 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8400 | ret = find_first_block_group(root, path, &key); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8401 | if (ret > 0) |
| 8402 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8403 | if (ret != 0) |
| 8404 | goto error; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8405 | leaf = path->nodes[0]; |
| 8406 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 8407 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8408 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8409 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8410 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8411 | } |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8412 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 8413 | GFP_NOFS); |
| 8414 | if (!cache->free_space_ctl) { |
| 8415 | kfree(cache); |
| 8416 | ret = -ENOMEM; |
| 8417 | goto error; |
| 8418 | } |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 8419 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8420 | atomic_set(&cache->count, 1); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8421 | spin_lock_init(&cache->lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8422 | cache->fs_info = info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8423 | INIT_LIST_HEAD(&cache->list); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8424 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8425 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 8426 | if (need_clear) { |
| 8427 | /* |
| 8428 | * When we mount with old space cache, we need to |
| 8429 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 8430 | * |
| 8431 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 8432 | * truncate the old free space cache inode and |
| 8433 | * setup a new one. |
| 8434 | * b) Setting 'dirty flag' makes sure that we flush |
| 8435 | * the new space cache info onto disk. |
| 8436 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8437 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 8438 | if (btrfs_test_opt(root, SPACE_CACHE)) |
| 8439 | cache->dirty = 1; |
| 8440 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8441 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8442 | read_extent_buffer(leaf, &cache->item, |
| 8443 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 8444 | sizeof(cache->item)); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8445 | memcpy(&cache->key, &found_key, sizeof(found_key)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8446 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8447 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8448 | btrfs_release_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8449 | cache->flags = btrfs_block_group_flags(&cache->item); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8450 | cache->sectorsize = root->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8451 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 8452 | &root->fs_info->mapping_tree, |
| 8453 | found_key.objectid); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8454 | btrfs_init_free_space_ctl(cache); |
| 8455 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8456 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8457 | * We need to exclude the super stripes now so that the space |
| 8458 | * info has super bytes accounted for, otherwise we'll think |
| 8459 | * we have more space than we actually do. |
| 8460 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 8461 | ret = exclude_super_stripes(root, cache); |
| 8462 | if (ret) { |
| 8463 | /* |
| 8464 | * We may have excluded something, so call this just in |
| 8465 | * case. |
| 8466 | */ |
| 8467 | free_excluded_extents(root, cache); |
| 8468 | kfree(cache->free_space_ctl); |
| 8469 | kfree(cache); |
| 8470 | goto error; |
| 8471 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8472 | |
| 8473 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8474 | * check for two cases, either we are full, and therefore |
| 8475 | * don't need to bother with the caching work since we won't |
| 8476 | * find any space, or we are empty, and we can just add all |
| 8477 | * the space in and be done with it. This saves us _alot_ of |
| 8478 | * time, particularly in the full case. |
| 8479 | */ |
| 8480 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8481 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8482 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8483 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8484 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8485 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8486 | cache->cached = BTRFS_CACHE_FINISHED; |
| 8487 | add_new_free_space(cache, root->fs_info, |
| 8488 | found_key.objectid, |
| 8489 | found_key.objectid + |
| 8490 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8491 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8492 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 8493 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8494 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 8495 | if (ret) { |
| 8496 | btrfs_remove_free_space_cache(cache); |
| 8497 | btrfs_put_block_group(cache); |
| 8498 | goto error; |
| 8499 | } |
| 8500 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8501 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 8502 | btrfs_block_group_used(&cache->item), |
| 8503 | &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8504 | if (ret) { |
| 8505 | btrfs_remove_free_space_cache(cache); |
| 8506 | spin_lock(&info->block_group_cache_lock); |
| 8507 | rb_erase(&cache->cache_node, |
| 8508 | &info->block_group_cache_tree); |
| 8509 | spin_unlock(&info->block_group_cache_lock); |
| 8510 | btrfs_put_block_group(cache); |
| 8511 | goto error; |
| 8512 | } |
| 8513 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8514 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8515 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8516 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8517 | spin_unlock(&cache->space_info->lock); |
| 8518 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8519 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8520 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 8521 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 8522 | if (btrfs_chunk_readonly(root, cache->key.objectid)) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8523 | set_block_group_ro(cache, 1); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8524 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8525 | |
| 8526 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 8527 | if (!(get_alloc_profile(root, space_info->flags) & |
| 8528 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 8529 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8530 | BTRFS_BLOCK_GROUP_RAID5 | |
| 8531 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8532 | BTRFS_BLOCK_GROUP_DUP))) |
| 8533 | continue; |
| 8534 | /* |
| 8535 | * avoid allocating from un-mirrored block group if there are |
| 8536 | * mirrored block groups. |
| 8537 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 8538 | list_for_each_entry(cache, |
| 8539 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 8540 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8541 | set_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 8542 | list_for_each_entry(cache, |
| 8543 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 8544 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8545 | set_block_group_ro(cache, 1); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8546 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8547 | |
| 8548 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8549 | ret = 0; |
| 8550 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8551 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8552 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8553 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8554 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8555 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
| 8556 | struct btrfs_root *root) |
| 8557 | { |
| 8558 | struct btrfs_block_group_cache *block_group, *tmp; |
| 8559 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 8560 | struct btrfs_block_group_item item; |
| 8561 | struct btrfs_key key; |
| 8562 | int ret = 0; |
| 8563 | |
| 8564 | list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, |
| 8565 | new_bg_list) { |
| 8566 | list_del_init(&block_group->new_bg_list); |
| 8567 | |
| 8568 | if (ret) |
| 8569 | continue; |
| 8570 | |
| 8571 | spin_lock(&block_group->lock); |
| 8572 | memcpy(&item, &block_group->item, sizeof(item)); |
| 8573 | memcpy(&key, &block_group->key, sizeof(key)); |
| 8574 | spin_unlock(&block_group->lock); |
| 8575 | |
| 8576 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 8577 | sizeof(item)); |
| 8578 | if (ret) |
| 8579 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8580 | ret = btrfs_finish_chunk_alloc(trans, extent_root, |
| 8581 | key.objectid, key.offset); |
| 8582 | if (ret) |
| 8583 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8584 | } |
| 8585 | } |
| 8586 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8587 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
| 8588 | struct btrfs_root *root, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 8589 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8590 | u64 size) |
| 8591 | { |
| 8592 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8593 | struct btrfs_root *extent_root; |
| 8594 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8595 | |
| 8596 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8597 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 8598 | root->fs_info->last_trans_log_full_commit = trans->transid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8599 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 8600 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8601 | if (!cache) |
| 8602 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8603 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 8604 | GFP_NOFS); |
| 8605 | if (!cache->free_space_ctl) { |
| 8606 | kfree(cache); |
| 8607 | return -ENOMEM; |
| 8608 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8609 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 8610 | cache->key.objectid = chunk_offset; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8611 | cache->key.offset = size; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8612 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8613 | cache->sectorsize = root->sectorsize; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8614 | cache->fs_info = root->fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8615 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 8616 | &root->fs_info->mapping_tree, |
| 8617 | chunk_offset); |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8618 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8619 | atomic_set(&cache->count, 1); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8620 | spin_lock_init(&cache->lock); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8621 | INIT_LIST_HEAD(&cache->list); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8622 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8623 | INIT_LIST_HEAD(&cache->new_bg_list); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8624 | |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8625 | btrfs_init_free_space_ctl(cache); |
| 8626 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8627 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8628 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
| 8629 | cache->flags = type; |
| 8630 | btrfs_set_block_group_flags(&cache->item, type); |
| 8631 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8632 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8633 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 8634 | ret = exclude_super_stripes(root, cache); |
| 8635 | if (ret) { |
| 8636 | /* |
| 8637 | * We may have excluded something, so call this just in |
| 8638 | * case. |
| 8639 | */ |
| 8640 | free_excluded_extents(root, cache); |
| 8641 | kfree(cache->free_space_ctl); |
| 8642 | kfree(cache); |
| 8643 | return ret; |
| 8644 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8645 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8646 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 8647 | chunk_offset + size); |
| 8648 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8649 | free_excluded_extents(root, cache); |
| 8650 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8651 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 8652 | if (ret) { |
| 8653 | btrfs_remove_free_space_cache(cache); |
| 8654 | btrfs_put_block_group(cache); |
| 8655 | return ret; |
| 8656 | } |
| 8657 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8658 | ret = update_space_info(root->fs_info, cache->flags, size, bytes_used, |
| 8659 | &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8660 | if (ret) { |
| 8661 | btrfs_remove_free_space_cache(cache); |
| 8662 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 8663 | rb_erase(&cache->cache_node, |
| 8664 | &root->fs_info->block_group_cache_tree); |
| 8665 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 8666 | btrfs_put_block_group(cache); |
| 8667 | return ret; |
| 8668 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 8669 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8670 | |
| 8671 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8672 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8673 | spin_unlock(&cache->space_info->lock); |
| 8674 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8675 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8676 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8677 | list_add_tail(&cache->new_bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8678 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 8679 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8680 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8681 | return 0; |
| 8682 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8683 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8684 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 8685 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8686 | u64 extra_flags = chunk_to_extended(flags) & |
| 8687 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8688 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 8689 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8690 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 8691 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 8692 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 8693 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 8694 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 8695 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 8696 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8697 | } |
| 8698 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8699 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
| 8700 | struct btrfs_root *root, u64 group_start) |
| 8701 | { |
| 8702 | struct btrfs_path *path; |
| 8703 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 8704 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8705 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8706 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8707 | struct inode *inode; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8708 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8709 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 8710 | int factor; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8711 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8712 | root = root->fs_info->extent_root; |
| 8713 | |
| 8714 | block_group = btrfs_lookup_block_group(root->fs_info, group_start); |
| 8715 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8716 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8717 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 8718 | /* |
| 8719 | * Free the reserved super bytes from this block group before |
| 8720 | * remove it. |
| 8721 | */ |
| 8722 | free_excluded_extents(root, block_group); |
| 8723 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8724 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8725 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 8726 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 8727 | BTRFS_BLOCK_GROUP_RAID1 | |
| 8728 | BTRFS_BLOCK_GROUP_RAID10)) |
| 8729 | factor = 2; |
| 8730 | else |
| 8731 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8732 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 8733 | /* make sure this block group isn't part of an allocation cluster */ |
| 8734 | cluster = &root->fs_info->data_alloc_cluster; |
| 8735 | spin_lock(&cluster->refill_lock); |
| 8736 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 8737 | spin_unlock(&cluster->refill_lock); |
| 8738 | |
| 8739 | /* |
| 8740 | * make sure this block group isn't part of a metadata |
| 8741 | * allocation cluster |
| 8742 | */ |
| 8743 | cluster = &root->fs_info->meta_alloc_cluster; |
| 8744 | spin_lock(&cluster->refill_lock); |
| 8745 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 8746 | spin_unlock(&cluster->refill_lock); |
| 8747 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8748 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8749 | if (!path) { |
| 8750 | ret = -ENOMEM; |
| 8751 | goto out; |
| 8752 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8753 | |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 8754 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8755 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 8756 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8757 | if (ret) { |
| 8758 | btrfs_add_delayed_iput(inode); |
| 8759 | goto out; |
| 8760 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8761 | clear_nlink(inode); |
| 8762 | /* One for the block groups ref */ |
| 8763 | spin_lock(&block_group->lock); |
| 8764 | if (block_group->iref) { |
| 8765 | block_group->iref = 0; |
| 8766 | block_group->inode = NULL; |
| 8767 | spin_unlock(&block_group->lock); |
| 8768 | iput(inode); |
| 8769 | } else { |
| 8770 | spin_unlock(&block_group->lock); |
| 8771 | } |
| 8772 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 8773 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8774 | } |
| 8775 | |
| 8776 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 8777 | key.offset = block_group->key.objectid; |
| 8778 | key.type = 0; |
| 8779 | |
| 8780 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 8781 | if (ret < 0) |
| 8782 | goto out; |
| 8783 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8784 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8785 | if (ret == 0) { |
| 8786 | ret = btrfs_del_item(trans, tree_root, path); |
| 8787 | if (ret) |
| 8788 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8789 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8790 | } |
| 8791 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 8792 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8793 | rb_erase(&block_group->cache_node, |
| 8794 | &root->fs_info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 8795 | |
| 8796 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 8797 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 8798 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8799 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8800 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 8801 | /* |
| 8802 | * we must use list_del_init so people can check to see if they |
| 8803 | * are still on the list after taking the semaphore |
| 8804 | */ |
| 8805 | list_del_init(&block_group->list); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8806 | if (list_empty(&block_group->space_info->block_groups[index])) |
| 8807 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8808 | up_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8809 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8810 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8811 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8812 | |
| 8813 | btrfs_remove_free_space_cache(block_group); |
| 8814 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8815 | spin_lock(&block_group->space_info->lock); |
| 8816 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 8817 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 8818 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8819 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 8820 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8821 | memcpy(&key, &block_group->key, sizeof(key)); |
| 8822 | |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 8823 | btrfs_clear_space_info_full(root->fs_info); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8824 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8825 | btrfs_put_block_group(block_group); |
| 8826 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8827 | |
| 8828 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 8829 | if (ret > 0) |
| 8830 | ret = -EIO; |
| 8831 | if (ret < 0) |
| 8832 | goto out; |
| 8833 | |
| 8834 | ret = btrfs_del_item(trans, root, path); |
| 8835 | out: |
| 8836 | btrfs_free_path(path); |
| 8837 | return ret; |
| 8838 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8839 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8840 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 8841 | { |
| 8842 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8843 | struct btrfs_super_block *disk_super; |
| 8844 | u64 features; |
| 8845 | u64 flags; |
| 8846 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8847 | int ret; |
| 8848 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 8849 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8850 | if (!btrfs_super_root(disk_super)) |
| 8851 | return 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8852 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8853 | features = btrfs_super_incompat_flags(disk_super); |
| 8854 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 8855 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8856 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8857 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 8858 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8859 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8860 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8861 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8862 | if (mixed) { |
| 8863 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
| 8864 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 8865 | } else { |
| 8866 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 8867 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 8868 | if (ret) |
| 8869 | goto out; |
| 8870 | |
| 8871 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 8872 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 8873 | } |
| 8874 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8875 | return ret; |
| 8876 | } |
| 8877 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8878 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 8879 | { |
| 8880 | return unpin_extent_range(root, start, end); |
| 8881 | } |
| 8882 | |
| 8883 | int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 8884 | u64 num_bytes, u64 *actual_bytes) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8885 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 8886 | return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8887 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8888 | |
| 8889 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 8890 | { |
| 8891 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 8892 | struct btrfs_block_group_cache *cache = NULL; |
| 8893 | u64 group_trimmed; |
| 8894 | u64 start; |
| 8895 | u64 end; |
| 8896 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 8897 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8898 | int ret = 0; |
| 8899 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 8900 | /* |
| 8901 | * try to trim all FS space, our block group may start from non-zero. |
| 8902 | */ |
| 8903 | if (range->len == total_bytes) |
| 8904 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 8905 | else |
| 8906 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8907 | |
| 8908 | while (cache) { |
| 8909 | if (cache->key.objectid >= (range->start + range->len)) { |
| 8910 | btrfs_put_block_group(cache); |
| 8911 | break; |
| 8912 | } |
| 8913 | |
| 8914 | start = max(range->start, cache->key.objectid); |
| 8915 | end = min(range->start + range->len, |
| 8916 | cache->key.objectid + cache->key.offset); |
| 8917 | |
| 8918 | if (end - start >= range->minlen) { |
| 8919 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 8920 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 8921 | if (ret) { |
| 8922 | btrfs_put_block_group(cache); |
| 8923 | break; |
| 8924 | } |
| 8925 | ret = wait_block_group_cache_done(cache); |
| 8926 | if (ret) { |
| 8927 | btrfs_put_block_group(cache); |
| 8928 | break; |
| 8929 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8930 | } |
| 8931 | ret = btrfs_trim_block_group(cache, |
| 8932 | &group_trimmed, |
| 8933 | start, |
| 8934 | end, |
| 8935 | range->minlen); |
| 8936 | |
| 8937 | trimmed += group_trimmed; |
| 8938 | if (ret) { |
| 8939 | btrfs_put_block_group(cache); |
| 8940 | break; |
| 8941 | } |
| 8942 | } |
| 8943 | |
| 8944 | cache = next_block_group(fs_info->tree_root, cache); |
| 8945 | } |
| 8946 | |
| 8947 | range->len = trimmed; |
| 8948 | return ret; |
| 8949 | } |