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 | b742bb8 | 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 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 770 | if (metadata) { |
| 771 | key.objectid = bytenr; |
| 772 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 773 | key.offset = offset; |
| 774 | } else { |
| 775 | key.objectid = bytenr; |
| 776 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 777 | key.offset = offset; |
| 778 | } |
| 779 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 780 | if (!trans) { |
| 781 | path->skip_locking = 1; |
| 782 | path->search_commit_root = 1; |
| 783 | } |
| 784 | again: |
| 785 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, |
| 786 | &key, path, 0, 0); |
| 787 | if (ret < 0) |
| 788 | goto out_free; |
| 789 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 790 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 791 | metadata = 0; |
| 792 | if (path->slots[0]) { |
| 793 | path->slots[0]--; |
| 794 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 795 | path->slots[0]); |
| 796 | if (key.objectid == bytenr && |
| 797 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 798 | key.offset == root->leafsize) |
| 799 | ret = 0; |
| 800 | } |
| 801 | if (ret) { |
| 802 | key.objectid = bytenr; |
| 803 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 804 | key.offset = root->leafsize; |
| 805 | btrfs_release_path(path); |
| 806 | goto again; |
| 807 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 808 | } |
| 809 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 810 | if (ret == 0) { |
| 811 | leaf = path->nodes[0]; |
| 812 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 813 | if (item_size >= sizeof(*ei)) { |
| 814 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 815 | struct btrfs_extent_item); |
| 816 | num_refs = btrfs_extent_refs(leaf, ei); |
| 817 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 818 | } else { |
| 819 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 820 | struct btrfs_extent_item_v0 *ei0; |
| 821 | BUG_ON(item_size != sizeof(*ei0)); |
| 822 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 823 | struct btrfs_extent_item_v0); |
| 824 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 825 | /* FIXME: this isn't correct for data */ |
| 826 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 827 | #else |
| 828 | BUG(); |
| 829 | #endif |
| 830 | } |
| 831 | BUG_ON(num_refs == 0); |
| 832 | } else { |
| 833 | num_refs = 0; |
| 834 | extent_flags = 0; |
| 835 | ret = 0; |
| 836 | } |
| 837 | |
| 838 | if (!trans) |
| 839 | goto out; |
| 840 | |
| 841 | delayed_refs = &trans->transaction->delayed_refs; |
| 842 | spin_lock(&delayed_refs->lock); |
| 843 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 844 | if (head) { |
| 845 | if (!mutex_trylock(&head->mutex)) { |
| 846 | atomic_inc(&head->node.refs); |
| 847 | spin_unlock(&delayed_refs->lock); |
| 848 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 849 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 850 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 851 | /* |
| 852 | * Mutex was contended, block until it's released and try |
| 853 | * again |
| 854 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 855 | mutex_lock(&head->mutex); |
| 856 | mutex_unlock(&head->mutex); |
| 857 | btrfs_put_delayed_ref(&head->node); |
| 858 | goto again; |
| 859 | } |
| 860 | if (head->extent_op && head->extent_op->update_flags) |
| 861 | extent_flags |= head->extent_op->flags_to_set; |
| 862 | else |
| 863 | BUG_ON(num_refs == 0); |
| 864 | |
| 865 | num_refs += head->node.ref_mod; |
| 866 | mutex_unlock(&head->mutex); |
| 867 | } |
| 868 | spin_unlock(&delayed_refs->lock); |
| 869 | out: |
| 870 | WARN_ON(num_refs == 0); |
| 871 | if (refs) |
| 872 | *refs = num_refs; |
| 873 | if (flags) |
| 874 | *flags = extent_flags; |
| 875 | out_free: |
| 876 | btrfs_free_path(path); |
| 877 | return ret; |
| 878 | } |
| 879 | |
| 880 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 881 | * Back reference rules. Back refs have three main goals: |
| 882 | * |
| 883 | * 1) differentiate between all holders of references to an extent so that |
| 884 | * when a reference is dropped we can make sure it was a valid reference |
| 885 | * before freeing the extent. |
| 886 | * |
| 887 | * 2) Provide enough information to quickly find the holders of an extent |
| 888 | * if we notice a given block is corrupted or bad. |
| 889 | * |
| 890 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 891 | * maintenance. This is actually the same as #2, but with a slightly |
| 892 | * different use case. |
| 893 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 894 | * There are two kinds of back refs. The implicit back refs is optimized |
| 895 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 896 | * back refs of this kind provide information about the block's owner tree |
| 897 | * and the pointer's key. These information allow us to find the block by |
| 898 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 899 | * referenced by their owner trees. The location of tree block is recorded |
| 900 | * in the back refs. Actually the full back refs is generic, and can be |
| 901 | * used in all cases the implicit back refs is used. The major shortcoming |
| 902 | * of the full back refs is its overhead. Every time a tree block gets |
| 903 | * COWed, we have to update back refs entry for all pointers in it. |
| 904 | * |
| 905 | * For a newly allocated tree block, we use implicit back refs for |
| 906 | * pointers in it. This means most tree related operations only involve |
| 907 | * implicit back refs. For a tree block created in old transaction, the |
| 908 | * only way to drop a reference to it is COW it. So we can detect the |
| 909 | * event that tree block loses its owner tree's reference and do the |
| 910 | * back refs conversion. |
| 911 | * |
| 912 | * When a tree block is COW'd through a tree, there are four cases: |
| 913 | * |
| 914 | * The reference count of the block is one and the tree is the block's |
| 915 | * owner tree. Nothing to do in this case. |
| 916 | * |
| 917 | * The reference count of the block is one and the tree is not the |
| 918 | * block's owner tree. In this case, full back refs is used for pointers |
| 919 | * in the block. Remove these full back refs, add implicit back refs for |
| 920 | * every pointers in the new block. |
| 921 | * |
| 922 | * The reference count of the block is greater than one and the tree is |
| 923 | * the block's owner tree. In this case, implicit back refs is used for |
| 924 | * pointers in the block. Add full back refs for every pointers in the |
| 925 | * block, increase lower level extents' reference counts. The original |
| 926 | * implicit back refs are entailed to the new block. |
| 927 | * |
| 928 | * The reference count of the block is greater than one and the tree is |
| 929 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 930 | * the new block, increase lower level extents' reference count. |
| 931 | * |
| 932 | * Back Reference Key composing: |
| 933 | * |
| 934 | * The key objectid corresponds to the first byte in the extent, |
| 935 | * The key type is used to differentiate between types of back refs. |
| 936 | * There are different meanings of the key offset for different types |
| 937 | * of back refs. |
| 938 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 939 | * File extents can be referenced by: |
| 940 | * |
| 941 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 942 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 943 | * - different offsets inside a file (bookend extents in file.c) |
| 944 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 945 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 946 | * |
| 947 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 948 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 949 | * - original offset in the file |
| 950 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 951 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 952 | * The key offset for the implicit back refs is hash of the first |
| 953 | * three fields. |
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 | * The extent ref structure for the full back refs has field for: |
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 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 958 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 959 | * The key offset for the implicit back refs is the first byte of |
| 960 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 961 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 962 | * When a file extent is allocated, The implicit back refs is used. |
| 963 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 964 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 965 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 966 | * |
| 967 | * When a file extent is removed file truncation, we find the |
| 968 | * corresponding implicit back refs and check the following fields: |
| 969 | * |
| 970 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 971 | * |
| 972 | * Btree extents can be referenced by: |
| 973 | * |
| 974 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 975 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 976 | * Both the implicit back refs and the full back refs for tree blocks |
| 977 | * only consist of key. The key offset for the implicit back refs is |
| 978 | * objectid of block's owner tree. The key offset for the full back refs |
| 979 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 980 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 981 | * When implicit back refs is used, information about the lowest key and |
| 982 | * level of the tree block are required. These information are stored in |
| 983 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 984 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 985 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 986 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 987 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
| 988 | struct btrfs_root *root, |
| 989 | struct btrfs_path *path, |
| 990 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 991 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 992 | struct btrfs_extent_item *item; |
| 993 | struct btrfs_extent_item_v0 *ei0; |
| 994 | struct btrfs_extent_ref_v0 *ref0; |
| 995 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 996 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 997 | struct btrfs_key key; |
| 998 | struct btrfs_key found_key; |
| 999 | u32 new_size = sizeof(*item); |
| 1000 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1001 | int ret; |
| 1002 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1003 | leaf = path->nodes[0]; |
| 1004 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1005 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1006 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1007 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1008 | struct btrfs_extent_item_v0); |
| 1009 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1010 | |
| 1011 | if (owner == (u64)-1) { |
| 1012 | while (1) { |
| 1013 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1014 | ret = btrfs_next_leaf(root, path); |
| 1015 | if (ret < 0) |
| 1016 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1017 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1018 | leaf = path->nodes[0]; |
| 1019 | } |
| 1020 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1021 | path->slots[0]); |
| 1022 | BUG_ON(key.objectid != found_key.objectid); |
| 1023 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1024 | path->slots[0]++; |
| 1025 | continue; |
| 1026 | } |
| 1027 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1028 | struct btrfs_extent_ref_v0); |
| 1029 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1030 | break; |
| 1031 | } |
| 1032 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1033 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1034 | |
| 1035 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1036 | new_size += sizeof(*bi); |
| 1037 | |
| 1038 | new_size -= sizeof(*ei0); |
| 1039 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1040 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1041 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1042 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1043 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1044 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1045 | btrfs_extend_item(root, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1046 | |
| 1047 | leaf = path->nodes[0]; |
| 1048 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1049 | btrfs_set_extent_refs(leaf, item, refs); |
| 1050 | /* FIXME: get real generation */ |
| 1051 | btrfs_set_extent_generation(leaf, item, 0); |
| 1052 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1053 | btrfs_set_extent_flags(leaf, item, |
| 1054 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1055 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1056 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1057 | /* FIXME: get first key of the block */ |
| 1058 | memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi)); |
| 1059 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1060 | } else { |
| 1061 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1062 | } |
| 1063 | btrfs_mark_buffer_dirty(leaf); |
| 1064 | return 0; |
| 1065 | } |
| 1066 | #endif |
| 1067 | |
| 1068 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1069 | { |
| 1070 | u32 high_crc = ~(u32)0; |
| 1071 | u32 low_crc = ~(u32)0; |
| 1072 | __le64 lenum; |
| 1073 | |
| 1074 | lenum = cpu_to_le64(root_objectid); |
David Woodhouse | 163e783 | 2009-04-19 13:02:41 +0100 | [diff] [blame] | 1075 | high_crc = crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1076 | lenum = cpu_to_le64(owner); |
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 | lenum = cpu_to_le64(offset); |
David Woodhouse | 163e783 | 2009-04-19 13:02:41 +0100 | [diff] [blame] | 1079 | low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1080 | |
| 1081 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1082 | } |
| 1083 | |
| 1084 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1085 | struct btrfs_extent_data_ref *ref) |
| 1086 | { |
| 1087 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1088 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1089 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1090 | } |
| 1091 | |
| 1092 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1093 | struct btrfs_extent_data_ref *ref, |
| 1094 | u64 root_objectid, u64 owner, u64 offset) |
| 1095 | { |
| 1096 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1097 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1098 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1099 | return 0; |
| 1100 | return 1; |
| 1101 | } |
| 1102 | |
| 1103 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1104 | struct btrfs_root *root, |
| 1105 | struct btrfs_path *path, |
| 1106 | u64 bytenr, u64 parent, |
| 1107 | u64 root_objectid, |
| 1108 | u64 owner, u64 offset) |
| 1109 | { |
| 1110 | struct btrfs_key key; |
| 1111 | struct btrfs_extent_data_ref *ref; |
| 1112 | struct extent_buffer *leaf; |
| 1113 | u32 nritems; |
| 1114 | int ret; |
| 1115 | int recow; |
| 1116 | int err = -ENOENT; |
| 1117 | |
| 1118 | key.objectid = bytenr; |
| 1119 | if (parent) { |
| 1120 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1121 | key.offset = parent; |
| 1122 | } else { |
| 1123 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1124 | key.offset = hash_extent_data_ref(root_objectid, |
| 1125 | owner, offset); |
| 1126 | } |
| 1127 | again: |
| 1128 | recow = 0; |
| 1129 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1130 | if (ret < 0) { |
| 1131 | err = ret; |
| 1132 | goto fail; |
| 1133 | } |
| 1134 | |
| 1135 | if (parent) { |
| 1136 | if (!ret) |
| 1137 | return 0; |
| 1138 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1139 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1140 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1141 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1142 | if (ret < 0) { |
| 1143 | err = ret; |
| 1144 | goto fail; |
| 1145 | } |
| 1146 | if (!ret) |
| 1147 | return 0; |
| 1148 | #endif |
| 1149 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1150 | } |
| 1151 | |
| 1152 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1153 | nritems = btrfs_header_nritems(leaf); |
| 1154 | while (1) { |
| 1155 | if (path->slots[0] >= nritems) { |
| 1156 | ret = btrfs_next_leaf(root, path); |
| 1157 | if (ret < 0) |
| 1158 | err = ret; |
| 1159 | if (ret) |
| 1160 | goto fail; |
| 1161 | |
| 1162 | leaf = path->nodes[0]; |
| 1163 | nritems = btrfs_header_nritems(leaf); |
| 1164 | recow = 1; |
| 1165 | } |
| 1166 | |
| 1167 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1168 | if (key.objectid != bytenr || |
| 1169 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1170 | goto fail; |
| 1171 | |
| 1172 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1173 | struct btrfs_extent_data_ref); |
| 1174 | |
| 1175 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1176 | owner, offset)) { |
| 1177 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1178 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1179 | goto again; |
| 1180 | } |
| 1181 | err = 0; |
| 1182 | break; |
| 1183 | } |
| 1184 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1185 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1186 | fail: |
| 1187 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1188 | } |
| 1189 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1190 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1191 | struct btrfs_root *root, |
| 1192 | struct btrfs_path *path, |
| 1193 | u64 bytenr, u64 parent, |
| 1194 | u64 root_objectid, u64 owner, |
| 1195 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1196 | { |
| 1197 | struct btrfs_key key; |
| 1198 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1199 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1200 | u32 num_refs; |
| 1201 | int ret; |
| 1202 | |
| 1203 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1204 | if (parent) { |
| 1205 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1206 | key.offset = parent; |
| 1207 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1208 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1209 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1210 | key.offset = hash_extent_data_ref(root_objectid, |
| 1211 | owner, offset); |
| 1212 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1213 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1214 | |
| 1215 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1216 | if (ret && ret != -EEXIST) |
| 1217 | goto fail; |
| 1218 | |
| 1219 | leaf = path->nodes[0]; |
| 1220 | if (parent) { |
| 1221 | struct btrfs_shared_data_ref *ref; |
| 1222 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1223 | struct btrfs_shared_data_ref); |
| 1224 | if (ret == 0) { |
| 1225 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1226 | } else { |
| 1227 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1228 | num_refs += refs_to_add; |
| 1229 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1230 | } |
| 1231 | } else { |
| 1232 | struct btrfs_extent_data_ref *ref; |
| 1233 | while (ret == -EEXIST) { |
| 1234 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1235 | struct btrfs_extent_data_ref); |
| 1236 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1237 | owner, offset)) |
| 1238 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1239 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1240 | key.offset++; |
| 1241 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1242 | size); |
| 1243 | if (ret && ret != -EEXIST) |
| 1244 | goto fail; |
| 1245 | |
| 1246 | leaf = path->nodes[0]; |
| 1247 | } |
| 1248 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1249 | struct btrfs_extent_data_ref); |
| 1250 | if (ret == 0) { |
| 1251 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1252 | root_objectid); |
| 1253 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1254 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1255 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1256 | } else { |
| 1257 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1258 | num_refs += refs_to_add; |
| 1259 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1260 | } |
| 1261 | } |
| 1262 | btrfs_mark_buffer_dirty(leaf); |
| 1263 | ret = 0; |
| 1264 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1265 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1266 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1267 | } |
| 1268 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1269 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1270 | struct btrfs_root *root, |
| 1271 | struct btrfs_path *path, |
| 1272 | int refs_to_drop) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1273 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1274 | struct btrfs_key key; |
| 1275 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1276 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1277 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1278 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1279 | int ret = 0; |
| 1280 | |
| 1281 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1282 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1283 | |
| 1284 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1285 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1286 | struct btrfs_extent_data_ref); |
| 1287 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1288 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1289 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1290 | struct btrfs_shared_data_ref); |
| 1291 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1292 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1293 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1294 | struct btrfs_extent_ref_v0 *ref0; |
| 1295 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1296 | struct btrfs_extent_ref_v0); |
| 1297 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1298 | #endif |
| 1299 | } else { |
| 1300 | BUG(); |
| 1301 | } |
| 1302 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1303 | BUG_ON(num_refs < refs_to_drop); |
| 1304 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1305 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1306 | if (num_refs == 0) { |
| 1307 | ret = btrfs_del_item(trans, root, path); |
| 1308 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1309 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1310 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1311 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1312 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1313 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1314 | else { |
| 1315 | struct btrfs_extent_ref_v0 *ref0; |
| 1316 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1317 | struct btrfs_extent_ref_v0); |
| 1318 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1319 | } |
| 1320 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1321 | btrfs_mark_buffer_dirty(leaf); |
| 1322 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1323 | return ret; |
| 1324 | } |
| 1325 | |
| 1326 | static noinline u32 extent_data_ref_count(struct btrfs_root *root, |
| 1327 | struct btrfs_path *path, |
| 1328 | struct btrfs_extent_inline_ref *iref) |
| 1329 | { |
| 1330 | struct btrfs_key key; |
| 1331 | struct extent_buffer *leaf; |
| 1332 | struct btrfs_extent_data_ref *ref1; |
| 1333 | struct btrfs_shared_data_ref *ref2; |
| 1334 | u32 num_refs = 0; |
| 1335 | |
| 1336 | leaf = path->nodes[0]; |
| 1337 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1338 | if (iref) { |
| 1339 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1340 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1341 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1342 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1343 | } else { |
| 1344 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1345 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1346 | } |
| 1347 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1348 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1349 | struct btrfs_extent_data_ref); |
| 1350 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1351 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1352 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1353 | struct btrfs_shared_data_ref); |
| 1354 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1355 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1356 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1357 | struct btrfs_extent_ref_v0 *ref0; |
| 1358 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1359 | struct btrfs_extent_ref_v0); |
| 1360 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1361 | #endif |
| 1362 | } else { |
| 1363 | WARN_ON(1); |
| 1364 | } |
| 1365 | return num_refs; |
| 1366 | } |
| 1367 | |
| 1368 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1369 | struct btrfs_root *root, |
| 1370 | struct btrfs_path *path, |
| 1371 | u64 bytenr, u64 parent, |
| 1372 | u64 root_objectid) |
| 1373 | { |
| 1374 | struct btrfs_key key; |
| 1375 | int ret; |
| 1376 | |
| 1377 | key.objectid = bytenr; |
| 1378 | if (parent) { |
| 1379 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1380 | key.offset = parent; |
| 1381 | } else { |
| 1382 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1383 | key.offset = root_objectid; |
| 1384 | } |
| 1385 | |
| 1386 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1387 | if (ret > 0) |
| 1388 | ret = -ENOENT; |
| 1389 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1390 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1391 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1392 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1393 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1394 | if (ret > 0) |
| 1395 | ret = -ENOENT; |
| 1396 | } |
| 1397 | #endif |
| 1398 | return ret; |
| 1399 | } |
| 1400 | |
| 1401 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1402 | struct btrfs_root *root, |
| 1403 | struct btrfs_path *path, |
| 1404 | u64 bytenr, u64 parent, |
| 1405 | u64 root_objectid) |
| 1406 | { |
| 1407 | struct btrfs_key key; |
| 1408 | int ret; |
| 1409 | |
| 1410 | key.objectid = bytenr; |
| 1411 | if (parent) { |
| 1412 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1413 | key.offset = parent; |
| 1414 | } else { |
| 1415 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1416 | key.offset = root_objectid; |
| 1417 | } |
| 1418 | |
| 1419 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1420 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1421 | return ret; |
| 1422 | } |
| 1423 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1424 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1425 | { |
| 1426 | int type; |
| 1427 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1428 | if (parent > 0) |
| 1429 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1430 | else |
| 1431 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1432 | } else { |
| 1433 | if (parent > 0) |
| 1434 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1435 | else |
| 1436 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1437 | } |
| 1438 | return type; |
| 1439 | } |
| 1440 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1441 | static int find_next_key(struct btrfs_path *path, int level, |
| 1442 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1443 | |
| 1444 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1445 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1446 | if (!path->nodes[level]) |
| 1447 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1448 | if (path->slots[level] + 1 >= |
| 1449 | btrfs_header_nritems(path->nodes[level])) |
| 1450 | continue; |
| 1451 | if (level == 0) |
| 1452 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1453 | path->slots[level] + 1); |
| 1454 | else |
| 1455 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1456 | path->slots[level] + 1); |
| 1457 | return 0; |
| 1458 | } |
| 1459 | return 1; |
| 1460 | } |
| 1461 | |
| 1462 | /* |
| 1463 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1464 | * to the address of inline back ref, and 0 is returned. |
| 1465 | * |
| 1466 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1467 | * should be inserted, and -ENOENT is returned. |
| 1468 | * |
| 1469 | * if insert is true and there are too many inline back refs, the path |
| 1470 | * points to the extent item, and -EAGAIN is returned. |
| 1471 | * |
| 1472 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1473 | * items in the tree are ordered. |
| 1474 | */ |
| 1475 | static noinline_for_stack |
| 1476 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1477 | struct btrfs_root *root, |
| 1478 | struct btrfs_path *path, |
| 1479 | struct btrfs_extent_inline_ref **ref_ret, |
| 1480 | u64 bytenr, u64 num_bytes, |
| 1481 | u64 parent, u64 root_objectid, |
| 1482 | u64 owner, u64 offset, int insert) |
| 1483 | { |
| 1484 | struct btrfs_key key; |
| 1485 | struct extent_buffer *leaf; |
| 1486 | struct btrfs_extent_item *ei; |
| 1487 | struct btrfs_extent_inline_ref *iref; |
| 1488 | u64 flags; |
| 1489 | u64 item_size; |
| 1490 | unsigned long ptr; |
| 1491 | unsigned long end; |
| 1492 | int extra_size; |
| 1493 | int type; |
| 1494 | int want; |
| 1495 | int ret; |
| 1496 | int err = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1497 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 1498 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1499 | |
| 1500 | key.objectid = bytenr; |
| 1501 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1502 | key.offset = num_bytes; |
| 1503 | |
| 1504 | want = extent_ref_type(parent, owner); |
| 1505 | if (insert) { |
| 1506 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1507 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1508 | } else |
| 1509 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1510 | |
| 1511 | /* |
| 1512 | * Owner is our parent level, so we can just add one to get the level |
| 1513 | * for the block we are interested in. |
| 1514 | */ |
| 1515 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1516 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1517 | key.offset = owner; |
| 1518 | } |
| 1519 | |
| 1520 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1521 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1522 | if (ret < 0) { |
| 1523 | err = ret; |
| 1524 | goto out; |
| 1525 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1526 | |
| 1527 | /* |
| 1528 | * We may be a newly converted file system which still has the old fat |
| 1529 | * extent entries for metadata, so try and see if we have one of those. |
| 1530 | */ |
| 1531 | if (ret > 0 && skinny_metadata) { |
| 1532 | skinny_metadata = false; |
| 1533 | if (path->slots[0]) { |
| 1534 | path->slots[0]--; |
| 1535 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1536 | path->slots[0]); |
| 1537 | if (key.objectid == bytenr && |
| 1538 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1539 | key.offset == num_bytes) |
| 1540 | ret = 0; |
| 1541 | } |
| 1542 | if (ret) { |
| 1543 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1544 | key.offset = num_bytes; |
| 1545 | btrfs_release_path(path); |
| 1546 | goto again; |
| 1547 | } |
| 1548 | } |
| 1549 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1550 | if (ret && !insert) { |
| 1551 | err = -ENOENT; |
| 1552 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1553 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1554 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1555 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1556 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1557 | |
| 1558 | leaf = path->nodes[0]; |
| 1559 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1560 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1561 | if (item_size < sizeof(*ei)) { |
| 1562 | if (!insert) { |
| 1563 | err = -ENOENT; |
| 1564 | goto out; |
| 1565 | } |
| 1566 | ret = convert_extent_item_v0(trans, root, path, owner, |
| 1567 | extra_size); |
| 1568 | if (ret < 0) { |
| 1569 | err = ret; |
| 1570 | goto out; |
| 1571 | } |
| 1572 | leaf = path->nodes[0]; |
| 1573 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1574 | } |
| 1575 | #endif |
| 1576 | BUG_ON(item_size < sizeof(*ei)); |
| 1577 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1578 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1579 | flags = btrfs_extent_flags(leaf, ei); |
| 1580 | |
| 1581 | ptr = (unsigned long)(ei + 1); |
| 1582 | end = (unsigned long)ei + item_size; |
| 1583 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1584 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1585 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1586 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1587 | } |
| 1588 | |
| 1589 | err = -ENOENT; |
| 1590 | while (1) { |
| 1591 | if (ptr >= end) { |
| 1592 | WARN_ON(ptr > end); |
| 1593 | break; |
| 1594 | } |
| 1595 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1596 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1597 | if (want < type) |
| 1598 | break; |
| 1599 | if (want > type) { |
| 1600 | ptr += btrfs_extent_inline_ref_size(type); |
| 1601 | continue; |
| 1602 | } |
| 1603 | |
| 1604 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1605 | struct btrfs_extent_data_ref *dref; |
| 1606 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1607 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1608 | owner, offset)) { |
| 1609 | err = 0; |
| 1610 | break; |
| 1611 | } |
| 1612 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1613 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1614 | break; |
| 1615 | } else { |
| 1616 | u64 ref_offset; |
| 1617 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1618 | if (parent > 0) { |
| 1619 | if (parent == ref_offset) { |
| 1620 | err = 0; |
| 1621 | break; |
| 1622 | } |
| 1623 | if (ref_offset < parent) |
| 1624 | break; |
| 1625 | } else { |
| 1626 | if (root_objectid == ref_offset) { |
| 1627 | err = 0; |
| 1628 | break; |
| 1629 | } |
| 1630 | if (ref_offset < root_objectid) |
| 1631 | break; |
| 1632 | } |
| 1633 | } |
| 1634 | ptr += btrfs_extent_inline_ref_size(type); |
| 1635 | } |
| 1636 | if (err == -ENOENT && insert) { |
| 1637 | if (item_size + extra_size >= |
| 1638 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1639 | err = -EAGAIN; |
| 1640 | goto out; |
| 1641 | } |
| 1642 | /* |
| 1643 | * To add new inline back ref, we have to make sure |
| 1644 | * there is no corresponding back ref item. |
| 1645 | * For simplicity, we just do not add new inline back |
| 1646 | * ref if there is any kind of item for this block |
| 1647 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1648 | if (find_next_key(path, 0, &key) == 0 && |
| 1649 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1650 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1651 | err = -EAGAIN; |
| 1652 | goto out; |
| 1653 | } |
| 1654 | } |
| 1655 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1656 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1657 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1658 | path->keep_locks = 0; |
| 1659 | btrfs_unlock_up_safe(path, 1); |
| 1660 | } |
| 1661 | return err; |
| 1662 | } |
| 1663 | |
| 1664 | /* |
| 1665 | * helper to add new inline back ref |
| 1666 | */ |
| 1667 | static noinline_for_stack |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1668 | void setup_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1669 | struct btrfs_path *path, |
| 1670 | struct btrfs_extent_inline_ref *iref, |
| 1671 | u64 parent, u64 root_objectid, |
| 1672 | u64 owner, u64 offset, int refs_to_add, |
| 1673 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1674 | { |
| 1675 | struct extent_buffer *leaf; |
| 1676 | struct btrfs_extent_item *ei; |
| 1677 | unsigned long ptr; |
| 1678 | unsigned long end; |
| 1679 | unsigned long item_offset; |
| 1680 | u64 refs; |
| 1681 | int size; |
| 1682 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1683 | |
| 1684 | leaf = path->nodes[0]; |
| 1685 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1686 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1687 | |
| 1688 | type = extent_ref_type(parent, owner); |
| 1689 | size = btrfs_extent_inline_ref_size(type); |
| 1690 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1691 | btrfs_extend_item(root, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1692 | |
| 1693 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1694 | refs = btrfs_extent_refs(leaf, ei); |
| 1695 | refs += refs_to_add; |
| 1696 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1697 | if (extent_op) |
| 1698 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1699 | |
| 1700 | ptr = (unsigned long)ei + item_offset; |
| 1701 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1702 | if (ptr < end - size) |
| 1703 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1704 | end - size - ptr); |
| 1705 | |
| 1706 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1707 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1708 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1709 | struct btrfs_extent_data_ref *dref; |
| 1710 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1711 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1712 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1713 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1714 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1715 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1716 | struct btrfs_shared_data_ref *sref; |
| 1717 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1718 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1719 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1720 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1721 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1722 | } else { |
| 1723 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1724 | } |
| 1725 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1726 | } |
| 1727 | |
| 1728 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
| 1729 | struct btrfs_root *root, |
| 1730 | struct btrfs_path *path, |
| 1731 | struct btrfs_extent_inline_ref **ref_ret, |
| 1732 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1733 | u64 root_objectid, u64 owner, u64 offset) |
| 1734 | { |
| 1735 | int ret; |
| 1736 | |
| 1737 | ret = lookup_inline_extent_backref(trans, root, path, ref_ret, |
| 1738 | bytenr, num_bytes, parent, |
| 1739 | root_objectid, owner, offset, 0); |
| 1740 | if (ret != -ENOENT) |
| 1741 | return ret; |
| 1742 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1743 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1744 | *ref_ret = NULL; |
| 1745 | |
| 1746 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1747 | ret = lookup_tree_block_ref(trans, root, path, bytenr, parent, |
| 1748 | root_objectid); |
| 1749 | } else { |
| 1750 | ret = lookup_extent_data_ref(trans, root, path, bytenr, parent, |
| 1751 | root_objectid, owner, offset); |
| 1752 | } |
| 1753 | return ret; |
| 1754 | } |
| 1755 | |
| 1756 | /* |
| 1757 | * helper to update/remove inline back ref |
| 1758 | */ |
| 1759 | static noinline_for_stack |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1760 | void update_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1761 | struct btrfs_path *path, |
| 1762 | struct btrfs_extent_inline_ref *iref, |
| 1763 | int refs_to_mod, |
| 1764 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1765 | { |
| 1766 | struct extent_buffer *leaf; |
| 1767 | struct btrfs_extent_item *ei; |
| 1768 | struct btrfs_extent_data_ref *dref = NULL; |
| 1769 | struct btrfs_shared_data_ref *sref = NULL; |
| 1770 | unsigned long ptr; |
| 1771 | unsigned long end; |
| 1772 | u32 item_size; |
| 1773 | int size; |
| 1774 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1775 | u64 refs; |
| 1776 | |
| 1777 | leaf = path->nodes[0]; |
| 1778 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1779 | refs = btrfs_extent_refs(leaf, ei); |
| 1780 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1781 | refs += refs_to_mod; |
| 1782 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1783 | if (extent_op) |
| 1784 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1785 | |
| 1786 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1787 | |
| 1788 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1789 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1790 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1791 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1792 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1793 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1794 | } else { |
| 1795 | refs = 1; |
| 1796 | BUG_ON(refs_to_mod != -1); |
| 1797 | } |
| 1798 | |
| 1799 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1800 | refs += refs_to_mod; |
| 1801 | |
| 1802 | if (refs > 0) { |
| 1803 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1804 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1805 | else |
| 1806 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1807 | } else { |
| 1808 | size = btrfs_extent_inline_ref_size(type); |
| 1809 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1810 | ptr = (unsigned long)iref; |
| 1811 | end = (unsigned long)ei + item_size; |
| 1812 | if (ptr + size < end) |
| 1813 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1814 | end - ptr - size); |
| 1815 | item_size -= size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1816 | btrfs_truncate_item(root, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1817 | } |
| 1818 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | static noinline_for_stack |
| 1822 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1823 | struct btrfs_root *root, |
| 1824 | struct btrfs_path *path, |
| 1825 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1826 | u64 root_objectid, u64 owner, |
| 1827 | u64 offset, int refs_to_add, |
| 1828 | struct btrfs_delayed_extent_op *extent_op) |
| 1829 | { |
| 1830 | struct btrfs_extent_inline_ref *iref; |
| 1831 | int ret; |
| 1832 | |
| 1833 | ret = lookup_inline_extent_backref(trans, root, path, &iref, |
| 1834 | bytenr, num_bytes, parent, |
| 1835 | root_objectid, owner, offset, 1); |
| 1836 | if (ret == 0) { |
| 1837 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1838 | update_inline_extent_backref(root, path, iref, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1839 | refs_to_add, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1840 | } else if (ret == -ENOENT) { |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1841 | setup_inline_extent_backref(root, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1842 | root_objectid, owner, offset, |
| 1843 | refs_to_add, extent_op); |
| 1844 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1845 | } |
| 1846 | return ret; |
| 1847 | } |
| 1848 | |
| 1849 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
| 1850 | struct btrfs_root *root, |
| 1851 | struct btrfs_path *path, |
| 1852 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1853 | u64 owner, u64 offset, int refs_to_add) |
| 1854 | { |
| 1855 | int ret; |
| 1856 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1857 | BUG_ON(refs_to_add != 1); |
| 1858 | ret = insert_tree_block_ref(trans, root, path, bytenr, |
| 1859 | parent, root_objectid); |
| 1860 | } else { |
| 1861 | ret = insert_extent_data_ref(trans, root, path, bytenr, |
| 1862 | parent, root_objectid, |
| 1863 | owner, offset, refs_to_add); |
| 1864 | } |
| 1865 | return ret; |
| 1866 | } |
| 1867 | |
| 1868 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
| 1869 | struct btrfs_root *root, |
| 1870 | struct btrfs_path *path, |
| 1871 | struct btrfs_extent_inline_ref *iref, |
| 1872 | int refs_to_drop, int is_data) |
| 1873 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1874 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1875 | |
| 1876 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1877 | if (iref) { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1878 | update_inline_extent_backref(root, path, iref, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1879 | -refs_to_drop, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1880 | } else if (is_data) { |
| 1881 | ret = remove_extent_data_ref(trans, root, path, refs_to_drop); |
| 1882 | } else { |
| 1883 | ret = btrfs_del_item(trans, root, path); |
| 1884 | } |
| 1885 | return ret; |
| 1886 | } |
| 1887 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1888 | static int btrfs_issue_discard(struct block_device *bdev, |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1889 | u64 start, u64 len) |
| 1890 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1891 | return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0); |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1892 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1893 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1894 | static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1895 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1896 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1897 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1898 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1899 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1900 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 1901 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1902 | /* Tell the block device(s) that the sectors can be discarded */ |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 1903 | ret = btrfs_map_block(root->fs_info, REQ_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1904 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1905 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1906 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1907 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1908 | int i; |
| 1909 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1910 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1911 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1912 | if (!stripe->dev->can_discard) |
| 1913 | continue; |
| 1914 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1915 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 1916 | stripe->physical, |
| 1917 | stripe->length); |
| 1918 | if (!ret) |
| 1919 | discarded_bytes += stripe->length; |
| 1920 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1921 | 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] | 1922 | |
| 1923 | /* |
| 1924 | * Just in case we get back EOPNOTSUPP for some reason, |
| 1925 | * just ignore the return value so we don't screw up |
| 1926 | * people calling discard_extent. |
| 1927 | */ |
| 1928 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1929 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1930 | kfree(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1931 | } |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1932 | |
| 1933 | if (actual_bytes) |
| 1934 | *actual_bytes = discarded_bytes; |
| 1935 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1936 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1937 | if (ret == -EOPNOTSUPP) |
| 1938 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1939 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1940 | } |
| 1941 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1942 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1943 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 1944 | struct btrfs_root *root, |
| 1945 | u64 bytenr, u64 num_bytes, u64 parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1946 | u64 root_objectid, u64 owner, u64 offset, int for_cow) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1947 | { |
| 1948 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1949 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1950 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1951 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 1952 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1953 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1954 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1955 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 1956 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1957 | parent, root_objectid, (int)owner, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1958 | BTRFS_ADD_DELAYED_REF, NULL, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1959 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1960 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 1961 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1962 | parent, root_objectid, owner, offset, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1963 | BTRFS_ADD_DELAYED_REF, NULL, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1964 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1965 | return ret; |
| 1966 | } |
| 1967 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1968 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1969 | struct btrfs_root *root, |
| 1970 | u64 bytenr, u64 num_bytes, |
| 1971 | u64 parent, u64 root_objectid, |
| 1972 | u64 owner, u64 offset, int refs_to_add, |
| 1973 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1974 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1975 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1976 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1977 | struct btrfs_extent_item *item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1978 | u64 refs; |
| 1979 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 1980 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1981 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1982 | if (!path) |
| 1983 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 1984 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 1985 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1986 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1987 | /* this will setup the path even if it fails to insert the back ref */ |
| 1988 | ret = insert_inline_extent_backref(trans, root->fs_info->extent_root, |
| 1989 | path, bytenr, num_bytes, parent, |
| 1990 | root_objectid, owner, offset, |
| 1991 | refs_to_add, extent_op); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 1992 | if (ret != -EAGAIN) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1993 | goto out; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1994 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1995 | leaf = path->nodes[0]; |
| 1996 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1997 | refs = btrfs_extent_refs(leaf, item); |
| 1998 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 1999 | if (extent_op) |
| 2000 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2001 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2002 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2003 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2004 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2005 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2006 | path->leave_spinning = 1; |
| 2007 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2008 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2009 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2010 | path, bytenr, parent, root_objectid, |
| 2011 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2012 | if (ret) |
| 2013 | btrfs_abort_transaction(trans, root, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2014 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2015 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2016 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2017 | } |
| 2018 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2019 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2020 | struct btrfs_root *root, |
| 2021 | struct btrfs_delayed_ref_node *node, |
| 2022 | struct btrfs_delayed_extent_op *extent_op, |
| 2023 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2024 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2025 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2026 | struct btrfs_delayed_data_ref *ref; |
| 2027 | struct btrfs_key ins; |
| 2028 | u64 parent = 0; |
| 2029 | u64 ref_root = 0; |
| 2030 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2031 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2032 | ins.objectid = node->bytenr; |
| 2033 | ins.offset = node->num_bytes; |
| 2034 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2035 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2036 | ref = btrfs_delayed_node_to_data_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2037 | trace_run_delayed_data_ref(node, ref, node->action); |
| 2038 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2039 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2040 | parent = ref->parent; |
| 2041 | else |
| 2042 | ref_root = ref->root; |
| 2043 | |
| 2044 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2045 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2046 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2047 | ret = alloc_reserved_file_extent(trans, root, |
| 2048 | parent, ref_root, flags, |
| 2049 | ref->objectid, ref->offset, |
| 2050 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2051 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2052 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2053 | node->num_bytes, parent, |
| 2054 | ref_root, ref->objectid, |
| 2055 | ref->offset, node->ref_mod, |
| 2056 | extent_op); |
| 2057 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2058 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2059 | node->num_bytes, parent, |
| 2060 | ref_root, ref->objectid, |
| 2061 | ref->offset, node->ref_mod, |
| 2062 | extent_op); |
| 2063 | } else { |
| 2064 | BUG(); |
| 2065 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2066 | return ret; |
| 2067 | } |
| 2068 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2069 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2070 | struct extent_buffer *leaf, |
| 2071 | struct btrfs_extent_item *ei) |
| 2072 | { |
| 2073 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2074 | if (extent_op->update_flags) { |
| 2075 | flags |= extent_op->flags_to_set; |
| 2076 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2077 | } |
| 2078 | |
| 2079 | if (extent_op->update_key) { |
| 2080 | struct btrfs_tree_block_info *bi; |
| 2081 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2082 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2083 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2084 | } |
| 2085 | } |
| 2086 | |
| 2087 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2088 | struct btrfs_root *root, |
| 2089 | struct btrfs_delayed_ref_node *node, |
| 2090 | struct btrfs_delayed_extent_op *extent_op) |
| 2091 | { |
| 2092 | struct btrfs_key key; |
| 2093 | struct btrfs_path *path; |
| 2094 | struct btrfs_extent_item *ei; |
| 2095 | struct extent_buffer *leaf; |
| 2096 | u32 item_size; |
| 2097 | int ret; |
| 2098 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2099 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2100 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2101 | if (trans->aborted) |
| 2102 | return 0; |
| 2103 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2104 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2105 | metadata = 0; |
| 2106 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2107 | path = btrfs_alloc_path(); |
| 2108 | if (!path) |
| 2109 | return -ENOMEM; |
| 2110 | |
| 2111 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2112 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2113 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2114 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2115 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2116 | } else { |
| 2117 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2118 | key.offset = node->num_bytes; |
| 2119 | } |
| 2120 | |
| 2121 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2122 | path->reada = 1; |
| 2123 | path->leave_spinning = 1; |
| 2124 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2125 | path, 0, 1); |
| 2126 | if (ret < 0) { |
| 2127 | err = ret; |
| 2128 | goto out; |
| 2129 | } |
| 2130 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2131 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2132 | if (path->slots[0] > 0) { |
| 2133 | path->slots[0]--; |
| 2134 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2135 | path->slots[0]); |
| 2136 | if (key.objectid == node->bytenr && |
| 2137 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2138 | key.offset == node->num_bytes) |
| 2139 | ret = 0; |
| 2140 | } |
| 2141 | if (ret > 0) { |
| 2142 | btrfs_release_path(path); |
| 2143 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2144 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2145 | key.objectid = node->bytenr; |
| 2146 | key.offset = node->num_bytes; |
| 2147 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2148 | goto again; |
| 2149 | } |
| 2150 | } else { |
| 2151 | err = -EIO; |
| 2152 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2153 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2154 | } |
| 2155 | |
| 2156 | leaf = path->nodes[0]; |
| 2157 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2158 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2159 | if (item_size < sizeof(*ei)) { |
| 2160 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2161 | path, (u64)-1, 0); |
| 2162 | if (ret < 0) { |
| 2163 | err = ret; |
| 2164 | goto out; |
| 2165 | } |
| 2166 | leaf = path->nodes[0]; |
| 2167 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2168 | } |
| 2169 | #endif |
| 2170 | BUG_ON(item_size < sizeof(*ei)); |
| 2171 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2172 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2173 | |
| 2174 | btrfs_mark_buffer_dirty(leaf); |
| 2175 | out: |
| 2176 | btrfs_free_path(path); |
| 2177 | return err; |
| 2178 | } |
| 2179 | |
| 2180 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2181 | struct btrfs_root *root, |
| 2182 | struct btrfs_delayed_ref_node *node, |
| 2183 | struct btrfs_delayed_extent_op *extent_op, |
| 2184 | int insert_reserved) |
| 2185 | { |
| 2186 | int ret = 0; |
| 2187 | struct btrfs_delayed_tree_ref *ref; |
| 2188 | struct btrfs_key ins; |
| 2189 | u64 parent = 0; |
| 2190 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2191 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2192 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2193 | |
| 2194 | ref = btrfs_delayed_node_to_tree_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2195 | trace_run_delayed_tree_ref(node, ref, node->action); |
| 2196 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2197 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2198 | parent = ref->parent; |
| 2199 | else |
| 2200 | ref_root = ref->root; |
| 2201 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2202 | ins.objectid = node->bytenr; |
| 2203 | if (skinny_metadata) { |
| 2204 | ins.offset = ref->level; |
| 2205 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2206 | } else { |
| 2207 | ins.offset = node->num_bytes; |
| 2208 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2209 | } |
| 2210 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2211 | BUG_ON(node->ref_mod != 1); |
| 2212 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2213 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2214 | ret = alloc_reserved_tree_block(trans, root, |
| 2215 | parent, ref_root, |
| 2216 | extent_op->flags_to_set, |
| 2217 | &extent_op->key, |
| 2218 | ref->level, &ins); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2219 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2220 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2221 | node->num_bytes, parent, ref_root, |
| 2222 | ref->level, 0, 1, extent_op); |
| 2223 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2224 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2225 | node->num_bytes, parent, ref_root, |
| 2226 | ref->level, 0, 1, extent_op); |
| 2227 | } else { |
| 2228 | BUG(); |
| 2229 | } |
| 2230 | return ret; |
| 2231 | } |
| 2232 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2233 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2234 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2235 | struct btrfs_root *root, |
| 2236 | struct btrfs_delayed_ref_node *node, |
| 2237 | struct btrfs_delayed_extent_op *extent_op, |
| 2238 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2239 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2240 | int ret = 0; |
| 2241 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2242 | if (trans->aborted) { |
| 2243 | if (insert_reserved) |
| 2244 | btrfs_pin_extent(root, node->bytenr, |
| 2245 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2246 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2247 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2248 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2249 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2250 | struct btrfs_delayed_ref_head *head; |
| 2251 | /* |
| 2252 | * we've hit the end of the chain and we were supposed |
| 2253 | * to insert this extent into the tree. But, it got |
| 2254 | * deleted before we ever needed to insert it, so all |
| 2255 | * we have to do is clean up the accounting |
| 2256 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2257 | BUG_ON(extent_op); |
| 2258 | head = btrfs_delayed_node_to_head(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2259 | trace_run_delayed_ref_head(node, head, node->action); |
| 2260 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2261 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2262 | btrfs_pin_extent(root, node->bytenr, |
| 2263 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2264 | if (head->is_data) { |
| 2265 | ret = btrfs_del_csums(trans, root, |
| 2266 | node->bytenr, |
| 2267 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2268 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2269 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2270 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2271 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2272 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2273 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2274 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2275 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2276 | insert_reserved); |
| 2277 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2278 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2279 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2280 | insert_reserved); |
| 2281 | else |
| 2282 | BUG(); |
| 2283 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2284 | } |
| 2285 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2286 | static noinline struct btrfs_delayed_ref_node * |
| 2287 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2288 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2289 | struct rb_node *node; |
| 2290 | struct btrfs_delayed_ref_node *ref; |
| 2291 | int action = BTRFS_ADD_DELAYED_REF; |
| 2292 | again: |
| 2293 | /* |
| 2294 | * select delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2295 | * this prevents ref count from going down to zero when |
| 2296 | * there still are pending delayed ref. |
| 2297 | */ |
| 2298 | node = rb_prev(&head->node.rb_node); |
| 2299 | while (1) { |
| 2300 | if (!node) |
| 2301 | break; |
| 2302 | ref = rb_entry(node, struct btrfs_delayed_ref_node, |
| 2303 | rb_node); |
| 2304 | if (ref->bytenr != head->node.bytenr) |
| 2305 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2306 | if (ref->action == action) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2307 | return ref; |
| 2308 | node = rb_prev(node); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2309 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2310 | if (action == BTRFS_ADD_DELAYED_REF) { |
| 2311 | action = BTRFS_DROP_DELAYED_REF; |
| 2312 | goto again; |
| 2313 | } |
| 2314 | return NULL; |
| 2315 | } |
| 2316 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2317 | /* |
| 2318 | * Returns 0 on success or if called with an already aborted transaction. |
| 2319 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2320 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2321 | static noinline int run_clustered_refs(struct btrfs_trans_handle *trans, |
| 2322 | struct btrfs_root *root, |
| 2323 | struct list_head *cluster) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2324 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2325 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2326 | struct btrfs_delayed_ref_node *ref; |
| 2327 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2328 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2329 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2330 | int ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2331 | int count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2332 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2333 | |
| 2334 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2335 | while (1) { |
| 2336 | if (!locked_ref) { |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2337 | /* pick a new head ref from the cluster list */ |
| 2338 | if (list_empty(cluster)) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2339 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2340 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2341 | locked_ref = list_entry(cluster->next, |
| 2342 | struct btrfs_delayed_ref_head, cluster); |
| 2343 | |
| 2344 | /* grab the lock that says we are going to process |
| 2345 | * all the refs for this head */ |
| 2346 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
| 2347 | |
| 2348 | /* |
| 2349 | * we may have dropped the spin lock to get the head |
| 2350 | * mutex lock, and that might have given someone else |
| 2351 | * time to free the head. If that's true, it has been |
| 2352 | * removed from our list and we can move on. |
| 2353 | */ |
| 2354 | if (ret == -EAGAIN) { |
| 2355 | locked_ref = NULL; |
| 2356 | count++; |
| 2357 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2358 | } |
| 2359 | } |
| 2360 | |
| 2361 | /* |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2362 | * We need to try and merge add/drops of the same ref since we |
| 2363 | * can run into issues with relocate dropping the implicit ref |
| 2364 | * and then it being added back again before the drop can |
| 2365 | * finish. If we merged anything we need to re-loop so we can |
| 2366 | * get a good ref. |
| 2367 | */ |
| 2368 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2369 | locked_ref); |
| 2370 | |
| 2371 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2372 | * locked_ref is the head node, so we have to go one |
| 2373 | * node back for any delayed ref updates |
| 2374 | */ |
| 2375 | ref = select_delayed_ref(locked_ref); |
| 2376 | |
| 2377 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2378 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2379 | /* |
| 2380 | * there are still refs with lower seq numbers in the |
| 2381 | * process of being added. Don't run this ref yet. |
| 2382 | */ |
| 2383 | list_del_init(&locked_ref->cluster); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2384 | btrfs_delayed_ref_unlock(locked_ref); |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2385 | locked_ref = NULL; |
| 2386 | delayed_refs->num_heads_ready++; |
| 2387 | spin_unlock(&delayed_refs->lock); |
| 2388 | cond_resched(); |
| 2389 | spin_lock(&delayed_refs->lock); |
| 2390 | continue; |
| 2391 | } |
| 2392 | |
| 2393 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2394 | * record the must insert reserved flag before we |
| 2395 | * drop the spin lock. |
| 2396 | */ |
| 2397 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2398 | locked_ref->must_insert_reserved = 0; |
| 2399 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2400 | extent_op = locked_ref->extent_op; |
| 2401 | locked_ref->extent_op = NULL; |
| 2402 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2403 | if (!ref) { |
| 2404 | /* All delayed refs have been processed, Go ahead |
| 2405 | * and send the head node to run_one_delayed_ref, |
| 2406 | * so that any accounting fixes can happen |
| 2407 | */ |
| 2408 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2409 | |
| 2410 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2411 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2412 | extent_op = NULL; |
| 2413 | } |
| 2414 | |
| 2415 | if (extent_op) { |
| 2416 | spin_unlock(&delayed_refs->lock); |
| 2417 | |
| 2418 | ret = run_delayed_extent_op(trans, root, |
| 2419 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2420 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2421 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2422 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2423 | /* |
| 2424 | * Need to reset must_insert_reserved if |
| 2425 | * there was an error so the abort stuff |
| 2426 | * can cleanup the reserved space |
| 2427 | * properly. |
| 2428 | */ |
| 2429 | if (must_insert_reserved) |
| 2430 | locked_ref->must_insert_reserved = 1; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2431 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
Dan Carpenter | 253beeb | 2012-04-18 09:59:03 +0300 | [diff] [blame] | 2432 | spin_lock(&delayed_refs->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2433 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2434 | return ret; |
| 2435 | } |
| 2436 | |
Chris Mason | 203bf28 | 2012-01-06 15:23:57 -0500 | [diff] [blame] | 2437 | goto next; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2438 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2439 | } |
| 2440 | |
| 2441 | ref->in_tree = 0; |
| 2442 | rb_erase(&ref->rb_node, &delayed_refs->root); |
| 2443 | delayed_refs->num_entries--; |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2444 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2445 | /* |
| 2446 | * when we play the delayed ref, also correct the |
| 2447 | * ref_mod on head |
| 2448 | */ |
| 2449 | switch (ref->action) { |
| 2450 | case BTRFS_ADD_DELAYED_REF: |
| 2451 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2452 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2453 | break; |
| 2454 | case BTRFS_DROP_DELAYED_REF: |
| 2455 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2456 | break; |
| 2457 | default: |
| 2458 | WARN_ON(1); |
| 2459 | } |
Josef Bacik | b8d0c69 | 2013-08-22 17:03:29 -0400 | [diff] [blame] | 2460 | } else { |
| 2461 | list_del_init(&locked_ref->cluster); |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2462 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2463 | spin_unlock(&delayed_refs->lock); |
| 2464 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2465 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2466 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2467 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2468 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2469 | if (ret) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2470 | btrfs_delayed_ref_unlock(locked_ref); |
| 2471 | btrfs_put_delayed_ref(ref); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2472 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret); |
Dan Carpenter | 253beeb | 2012-04-18 09:59:03 +0300 | [diff] [blame] | 2473 | spin_lock(&delayed_refs->lock); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2474 | return ret; |
| 2475 | } |
| 2476 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2477 | /* |
| 2478 | * If this node is a head, that means all the refs in this head |
| 2479 | * have been dealt with, and we will pick the next head to deal |
| 2480 | * with, so we must unlock the head and drop it from the cluster |
| 2481 | * list before we release it. |
| 2482 | */ |
| 2483 | if (btrfs_delayed_ref_is_head(ref)) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2484 | btrfs_delayed_ref_unlock(locked_ref); |
| 2485 | locked_ref = NULL; |
| 2486 | } |
| 2487 | btrfs_put_delayed_ref(ref); |
| 2488 | count++; |
Chris Mason | 203bf28 | 2012-01-06 15:23:57 -0500 | [diff] [blame] | 2489 | next: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2490 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2491 | spin_lock(&delayed_refs->lock); |
| 2492 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2493 | return count; |
| 2494 | } |
| 2495 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2496 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2497 | /* |
| 2498 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2499 | * correlates in most cases to the order added. To expose dependencies on this |
| 2500 | * order, we start to process the tree in the middle instead of the beginning |
| 2501 | */ |
| 2502 | static u64 find_middle(struct rb_root *root) |
| 2503 | { |
| 2504 | struct rb_node *n = root->rb_node; |
| 2505 | struct btrfs_delayed_ref_node *entry; |
| 2506 | int alt = 1; |
| 2507 | u64 middle; |
| 2508 | u64 first = 0, last = 0; |
| 2509 | |
| 2510 | n = rb_first(root); |
| 2511 | if (n) { |
| 2512 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2513 | first = entry->bytenr; |
| 2514 | } |
| 2515 | n = rb_last(root); |
| 2516 | if (n) { |
| 2517 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2518 | last = entry->bytenr; |
| 2519 | } |
| 2520 | n = root->rb_node; |
| 2521 | |
| 2522 | while (n) { |
| 2523 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2524 | WARN_ON(!entry->in_tree); |
| 2525 | |
| 2526 | middle = entry->bytenr; |
| 2527 | |
| 2528 | if (alt) |
| 2529 | n = n->rb_left; |
| 2530 | else |
| 2531 | n = n->rb_right; |
| 2532 | |
| 2533 | alt = 1 - alt; |
| 2534 | } |
| 2535 | return middle; |
| 2536 | } |
| 2537 | #endif |
| 2538 | |
Arne Jansen | bed92ea | 2012-06-28 18:03:02 +0200 | [diff] [blame] | 2539 | int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans, |
| 2540 | struct btrfs_fs_info *fs_info) |
| 2541 | { |
| 2542 | struct qgroup_update *qgroup_update; |
| 2543 | int ret = 0; |
| 2544 | |
| 2545 | if (list_empty(&trans->qgroup_ref_list) != |
| 2546 | !trans->delayed_ref_elem.seq) { |
| 2547 | /* list without seq or seq without list */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2548 | btrfs_err(fs_info, |
Jan Schmidt | fc36ed7e | 2013-04-24 16:57:33 +0000 | [diff] [blame] | 2549 | "qgroup accounting update error, list is%s empty, seq is %#x.%x", |
Arne Jansen | bed92ea | 2012-06-28 18:03:02 +0200 | [diff] [blame] | 2550 | list_empty(&trans->qgroup_ref_list) ? "" : " not", |
Jan Schmidt | fc36ed7e | 2013-04-24 16:57:33 +0000 | [diff] [blame] | 2551 | (u32)(trans->delayed_ref_elem.seq >> 32), |
| 2552 | (u32)trans->delayed_ref_elem.seq); |
Arne Jansen | bed92ea | 2012-06-28 18:03:02 +0200 | [diff] [blame] | 2553 | BUG(); |
| 2554 | } |
| 2555 | |
| 2556 | if (!trans->delayed_ref_elem.seq) |
| 2557 | return 0; |
| 2558 | |
| 2559 | while (!list_empty(&trans->qgroup_ref_list)) { |
| 2560 | qgroup_update = list_first_entry(&trans->qgroup_ref_list, |
| 2561 | struct qgroup_update, list); |
| 2562 | list_del(&qgroup_update->list); |
| 2563 | if (!ret) |
| 2564 | ret = btrfs_qgroup_account_ref( |
| 2565 | trans, fs_info, qgroup_update->node, |
| 2566 | qgroup_update->extent_op); |
| 2567 | kfree(qgroup_update); |
| 2568 | } |
| 2569 | |
| 2570 | btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem); |
| 2571 | |
| 2572 | return ret; |
| 2573 | } |
| 2574 | |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2575 | static int refs_newer(struct btrfs_delayed_ref_root *delayed_refs, int seq, |
| 2576 | int count) |
| 2577 | { |
| 2578 | int val = atomic_read(&delayed_refs->ref_seq); |
| 2579 | |
| 2580 | if (val < seq || val >= seq + count) |
| 2581 | return 1; |
| 2582 | return 0; |
| 2583 | } |
| 2584 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2585 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2586 | { |
| 2587 | u64 num_bytes; |
| 2588 | |
| 2589 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2590 | sizeof(struct btrfs_extent_inline_ref)); |
| 2591 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2592 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2593 | |
| 2594 | /* |
| 2595 | * We don't ever fill up leaves all the way so multiply by 2 just to be |
| 2596 | * closer to what we're really going to want to ouse. |
| 2597 | */ |
| 2598 | return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root)); |
| 2599 | } |
| 2600 | |
| 2601 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2602 | struct btrfs_root *root) |
| 2603 | { |
| 2604 | struct btrfs_block_rsv *global_rsv; |
| 2605 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
| 2606 | u64 num_bytes; |
| 2607 | int ret = 0; |
| 2608 | |
| 2609 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 2610 | num_heads = heads_to_leaves(root, num_heads); |
| 2611 | if (num_heads > 1) |
| 2612 | num_bytes += (num_heads - 1) * root->leafsize; |
| 2613 | num_bytes <<= 1; |
| 2614 | global_rsv = &root->fs_info->global_block_rsv; |
| 2615 | |
| 2616 | /* |
| 2617 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2618 | * wiggle room since running delayed refs can create more delayed refs. |
| 2619 | */ |
| 2620 | if (global_rsv->space_info->full) |
| 2621 | num_bytes <<= 1; |
| 2622 | |
| 2623 | spin_lock(&global_rsv->lock); |
| 2624 | if (global_rsv->reserved <= num_bytes) |
| 2625 | ret = 1; |
| 2626 | spin_unlock(&global_rsv->lock); |
| 2627 | return ret; |
| 2628 | } |
| 2629 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2630 | /* |
| 2631 | * this starts processing the delayed reference count updates and |
| 2632 | * extent insertions we have queued up so far. count can be |
| 2633 | * 0, which means to process everything in the tree at the start |
| 2634 | * of the run (but not newly added entries), or it can be some target |
| 2635 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2636 | * |
| 2637 | * Returns 0 on success or if called with an aborted transaction |
| 2638 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2639 | */ |
| 2640 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2641 | struct btrfs_root *root, unsigned long count) |
| 2642 | { |
| 2643 | struct rb_node *node; |
| 2644 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2645 | struct btrfs_delayed_ref_node *ref; |
| 2646 | struct list_head cluster; |
| 2647 | int ret; |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2648 | u64 delayed_start; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2649 | int run_all = count == (unsigned long)-1; |
| 2650 | int run_most = 0; |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2651 | int loops; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2652 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2653 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2654 | if (trans->aborted) |
| 2655 | return 0; |
| 2656 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2657 | if (root == root->fs_info->extent_root) |
| 2658 | root = root->fs_info->tree_root; |
| 2659 | |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2660 | btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info); |
| 2661 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2662 | delayed_refs = &trans->transaction->delayed_refs; |
| 2663 | INIT_LIST_HEAD(&cluster); |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2664 | if (count == 0) { |
| 2665 | count = delayed_refs->num_entries * 2; |
| 2666 | run_most = 1; |
| 2667 | } |
| 2668 | |
| 2669 | if (!run_all && !run_most) { |
| 2670 | int old; |
| 2671 | int seq = atomic_read(&delayed_refs->ref_seq); |
| 2672 | |
| 2673 | progress: |
| 2674 | old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1); |
| 2675 | if (old) { |
| 2676 | DEFINE_WAIT(__wait); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2677 | if (delayed_refs->flushing || |
| 2678 | !btrfs_should_throttle_delayed_refs(trans, root)) |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2679 | return 0; |
| 2680 | |
| 2681 | prepare_to_wait(&delayed_refs->wait, &__wait, |
| 2682 | TASK_UNINTERRUPTIBLE); |
| 2683 | |
| 2684 | old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1); |
| 2685 | if (old) { |
| 2686 | schedule(); |
| 2687 | finish_wait(&delayed_refs->wait, &__wait); |
| 2688 | |
| 2689 | if (!refs_newer(delayed_refs, seq, 256)) |
| 2690 | goto progress; |
| 2691 | else |
| 2692 | return 0; |
| 2693 | } else { |
| 2694 | finish_wait(&delayed_refs->wait, &__wait); |
| 2695 | goto again; |
| 2696 | } |
| 2697 | } |
| 2698 | |
| 2699 | } else { |
| 2700 | atomic_inc(&delayed_refs->procs_running_refs); |
| 2701 | } |
| 2702 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2703 | again: |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2704 | loops = 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2705 | spin_lock(&delayed_refs->lock); |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2706 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2707 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2708 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2709 | #endif |
| 2710 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2711 | while (1) { |
| 2712 | if (!(run_all || run_most) && |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2713 | !btrfs_should_throttle_delayed_refs(trans, root)) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2714 | break; |
| 2715 | |
| 2716 | /* |
| 2717 | * go find something we can process in the rbtree. We start at |
| 2718 | * the beginning of the tree, and then build a cluster |
| 2719 | * of refs to process starting at the first one we are able to |
| 2720 | * lock |
| 2721 | */ |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2722 | delayed_start = delayed_refs->run_delayed_start; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2723 | ret = btrfs_find_ref_cluster(trans, &cluster, |
| 2724 | delayed_refs->run_delayed_start); |
| 2725 | if (ret) |
| 2726 | break; |
| 2727 | |
| 2728 | ret = run_clustered_refs(trans, root, &cluster); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2729 | if (ret < 0) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2730 | btrfs_release_ref_cluster(&cluster); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2731 | spin_unlock(&delayed_refs->lock); |
| 2732 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2733 | atomic_dec(&delayed_refs->procs_running_refs); |
Josef Bacik | f971fe2 | 2013-06-10 11:52:32 -0400 | [diff] [blame] | 2734 | wake_up(&delayed_refs->wait); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2735 | return ret; |
| 2736 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2737 | |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2738 | atomic_add(ret, &delayed_refs->ref_seq); |
| 2739 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2740 | count -= min_t(unsigned long, ret, count); |
| 2741 | |
| 2742 | if (count == 0) |
| 2743 | break; |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2744 | |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2745 | if (delayed_start >= delayed_refs->run_delayed_start) { |
| 2746 | if (loops == 0) { |
| 2747 | /* |
| 2748 | * btrfs_find_ref_cluster looped. let's do one |
| 2749 | * more cycle. if we don't run any delayed ref |
| 2750 | * during that cycle (because we can't because |
| 2751 | * all of them are blocked), bail out. |
| 2752 | */ |
| 2753 | loops = 1; |
| 2754 | } else { |
| 2755 | /* |
| 2756 | * no runnable refs left, stop trying |
| 2757 | */ |
| 2758 | BUG_ON(run_all); |
| 2759 | break; |
| 2760 | } |
| 2761 | } |
| 2762 | if (ret) { |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2763 | /* refs were run, let's reset staleness detection */ |
Arne Jansen | 1fa11e2 | 2012-08-06 14:18:51 -0600 | [diff] [blame] | 2764 | loops = 0; |
Jan Schmidt | a168650 | 2011-12-12 16:10:07 +0100 | [diff] [blame] | 2765 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2766 | } |
| 2767 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2768 | if (run_all) { |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2769 | if (!list_empty(&trans->new_bgs)) { |
| 2770 | spin_unlock(&delayed_refs->lock); |
| 2771 | btrfs_create_pending_block_groups(trans, root); |
| 2772 | spin_lock(&delayed_refs->lock); |
| 2773 | } |
| 2774 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2775 | node = rb_first(&delayed_refs->root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2776 | if (!node) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2777 | goto out; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2778 | count = (unsigned long)-1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2779 | |
| 2780 | while (node) { |
| 2781 | ref = rb_entry(node, struct btrfs_delayed_ref_node, |
| 2782 | rb_node); |
| 2783 | if (btrfs_delayed_ref_is_head(ref)) { |
| 2784 | struct btrfs_delayed_ref_head *head; |
| 2785 | |
| 2786 | head = btrfs_delayed_node_to_head(ref); |
| 2787 | atomic_inc(&ref->refs); |
| 2788 | |
| 2789 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2790 | /* |
| 2791 | * Mutex was contended, block until it's |
| 2792 | * released and try again |
| 2793 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2794 | mutex_lock(&head->mutex); |
| 2795 | mutex_unlock(&head->mutex); |
| 2796 | |
| 2797 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2798 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2799 | goto again; |
| 2800 | } |
| 2801 | node = rb_next(node); |
| 2802 | } |
| 2803 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2804 | schedule_timeout(1); |
| 2805 | goto again; |
| 2806 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2807 | out: |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2808 | atomic_dec(&delayed_refs->procs_running_refs); |
| 2809 | smp_mb(); |
| 2810 | if (waitqueue_active(&delayed_refs->wait)) |
| 2811 | wake_up(&delayed_refs->wait); |
| 2812 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2813 | spin_unlock(&delayed_refs->lock); |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2814 | assert_qgroups_uptodate(trans); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2815 | return 0; |
| 2816 | } |
| 2817 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2818 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 2819 | struct btrfs_root *root, |
| 2820 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2821 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2822 | { |
| 2823 | struct btrfs_delayed_extent_op *extent_op; |
| 2824 | int ret; |
| 2825 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2826 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2827 | if (!extent_op) |
| 2828 | return -ENOMEM; |
| 2829 | |
| 2830 | extent_op->flags_to_set = flags; |
| 2831 | extent_op->update_flags = 1; |
| 2832 | extent_op->update_key = 0; |
| 2833 | extent_op->is_data = is_data ? 1 : 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2834 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2835 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2836 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 2837 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2838 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2839 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2840 | return ret; |
| 2841 | } |
| 2842 | |
| 2843 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 2844 | struct btrfs_root *root, |
| 2845 | struct btrfs_path *path, |
| 2846 | u64 objectid, u64 offset, u64 bytenr) |
| 2847 | { |
| 2848 | struct btrfs_delayed_ref_head *head; |
| 2849 | struct btrfs_delayed_ref_node *ref; |
| 2850 | struct btrfs_delayed_data_ref *data_ref; |
| 2851 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2852 | struct rb_node *node; |
| 2853 | int ret = 0; |
| 2854 | |
| 2855 | ret = -ENOENT; |
| 2856 | delayed_refs = &trans->transaction->delayed_refs; |
| 2857 | spin_lock(&delayed_refs->lock); |
| 2858 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 2859 | if (!head) |
| 2860 | goto out; |
| 2861 | |
| 2862 | if (!mutex_trylock(&head->mutex)) { |
| 2863 | atomic_inc(&head->node.refs); |
| 2864 | spin_unlock(&delayed_refs->lock); |
| 2865 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2866 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2867 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2868 | /* |
| 2869 | * Mutex was contended, block until it's released and let |
| 2870 | * caller try again |
| 2871 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2872 | mutex_lock(&head->mutex); |
| 2873 | mutex_unlock(&head->mutex); |
| 2874 | btrfs_put_delayed_ref(&head->node); |
| 2875 | return -EAGAIN; |
| 2876 | } |
| 2877 | |
| 2878 | node = rb_prev(&head->node.rb_node); |
| 2879 | if (!node) |
| 2880 | goto out_unlock; |
| 2881 | |
| 2882 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
| 2883 | |
| 2884 | if (ref->bytenr != bytenr) |
| 2885 | goto out_unlock; |
| 2886 | |
| 2887 | ret = 1; |
| 2888 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) |
| 2889 | goto out_unlock; |
| 2890 | |
| 2891 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 2892 | |
| 2893 | node = rb_prev(node); |
| 2894 | if (node) { |
Liu Bo | df57dbe | 2012-07-23 05:50:03 -0600 | [diff] [blame] | 2895 | int seq = ref->seq; |
| 2896 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2897 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
Liu Bo | df57dbe | 2012-07-23 05:50:03 -0600 | [diff] [blame] | 2898 | if (ref->bytenr == bytenr && ref->seq == seq) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2899 | goto out_unlock; |
| 2900 | } |
| 2901 | |
| 2902 | if (data_ref->root != root->root_key.objectid || |
| 2903 | data_ref->objectid != objectid || data_ref->offset != offset) |
| 2904 | goto out_unlock; |
| 2905 | |
| 2906 | ret = 0; |
| 2907 | out_unlock: |
| 2908 | mutex_unlock(&head->mutex); |
| 2909 | out: |
| 2910 | spin_unlock(&delayed_refs->lock); |
| 2911 | return ret; |
| 2912 | } |
| 2913 | |
| 2914 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 2915 | struct btrfs_root *root, |
| 2916 | struct btrfs_path *path, |
| 2917 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2918 | { |
| 2919 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2920 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2921 | struct btrfs_extent_data_ref *ref; |
| 2922 | struct btrfs_extent_inline_ref *iref; |
| 2923 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2924 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2925 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2926 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2927 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2928 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2929 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2930 | key.type = BTRFS_EXTENT_ITEM_KEY; |
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 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 2933 | if (ret < 0) |
| 2934 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2935 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 2936 | |
| 2937 | ret = -ENOENT; |
| 2938 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2939 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2940 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2941 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2942 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2943 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2944 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2945 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2946 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2947 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2948 | ret = 1; |
| 2949 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2950 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2951 | if (item_size < sizeof(*ei)) { |
| 2952 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 2953 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2954 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2955 | #endif |
| 2956 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2957 | |
| 2958 | if (item_size != sizeof(*ei) + |
| 2959 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 2960 | goto out; |
| 2961 | |
| 2962 | if (btrfs_extent_generation(leaf, ei) <= |
| 2963 | btrfs_root_last_snapshot(&root->root_item)) |
| 2964 | goto out; |
| 2965 | |
| 2966 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 2967 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 2968 | BTRFS_EXTENT_DATA_REF_KEY) |
| 2969 | goto out; |
| 2970 | |
| 2971 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 2972 | if (btrfs_extent_refs(leaf, ei) != |
| 2973 | btrfs_extent_data_ref_count(leaf, ref) || |
| 2974 | btrfs_extent_data_ref_root(leaf, ref) != |
| 2975 | root->root_key.objectid || |
| 2976 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 2977 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 2978 | goto out; |
| 2979 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2980 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2981 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2982 | return ret; |
| 2983 | } |
| 2984 | |
| 2985 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 2986 | struct btrfs_root *root, |
| 2987 | u64 objectid, u64 offset, u64 bytenr) |
| 2988 | { |
| 2989 | struct btrfs_path *path; |
| 2990 | int ret; |
| 2991 | int ret2; |
| 2992 | |
| 2993 | path = btrfs_alloc_path(); |
| 2994 | if (!path) |
| 2995 | return -ENOENT; |
| 2996 | |
| 2997 | do { |
| 2998 | ret = check_committed_ref(trans, root, path, objectid, |
| 2999 | offset, bytenr); |
| 3000 | if (ret && ret != -ENOENT) |
| 3001 | goto out; |
| 3002 | |
| 3003 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3004 | offset, bytenr); |
| 3005 | } while (ret2 == -EAGAIN); |
| 3006 | |
| 3007 | if (ret2 && ret2 != -ENOENT) { |
| 3008 | ret = ret2; |
| 3009 | goto out; |
| 3010 | } |
| 3011 | |
| 3012 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3013 | ret = 0; |
| 3014 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3015 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3016 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3017 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3018 | return ret; |
| 3019 | } |
| 3020 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3021 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3022 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3023 | struct extent_buffer *buf, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3024 | int full_backref, int inc, int for_cow) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3025 | { |
| 3026 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3027 | u64 num_bytes; |
| 3028 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3029 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3030 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3031 | struct btrfs_key key; |
| 3032 | struct btrfs_file_extent_item *fi; |
| 3033 | int i; |
| 3034 | int level; |
| 3035 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3036 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3037 | u64, u64, u64, u64, u64, u64, int); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3038 | |
| 3039 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3040 | nritems = btrfs_header_nritems(buf); |
| 3041 | level = btrfs_header_level(buf); |
| 3042 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3043 | if (!root->ref_cows && level == 0) |
| 3044 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3045 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3046 | if (inc) |
| 3047 | process_func = btrfs_inc_extent_ref; |
| 3048 | else |
| 3049 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3050 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3051 | if (full_backref) |
| 3052 | parent = buf->start; |
| 3053 | else |
| 3054 | parent = 0; |
| 3055 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3056 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3057 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3058 | btrfs_item_key_to_cpu(buf, &key, i); |
| 3059 | if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3060 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3061 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3062 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3063 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3064 | BTRFS_FILE_EXTENT_INLINE) |
| 3065 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3066 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3067 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3068 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3069 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3070 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3071 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3072 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3073 | parent, ref_root, key.objectid, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3074 | key.offset, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3075 | if (ret) |
| 3076 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3077 | } else { |
| 3078 | bytenr = btrfs_node_blockptr(buf, i); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3079 | num_bytes = btrfs_level_size(root, level - 1); |
| 3080 | ret = process_func(trans, root, bytenr, num_bytes, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3081 | parent, ref_root, level - 1, 0, |
| 3082 | for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3083 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3084 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3085 | } |
| 3086 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3087 | return 0; |
| 3088 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3089 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3090 | } |
| 3091 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3092 | 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] | 3093 | struct extent_buffer *buf, int full_backref, int for_cow) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3094 | { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3095 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3096 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3097 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3098 | 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] | 3099 | struct extent_buffer *buf, int full_backref, int for_cow) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3100 | { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3101 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3102 | } |
| 3103 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3104 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3105 | struct btrfs_root *root, |
| 3106 | struct btrfs_path *path, |
| 3107 | struct btrfs_block_group_cache *cache) |
| 3108 | { |
| 3109 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3110 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3111 | unsigned long bi; |
| 3112 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3113 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3114 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3115 | if (ret < 0) |
| 3116 | goto fail; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3117 | BUG_ON(ret); /* Corruption */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3118 | |
| 3119 | leaf = path->nodes[0]; |
| 3120 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3121 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3122 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3123 | btrfs_release_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3124 | fail: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3125 | if (ret) { |
| 3126 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3127 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3128 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3129 | return 0; |
| 3130 | |
| 3131 | } |
| 3132 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3133 | static struct btrfs_block_group_cache * |
| 3134 | next_block_group(struct btrfs_root *root, |
| 3135 | struct btrfs_block_group_cache *cache) |
| 3136 | { |
| 3137 | struct rb_node *node; |
| 3138 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 3139 | node = rb_next(&cache->cache_node); |
| 3140 | btrfs_put_block_group(cache); |
| 3141 | if (node) { |
| 3142 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3143 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3144 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3145 | } else |
| 3146 | cache = NULL; |
| 3147 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3148 | return cache; |
| 3149 | } |
| 3150 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3151 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3152 | struct btrfs_trans_handle *trans, |
| 3153 | struct btrfs_path *path) |
| 3154 | { |
| 3155 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3156 | struct inode *inode = NULL; |
| 3157 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3158 | int dcs = BTRFS_DC_ERROR; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3159 | int num_pages = 0; |
| 3160 | int retries = 0; |
| 3161 | int ret = 0; |
| 3162 | |
| 3163 | /* |
| 3164 | * If this block group is smaller than 100 megs don't bother caching the |
| 3165 | * block group. |
| 3166 | */ |
| 3167 | if (block_group->key.offset < (100 * 1024 * 1024)) { |
| 3168 | spin_lock(&block_group->lock); |
| 3169 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3170 | spin_unlock(&block_group->lock); |
| 3171 | return 0; |
| 3172 | } |
| 3173 | |
| 3174 | again: |
| 3175 | inode = lookup_free_space_inode(root, block_group, path); |
| 3176 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3177 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3178 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3179 | goto out; |
| 3180 | } |
| 3181 | |
| 3182 | if (IS_ERR(inode)) { |
| 3183 | BUG_ON(retries); |
| 3184 | retries++; |
| 3185 | |
| 3186 | if (block_group->ro) |
| 3187 | goto out_free; |
| 3188 | |
| 3189 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3190 | if (ret) |
| 3191 | goto out_free; |
| 3192 | goto again; |
| 3193 | } |
| 3194 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3195 | /* We've already setup this transaction, go ahead and exit */ |
| 3196 | if (block_group->cache_generation == trans->transid && |
| 3197 | i_size_read(inode)) { |
| 3198 | dcs = BTRFS_DC_SETUP; |
| 3199 | goto out_put; |
| 3200 | } |
| 3201 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3202 | /* |
| 3203 | * We want to set the generation to 0, that way if anything goes wrong |
| 3204 | * from here on out we know not to trust this cache when we load up next |
| 3205 | * time. |
| 3206 | */ |
| 3207 | BTRFS_I(inode)->generation = 0; |
| 3208 | ret = btrfs_update_inode(trans, root, inode); |
| 3209 | WARN_ON(ret); |
| 3210 | |
| 3211 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3212 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3213 | &root->fs_info->global_block_rsv); |
| 3214 | if (ret) |
| 3215 | goto out_put; |
| 3216 | |
Filipe David Borba Manana | 7451432 | 2013-09-20 14:46:51 +0100 | [diff] [blame] | 3217 | ret = btrfs_truncate_free_space_cache(root, trans, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3218 | if (ret) |
| 3219 | goto out_put; |
| 3220 | } |
| 3221 | |
| 3222 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3223 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
| 3224 | !btrfs_test_opt(root, SPACE_CACHE)) { |
| 3225 | /* |
| 3226 | * don't bother trying to write stuff out _if_ |
| 3227 | * a) we're not cached, |
| 3228 | * b) we're with nospace_cache mount option. |
| 3229 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3230 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3231 | spin_unlock(&block_group->lock); |
| 3232 | goto out_put; |
| 3233 | } |
| 3234 | spin_unlock(&block_group->lock); |
| 3235 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3236 | /* |
| 3237 | * Try to preallocate enough space based on how big the block group is. |
| 3238 | * Keep in mind this has to include any pinned space which could end up |
| 3239 | * taking up quite a bit since it's not folded into the other space |
| 3240 | * cache. |
| 3241 | */ |
| 3242 | num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3243 | if (!num_pages) |
| 3244 | num_pages = 1; |
| 3245 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3246 | num_pages *= 16; |
| 3247 | num_pages *= PAGE_CACHE_SIZE; |
| 3248 | |
| 3249 | ret = btrfs_check_data_free_space(inode, num_pages); |
| 3250 | if (ret) |
| 3251 | goto out_put; |
| 3252 | |
| 3253 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3254 | num_pages, num_pages, |
| 3255 | &alloc_hint); |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3256 | if (!ret) |
| 3257 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3258 | btrfs_free_reserved_data_space(inode, num_pages); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3259 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3260 | out_put: |
| 3261 | iput(inode); |
| 3262 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3263 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3264 | out: |
| 3265 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3266 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3267 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3268 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3269 | spin_unlock(&block_group->lock); |
| 3270 | |
| 3271 | return ret; |
| 3272 | } |
| 3273 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3274 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3275 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3276 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3277 | struct btrfs_block_group_cache *cache; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3278 | int err = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3279 | struct btrfs_path *path; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3280 | u64 last = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3281 | |
| 3282 | path = btrfs_alloc_path(); |
| 3283 | if (!path) |
| 3284 | return -ENOMEM; |
| 3285 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3286 | again: |
| 3287 | while (1) { |
| 3288 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3289 | while (cache) { |
| 3290 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3291 | break; |
| 3292 | cache = next_block_group(root, cache); |
| 3293 | } |
| 3294 | if (!cache) { |
| 3295 | if (last == 0) |
| 3296 | break; |
| 3297 | last = 0; |
| 3298 | continue; |
| 3299 | } |
| 3300 | err = cache_save_setup(cache, trans, path); |
| 3301 | last = cache->key.objectid + cache->key.offset; |
| 3302 | btrfs_put_block_group(cache); |
| 3303 | } |
| 3304 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3305 | while (1) { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3306 | if (last == 0) { |
| 3307 | err = btrfs_run_delayed_refs(trans, root, |
| 3308 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3309 | if (err) /* File system offline */ |
| 3310 | goto out; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3311 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3312 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3313 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3314 | while (cache) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3315 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) { |
| 3316 | btrfs_put_block_group(cache); |
| 3317 | goto again; |
| 3318 | } |
| 3319 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3320 | if (cache->dirty) |
| 3321 | break; |
| 3322 | cache = next_block_group(root, cache); |
| 3323 | } |
| 3324 | if (!cache) { |
| 3325 | if (last == 0) |
| 3326 | break; |
| 3327 | last = 0; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3328 | continue; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3329 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3330 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3331 | if (cache->disk_cache_state == BTRFS_DC_SETUP) |
| 3332 | cache->disk_cache_state = BTRFS_DC_NEED_WRITE; |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3333 | cache->dirty = 0; |
| 3334 | last = cache->key.objectid + cache->key.offset; |
| 3335 | |
| 3336 | err = write_one_cache_group(trans, root, path, cache); |
Filipe David Borba Manana | e84cc14 | 2013-09-09 19:49:43 +0100 | [diff] [blame] | 3337 | btrfs_put_block_group(cache); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3338 | if (err) /* File system offline */ |
| 3339 | goto out; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3340 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3341 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3342 | while (1) { |
| 3343 | /* |
| 3344 | * I don't think this is needed since we're just marking our |
| 3345 | * preallocated extent as written, but just in case it can't |
| 3346 | * hurt. |
| 3347 | */ |
| 3348 | if (last == 0) { |
| 3349 | err = btrfs_run_delayed_refs(trans, root, |
| 3350 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3351 | if (err) /* File system offline */ |
| 3352 | goto out; |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3353 | } |
| 3354 | |
| 3355 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3356 | while (cache) { |
| 3357 | /* |
| 3358 | * Really this shouldn't happen, but it could if we |
| 3359 | * couldn't write the entire preallocated extent and |
| 3360 | * splitting the extent resulted in a new block. |
| 3361 | */ |
| 3362 | if (cache->dirty) { |
| 3363 | btrfs_put_block_group(cache); |
| 3364 | goto again; |
| 3365 | } |
| 3366 | if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
| 3367 | break; |
| 3368 | cache = next_block_group(root, cache); |
| 3369 | } |
| 3370 | if (!cache) { |
| 3371 | if (last == 0) |
| 3372 | break; |
| 3373 | last = 0; |
| 3374 | continue; |
| 3375 | } |
| 3376 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3377 | err = btrfs_write_out_cache(root, trans, cache, path); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3378 | |
| 3379 | /* |
| 3380 | * If we didn't have an error then the cache state is still |
| 3381 | * NEED_WRITE, so we can set it to WRITTEN. |
| 3382 | */ |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3383 | if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3384 | cache->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3385 | last = cache->key.objectid + cache->key.offset; |
| 3386 | btrfs_put_block_group(cache); |
| 3387 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3388 | out: |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3389 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3390 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3391 | return err; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3392 | } |
| 3393 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3394 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3395 | { |
| 3396 | struct btrfs_block_group_cache *block_group; |
| 3397 | int readonly = 0; |
| 3398 | |
| 3399 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3400 | if (!block_group || block_group->ro) |
| 3401 | readonly = 1; |
| 3402 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3403 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3404 | return readonly; |
| 3405 | } |
| 3406 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3407 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3408 | u64 total_bytes, u64 bytes_used, |
| 3409 | struct btrfs_space_info **space_info) |
| 3410 | { |
| 3411 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3412 | int i; |
| 3413 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3414 | int ret; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3415 | |
| 3416 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3417 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3418 | factor = 2; |
| 3419 | else |
| 3420 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3421 | |
| 3422 | found = __find_space_info(info, flags); |
| 3423 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3424 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3425 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3426 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3427 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3428 | found->disk_used += bytes_used * factor; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3429 | found->full = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3430 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3431 | *space_info = found; |
| 3432 | return 0; |
| 3433 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3434 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3435 | if (!found) |
| 3436 | return -ENOMEM; |
| 3437 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3438 | ret = percpu_counter_init(&found->total_bytes_pinned, 0); |
| 3439 | if (ret) { |
| 3440 | kfree(found); |
| 3441 | return ret; |
| 3442 | } |
| 3443 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3444 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
| 3445 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3446 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3447 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3448 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3449 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3450 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3451 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3452 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3453 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3454 | found->bytes_reserved = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3455 | found->bytes_readonly = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3456 | found->bytes_may_use = 0; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3457 | found->full = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3458 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3459 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3460 | found->flush = 0; |
| 3461 | init_waitqueue_head(&found->wait); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3462 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3463 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3464 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3465 | info->data_sinfo = found; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3466 | return 0; |
| 3467 | } |
| 3468 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3469 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 3470 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3471 | u64 extra_flags = chunk_to_extended(flags) & |
| 3472 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3473 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3474 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3475 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3476 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 3477 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3478 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 3479 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3480 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3481 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3482 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3483 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3484 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3485 | * returns target flags in extended format or 0 if restripe for this |
| 3486 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 3487 | * |
| 3488 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3489 | */ |
| 3490 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 3491 | { |
| 3492 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3493 | u64 target = 0; |
| 3494 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3495 | if (!bctl) |
| 3496 | return 0; |
| 3497 | |
| 3498 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 3499 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3500 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 3501 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 3502 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3503 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 3504 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 3505 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3506 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 3507 | } |
| 3508 | |
| 3509 | return target; |
| 3510 | } |
| 3511 | |
| 3512 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3513 | * @flags: available profiles in extended format (see ctree.h) |
| 3514 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3515 | * Returns reduced profile in chunk format. If profile changing is in |
| 3516 | * progress (either running or paused) picks the target profile (if it's |
| 3517 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3518 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 3519 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3520 | { |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 3521 | /* |
| 3522 | * we add in the count of missing devices because we want |
| 3523 | * to make sure that any RAID levels on a degraded FS |
| 3524 | * continue to be honored. |
| 3525 | */ |
| 3526 | u64 num_devices = root->fs_info->fs_devices->rw_devices + |
| 3527 | root->fs_info->fs_devices->missing_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3528 | u64 target; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3529 | u64 tmp; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3530 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3531 | /* |
| 3532 | * see if restripe for this chunk_type is in progress, if so |
| 3533 | * try to reduce to the target profile |
| 3534 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3535 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3536 | target = get_restripe_target(root->fs_info, flags); |
| 3537 | if (target) { |
| 3538 | /* pick target profile only if it's already available */ |
| 3539 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3540 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3541 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3542 | } |
| 3543 | } |
| 3544 | spin_unlock(&root->fs_info->balance_lock); |
| 3545 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3546 | /* First, mask out the RAID levels which aren't possible */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3547 | if (num_devices == 1) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3548 | flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3549 | BTRFS_BLOCK_GROUP_RAID5); |
| 3550 | if (num_devices < 3) |
| 3551 | flags &= ~BTRFS_BLOCK_GROUP_RAID6; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3552 | if (num_devices < 4) |
| 3553 | flags &= ~BTRFS_BLOCK_GROUP_RAID10; |
| 3554 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3555 | tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 | |
| 3556 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3557 | BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10); |
| 3558 | flags &= ~tmp; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3559 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3560 | if (tmp & BTRFS_BLOCK_GROUP_RAID6) |
| 3561 | tmp = BTRFS_BLOCK_GROUP_RAID6; |
| 3562 | else if (tmp & BTRFS_BLOCK_GROUP_RAID5) |
| 3563 | tmp = BTRFS_BLOCK_GROUP_RAID5; |
| 3564 | else if (tmp & BTRFS_BLOCK_GROUP_RAID10) |
| 3565 | tmp = BTRFS_BLOCK_GROUP_RAID10; |
| 3566 | else if (tmp & BTRFS_BLOCK_GROUP_RAID1) |
| 3567 | tmp = BTRFS_BLOCK_GROUP_RAID1; |
| 3568 | else if (tmp & BTRFS_BLOCK_GROUP_RAID0) |
| 3569 | tmp = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3570 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3571 | return extended_to_chunk(flags | tmp); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3572 | } |
| 3573 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3574 | static u64 get_alloc_profile(struct btrfs_root *root, u64 flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3575 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3576 | unsigned seq; |
| 3577 | |
| 3578 | do { |
| 3579 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 3580 | |
| 3581 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3582 | flags |= root->fs_info->avail_data_alloc_bits; |
| 3583 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3584 | flags |= root->fs_info->avail_system_alloc_bits; |
| 3585 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3586 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 3587 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3588 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3589 | return btrfs_reduce_alloc_profile(root, flags); |
| 3590 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3591 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 3592 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3593 | { |
| 3594 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3595 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3596 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3597 | if (data) |
| 3598 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 3599 | else if (root == root->fs_info->chunk_root) |
| 3600 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 3601 | else |
| 3602 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 3603 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3604 | ret = get_alloc_profile(root, flags); |
| 3605 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3606 | } |
| 3607 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3608 | /* |
| 3609 | * This will check the space that the inode allocates from to make sure we have |
| 3610 | * enough space for bytes. |
| 3611 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3612 | int btrfs_check_data_free_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3613 | { |
| 3614 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3615 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3616 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3617 | u64 used; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3618 | int ret = 0, committed = 0, alloc_chunk = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3619 | |
| 3620 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3621 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3622 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3623 | if (btrfs_is_free_space_inode(inode)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3624 | committed = 1; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3625 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3626 | } |
| 3627 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3628 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3629 | if (!data_sinfo) |
| 3630 | goto alloc; |
| 3631 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3632 | again: |
| 3633 | /* make sure we have enough space to handle the data first */ |
| 3634 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3635 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 3636 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 3637 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3638 | |
| 3639 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3640 | struct btrfs_trans_handle *trans; |
| 3641 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3642 | /* |
| 3643 | * if we don't have enough free bytes in this space then we need |
| 3644 | * to alloc a new chunk. |
| 3645 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3646 | if (!data_sinfo->full && alloc_chunk) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3647 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3648 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3649 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3650 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3651 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3652 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3653 | /* |
| 3654 | * It is ugly that we don't call nolock join |
| 3655 | * transaction for the free space inode case here. |
| 3656 | * But it is safe because we only do the data space |
| 3657 | * reservation for the free space cache in the |
| 3658 | * transaction context, the common join transaction |
| 3659 | * just increase the counter of the current transaction |
| 3660 | * handler, doesn't try to acquire the trans_lock of |
| 3661 | * the fs. |
| 3662 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3663 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3664 | if (IS_ERR(trans)) |
| 3665 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3666 | |
| 3667 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3668 | alloc_target, |
| 3669 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3670 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3671 | if (ret < 0) { |
| 3672 | if (ret != -ENOSPC) |
| 3673 | return ret; |
| 3674 | else |
| 3675 | goto commit_trans; |
| 3676 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3677 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3678 | if (!data_sinfo) |
| 3679 | data_sinfo = fs_info->data_sinfo; |
| 3680 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3681 | goto again; |
| 3682 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3683 | |
| 3684 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3685 | * If we don't have enough pinned space to deal with this |
| 3686 | * allocation don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3687 | */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3688 | if (percpu_counter_compare(&data_sinfo->total_bytes_pinned, |
| 3689 | bytes) < 0) |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3690 | committed = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3691 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3692 | |
| 3693 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3694 | commit_trans: |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 3695 | if (!committed && |
| 3696 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3697 | committed = 1; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3698 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3699 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3700 | if (IS_ERR(trans)) |
| 3701 | return PTR_ERR(trans); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3702 | ret = btrfs_commit_transaction(trans, root); |
| 3703 | if (ret) |
| 3704 | return ret; |
| 3705 | goto again; |
| 3706 | } |
| 3707 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 3708 | trace_btrfs_space_reservation(root->fs_info, |
| 3709 | "space_info:enospc", |
| 3710 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3711 | return -ENOSPC; |
| 3712 | } |
| 3713 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3714 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3715 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3716 | spin_unlock(&data_sinfo->lock); |
| 3717 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3718 | return 0; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3719 | } |
| 3720 | |
| 3721 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3722 | * Called if we need to clear a data reservation for this inode. |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3723 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3724 | void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3725 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3726 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3727 | struct btrfs_space_info *data_sinfo; |
| 3728 | |
| 3729 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3730 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3731 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3732 | data_sinfo = root->fs_info->data_sinfo; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3733 | spin_lock(&data_sinfo->lock); |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 3734 | WARN_ON(data_sinfo->bytes_may_use < bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3735 | data_sinfo->bytes_may_use -= bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3736 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3737 | data_sinfo->flags, bytes, 0); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3738 | spin_unlock(&data_sinfo->lock); |
| 3739 | } |
| 3740 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3741 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 3742 | { |
| 3743 | struct list_head *head = &info->space_info; |
| 3744 | struct btrfs_space_info *found; |
| 3745 | |
| 3746 | rcu_read_lock(); |
| 3747 | list_for_each_entry_rcu(found, head, list) { |
| 3748 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3749 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3750 | } |
| 3751 | rcu_read_unlock(); |
| 3752 | } |
| 3753 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3754 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 3755 | { |
| 3756 | return (global->size << 1); |
| 3757 | } |
| 3758 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3759 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3760 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3761 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3762 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3763 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3764 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3765 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3766 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3767 | if (force == CHUNK_ALLOC_FORCE) |
| 3768 | return 1; |
| 3769 | |
| 3770 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3771 | * We need to take into account the global rsv because for all intents |
| 3772 | * and purposes it's used space. Don't worry about locking the |
| 3773 | * global_rsv, it doesn't change except when the transaction commits. |
| 3774 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 3775 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3776 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3777 | |
| 3778 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3779 | * in limited mode, we want to have some free space up to |
| 3780 | * about 1% of the FS size. |
| 3781 | */ |
| 3782 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 3783 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3784 | thresh = max_t(u64, 64 * 1024 * 1024, |
| 3785 | div_factor_fine(thresh, 1)); |
| 3786 | |
| 3787 | if (num_bytes - num_allocated < thresh) |
| 3788 | return 1; |
| 3789 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3790 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3791 | if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 3792 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3793 | return 1; |
| 3794 | } |
| 3795 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3796 | static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type) |
| 3797 | { |
| 3798 | u64 num_dev; |
| 3799 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3800 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 3801 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3802 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3803 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3804 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 3805 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 3806 | num_dev = 2; |
| 3807 | else |
| 3808 | num_dev = 1; /* DUP or single */ |
| 3809 | |
| 3810 | /* metadata for updaing devices and chunk tree */ |
| 3811 | return btrfs_calc_trans_metadata_size(root, num_dev + 1); |
| 3812 | } |
| 3813 | |
| 3814 | static void check_system_chunk(struct btrfs_trans_handle *trans, |
| 3815 | struct btrfs_root *root, u64 type) |
| 3816 | { |
| 3817 | struct btrfs_space_info *info; |
| 3818 | u64 left; |
| 3819 | u64 thresh; |
| 3820 | |
| 3821 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 3822 | spin_lock(&info->lock); |
| 3823 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 3824 | info->bytes_reserved - info->bytes_readonly; |
| 3825 | spin_unlock(&info->lock); |
| 3826 | |
| 3827 | thresh = get_system_chunk_thresh(root, type); |
| 3828 | if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3829 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 3830 | left, thresh, type); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3831 | dump_space_info(info, 0, 0); |
| 3832 | } |
| 3833 | |
| 3834 | if (left < thresh) { |
| 3835 | u64 flags; |
| 3836 | |
| 3837 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
| 3838 | btrfs_alloc_chunk(trans, root, flags); |
| 3839 | } |
| 3840 | } |
| 3841 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3842 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3843 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3844 | { |
| 3845 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3846 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3847 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3848 | int ret = 0; |
| 3849 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3850 | /* Don't re-enter if we're already allocating a chunk */ |
| 3851 | if (trans->allocating_chunk) |
| 3852 | return -ENOSPC; |
| 3853 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3854 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3855 | if (!space_info) { |
| 3856 | ret = update_space_info(extent_root->fs_info, flags, |
| 3857 | 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3858 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3859 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3860 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3861 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3862 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3863 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 3864 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3865 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3866 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3867 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 3868 | ret = -ENOSPC; |
| 3869 | else |
| 3870 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3871 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3872 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3873 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3874 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3875 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3876 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3877 | return 0; |
| 3878 | } else if (space_info->chunk_alloc) { |
| 3879 | wait_for_alloc = 1; |
| 3880 | } else { |
| 3881 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3882 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3883 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3884 | spin_unlock(&space_info->lock); |
| 3885 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3886 | mutex_lock(&fs_info->chunk_mutex); |
| 3887 | |
| 3888 | /* |
| 3889 | * The chunk_mutex is held throughout the entirety of a chunk |
| 3890 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 3891 | * other guy is done and we need to recheck and see if we should |
| 3892 | * allocate. |
| 3893 | */ |
| 3894 | if (wait_for_alloc) { |
| 3895 | mutex_unlock(&fs_info->chunk_mutex); |
| 3896 | wait_for_alloc = 0; |
| 3897 | goto again; |
| 3898 | } |
| 3899 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3900 | trans->allocating_chunk = true; |
| 3901 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3902 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 3903 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 3904 | * allocating mixed chunks instead of individual chunks. |
| 3905 | */ |
| 3906 | if (btrfs_mixed_space_info(space_info)) |
| 3907 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 3908 | |
| 3909 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3910 | * if we're doing a data chunk, go ahead and make sure that |
| 3911 | * we keep a reasonable number of metadata chunks allocated in the |
| 3912 | * FS as well. |
| 3913 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3914 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3915 | fs_info->data_chunk_allocations++; |
| 3916 | if (!(fs_info->data_chunk_allocations % |
| 3917 | fs_info->metadata_ratio)) |
| 3918 | force_metadata_allocation(fs_info); |
| 3919 | } |
| 3920 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3921 | /* |
| 3922 | * Check if we have enough space in SYSTEM chunk because we may need |
| 3923 | * to update devices. |
| 3924 | */ |
| 3925 | check_system_chunk(trans, extent_root, flags); |
| 3926 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3927 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3928 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 3929 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3930 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 3931 | if (ret < 0 && ret != -ENOSPC) |
| 3932 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3933 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3934 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3935 | else |
| 3936 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3937 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3938 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 3939 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3940 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3941 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 3942 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3943 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3944 | } |
| 3945 | |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3946 | static int can_overcommit(struct btrfs_root *root, |
| 3947 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 3948 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3949 | { |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3950 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3951 | u64 profile = btrfs_get_alloc_profile(root, 0); |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3952 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3953 | u64 avail; |
| 3954 | u64 used; |
| 3955 | |
| 3956 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3957 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 3958 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3959 | /* |
| 3960 | * We only want to allow over committing if we have lots of actual space |
| 3961 | * free, but if we don't have enough space to handle the global reserve |
| 3962 | * space then we could end up having a real enospc problem when trying |
| 3963 | * to allocate a chunk or some other such important allocation. |
| 3964 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3965 | spin_lock(&global_rsv->lock); |
| 3966 | space_size = calc_global_rsv_need_space(global_rsv); |
| 3967 | spin_unlock(&global_rsv->lock); |
| 3968 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 3969 | return 0; |
| 3970 | |
| 3971 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3972 | |
| 3973 | spin_lock(&root->fs_info->free_chunk_lock); |
| 3974 | avail = root->fs_info->free_chunk_space; |
| 3975 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 3976 | |
| 3977 | /* |
| 3978 | * 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] | 3979 | * space is actually useable. For raid56, the space info used |
| 3980 | * doesn't include the parity drive, so we don't have to |
| 3981 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3982 | */ |
| 3983 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 3984 | BTRFS_BLOCK_GROUP_RAID1 | |
| 3985 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3986 | avail >>= 1; |
| 3987 | |
| 3988 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 3989 | * If we aren't flushing all things, let us overcommit up to |
| 3990 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 3991 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3992 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 3993 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 3994 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3995 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 3996 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3997 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 3998 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 3999 | return 1; |
| 4000 | return 0; |
| 4001 | } |
| 4002 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4003 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
| 4004 | unsigned long nr_pages) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4005 | { |
| 4006 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4007 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4008 | if (down_read_trylock(&sb->s_umount)) { |
| 4009 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4010 | up_read(&sb->s_umount); |
| 4011 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4012 | /* |
| 4013 | * We needn't worry the filesystem going from r/w to r/o though |
| 4014 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4015 | * should guarantee the delalloc inodes list be empty after |
| 4016 | * the filesystem is readonly(all dirty pages are written to |
| 4017 | * the disk). |
| 4018 | */ |
Miao Xie | 91aef86 | 2013-11-04 23:13:26 +0800 | [diff] [blame] | 4019 | btrfs_start_delalloc_roots(root->fs_info, 0); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4020 | if (!current->journal_info) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4021 | btrfs_wait_ordered_roots(root->fs_info, -1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4022 | } |
| 4023 | } |
| 4024 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4025 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4026 | { |
| 4027 | u64 bytes; |
| 4028 | int nr; |
| 4029 | |
| 4030 | bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 4031 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4032 | if (!nr) |
| 4033 | nr = 1; |
| 4034 | return nr; |
| 4035 | } |
| 4036 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4037 | #define EXTENT_SIZE_PER_ITEM (256 * 1024) |
| 4038 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4039 | /* |
| 4040 | * shrink metadata reservation for delalloc |
| 4041 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4042 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4043 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4044 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4045 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4046 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4047 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4048 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4049 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4050 | long time_left; |
Miao Xie | d3ee29e | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4051 | unsigned long nr_pages; |
| 4052 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4053 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4054 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4055 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4056 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4057 | items = calc_reclaim_items_nr(root, to_reclaim); |
| 4058 | to_reclaim = items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4059 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4060 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4061 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4062 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4063 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4064 | delalloc_bytes = percpu_counter_sum_positive( |
| 4065 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4066 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4067 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4068 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4069 | if (wait_ordered) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4070 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4071 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4072 | } |
| 4073 | |
Miao Xie | d3ee29e | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4074 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4075 | while (delalloc_bytes && loops < 3) { |
| 4076 | max_reclaim = min(delalloc_bytes, to_reclaim); |
| 4077 | nr_pages = max_reclaim >> PAGE_CACHE_SHIFT; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4078 | btrfs_writeback_inodes_sb_nr(root, nr_pages); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4079 | /* |
| 4080 | * We need to wait for the async pages to actually start before |
| 4081 | * we do anything. |
| 4082 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4083 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4084 | if (!max_reclaim) |
| 4085 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4086 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4087 | if (max_reclaim <= nr_pages) |
| 4088 | max_reclaim = 0; |
| 4089 | else |
| 4090 | max_reclaim -= nr_pages; |
| 4091 | |
| 4092 | wait_event(root->fs_info->async_submit_wait, |
| 4093 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4094 | (int)max_reclaim); |
| 4095 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4096 | if (!trans) |
| 4097 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4098 | else |
| 4099 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4100 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4101 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4102 | spin_unlock(&space_info->lock); |
| 4103 | break; |
| 4104 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4105 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4106 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4107 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4108 | if (wait_ordered && !trans) { |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4109 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4110 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4111 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4112 | if (time_left) |
| 4113 | break; |
| 4114 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4115 | delalloc_bytes = percpu_counter_sum_positive( |
| 4116 | &root->fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4117 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4118 | } |
| 4119 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4120 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4121 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4122 | * @root - the root we're allocating for |
| 4123 | * @bytes - the number of bytes we want to reserve |
| 4124 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4125 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4126 | * This will check to make sure that committing the transaction will actually |
| 4127 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4128 | * will return -ENOSPC. |
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 | static int may_commit_transaction(struct btrfs_root *root, |
| 4131 | struct btrfs_space_info *space_info, |
| 4132 | u64 bytes, int force) |
| 4133 | { |
| 4134 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4135 | struct btrfs_trans_handle *trans; |
| 4136 | |
| 4137 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4138 | if (trans) |
| 4139 | return -EAGAIN; |
| 4140 | |
| 4141 | if (force) |
| 4142 | goto commit; |
| 4143 | |
| 4144 | /* See if there is enough pinned space to make this reservation */ |
| 4145 | spin_lock(&space_info->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4146 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4147 | bytes) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4148 | spin_unlock(&space_info->lock); |
| 4149 | goto commit; |
| 4150 | } |
| 4151 | spin_unlock(&space_info->lock); |
| 4152 | |
| 4153 | /* |
| 4154 | * See if there is some space in the delayed insertion reservation for |
| 4155 | * this reservation. |
| 4156 | */ |
| 4157 | if (space_info != delayed_rsv->space_info) |
| 4158 | return -ENOSPC; |
| 4159 | |
Liu Bo | d9b0218 | 2012-02-16 18:34:39 +0800 | [diff] [blame] | 4160 | spin_lock(&space_info->lock); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4161 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4162 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4163 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4164 | spin_unlock(&delayed_rsv->lock); |
Liu Bo | d9b0218 | 2012-02-16 18:34:39 +0800 | [diff] [blame] | 4165 | spin_unlock(&space_info->lock); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4166 | return -ENOSPC; |
| 4167 | } |
| 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 | |
| 4171 | commit: |
| 4172 | trans = btrfs_join_transaction(root); |
| 4173 | if (IS_ERR(trans)) |
| 4174 | return -ENOSPC; |
| 4175 | |
| 4176 | return btrfs_commit_transaction(trans, root); |
| 4177 | } |
| 4178 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4179 | enum flush_state { |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4180 | FLUSH_DELAYED_ITEMS_NR = 1, |
| 4181 | FLUSH_DELAYED_ITEMS = 2, |
| 4182 | FLUSH_DELALLOC = 3, |
| 4183 | FLUSH_DELALLOC_WAIT = 4, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4184 | ALLOC_CHUNK = 5, |
| 4185 | COMMIT_TRANS = 6, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4186 | }; |
| 4187 | |
| 4188 | static int flush_space(struct btrfs_root *root, |
| 4189 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4190 | u64 orig_bytes, int state) |
| 4191 | { |
| 4192 | struct btrfs_trans_handle *trans; |
| 4193 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4194 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4195 | |
| 4196 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4197 | case FLUSH_DELAYED_ITEMS_NR: |
| 4198 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4199 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4200 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4201 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4202 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4203 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4204 | trans = btrfs_join_transaction(root); |
| 4205 | if (IS_ERR(trans)) { |
| 4206 | ret = PTR_ERR(trans); |
| 4207 | break; |
| 4208 | } |
| 4209 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4210 | btrfs_end_transaction(trans, root); |
| 4211 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4212 | case FLUSH_DELALLOC: |
| 4213 | case FLUSH_DELALLOC_WAIT: |
| 4214 | shrink_delalloc(root, num_bytes, orig_bytes, |
| 4215 | state == FLUSH_DELALLOC_WAIT); |
| 4216 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4217 | case ALLOC_CHUNK: |
| 4218 | trans = btrfs_join_transaction(root); |
| 4219 | if (IS_ERR(trans)) { |
| 4220 | ret = PTR_ERR(trans); |
| 4221 | break; |
| 4222 | } |
| 4223 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4224 | btrfs_get_alloc_profile(root, 0), |
| 4225 | CHUNK_ALLOC_NO_FORCE); |
| 4226 | btrfs_end_transaction(trans, root); |
| 4227 | if (ret == -ENOSPC) |
| 4228 | ret = 0; |
| 4229 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4230 | case COMMIT_TRANS: |
| 4231 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4232 | break; |
| 4233 | default: |
| 4234 | ret = -ENOSPC; |
| 4235 | break; |
| 4236 | } |
| 4237 | |
| 4238 | return ret; |
| 4239 | } |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4240 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4241 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 4242 | * @root - the root we're allocating for |
| 4243 | * @block_rsv - the block_rsv we're allocating for |
| 4244 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 4245 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4246 | * |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4247 | * This will reserve orgi_bytes number of bytes from the space info associated |
| 4248 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 4249 | * flush out space to make room. It will do this by flushing delalloc if |
| 4250 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 4251 | * regain reservations will be made and this will fail if there is not enough |
| 4252 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4253 | */ |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4254 | static int reserve_metadata_bytes(struct btrfs_root *root, |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4255 | struct btrfs_block_rsv *block_rsv, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4256 | u64 orig_bytes, |
| 4257 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4258 | { |
| 4259 | struct btrfs_space_info *space_info = block_rsv->space_info; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4260 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4261 | u64 num_bytes = orig_bytes; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4262 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4263 | int ret = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4264 | bool flushing = false; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4265 | |
| 4266 | again: |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4267 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4268 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4269 | /* |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4270 | * We only want to wait if somebody other than us is flushing and we |
| 4271 | * are actually allowed to flush all things. |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4272 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4273 | while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing && |
| 4274 | space_info->flush) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4275 | spin_unlock(&space_info->lock); |
| 4276 | /* |
| 4277 | * If we have a trans handle we can't wait because the flusher |
| 4278 | * may have to commit the transaction, which would mean we would |
| 4279 | * deadlock since we are waiting for the flusher to finish, but |
| 4280 | * hold the current transaction open. |
| 4281 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4282 | if (current->journal_info) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4283 | return -EAGAIN; |
Arne Jansen | b9688bb | 2012-04-18 10:27:16 +0200 | [diff] [blame] | 4284 | ret = wait_event_killable(space_info->wait, !space_info->flush); |
| 4285 | /* Must have been killed, return */ |
| 4286 | if (ret) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4287 | return -EINTR; |
| 4288 | |
| 4289 | spin_lock(&space_info->lock); |
| 4290 | } |
| 4291 | |
| 4292 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4293 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4294 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4295 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4296 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4297 | /* |
| 4298 | * The idea here is that we've not already over-reserved the block group |
| 4299 | * then we can go ahead and save our reservation first and then start |
| 4300 | * flushing if we need to. Otherwise if we've already overcommitted |
| 4301 | * lets start flushing stuff first and then come back and try to make |
| 4302 | * our reservation. |
| 4303 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4304 | if (used <= space_info->total_bytes) { |
| 4305 | if (used + orig_bytes <= space_info->total_bytes) { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4306 | space_info->bytes_may_use += orig_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4307 | trace_btrfs_space_reservation(root->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4308 | "space_info", space_info->flags, orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4309 | ret = 0; |
| 4310 | } else { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4311 | /* |
| 4312 | * Ok set num_bytes to orig_bytes since we aren't |
| 4313 | * overocmmitted, this way we only try and reclaim what |
| 4314 | * we need. |
| 4315 | */ |
| 4316 | num_bytes = orig_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4317 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4318 | } else { |
| 4319 | /* |
| 4320 | * Ok we're over committed, set num_bytes to the overcommitted |
| 4321 | * amount plus the amount of bytes that we need for this |
| 4322 | * reservation. |
| 4323 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4324 | num_bytes = used - space_info->total_bytes + |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4325 | (orig_bytes * 2); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4326 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4327 | |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 4328 | if (ret && can_overcommit(root, space_info, orig_bytes, flush)) { |
| 4329 | space_info->bytes_may_use += orig_bytes; |
| 4330 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4331 | space_info->flags, orig_bytes, |
| 4332 | 1); |
| 4333 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4334 | } |
| 4335 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4336 | /* |
| 4337 | * Couldn't make our reservation, save our place so while we're trying |
| 4338 | * to reclaim space we can actually use it instead of somebody else |
| 4339 | * stealing it from us. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4340 | * |
| 4341 | * We make the other tasks wait for the flush only when we can flush |
| 4342 | * all things. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4343 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 4344 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4345 | flushing = true; |
| 4346 | space_info->flush = 1; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4347 | } |
| 4348 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4349 | spin_unlock(&space_info->lock); |
| 4350 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4351 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4352 | goto out; |
| 4353 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4354 | ret = flush_space(root, space_info, num_bytes, orig_bytes, |
| 4355 | flush_state); |
| 4356 | flush_state++; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4357 | |
| 4358 | /* |
| 4359 | * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock |
| 4360 | * would happen. So skip delalloc flush. |
| 4361 | */ |
| 4362 | if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4363 | (flush_state == FLUSH_DELALLOC || |
| 4364 | flush_state == FLUSH_DELALLOC_WAIT)) |
| 4365 | flush_state = ALLOC_CHUNK; |
| 4366 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4367 | if (!ret) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4368 | goto again; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4369 | else if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4370 | flush_state < COMMIT_TRANS) |
| 4371 | goto again; |
| 4372 | else if (flush == BTRFS_RESERVE_FLUSH_ALL && |
| 4373 | flush_state <= COMMIT_TRANS) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4374 | goto again; |
| 4375 | |
| 4376 | out: |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 4377 | if (ret == -ENOSPC && |
| 4378 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 4379 | struct btrfs_block_rsv *global_rsv = |
| 4380 | &root->fs_info->global_block_rsv; |
| 4381 | |
| 4382 | if (block_rsv != global_rsv && |
| 4383 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 4384 | ret = 0; |
| 4385 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4386 | if (ret == -ENOSPC) |
| 4387 | trace_btrfs_space_reservation(root->fs_info, |
| 4388 | "space_info:enospc", |
| 4389 | space_info->flags, orig_bytes, 1); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4390 | if (flushing) { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4391 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4392 | space_info->flush = 0; |
| 4393 | wake_up_all(&space_info->wait); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4394 | spin_unlock(&space_info->lock); |
| 4395 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4396 | return ret; |
| 4397 | } |
| 4398 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4399 | static struct btrfs_block_rsv *get_block_rsv( |
| 4400 | const struct btrfs_trans_handle *trans, |
| 4401 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4402 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4403 | struct btrfs_block_rsv *block_rsv = NULL; |
| 4404 | |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4405 | if (root->ref_cows) |
| 4406 | block_rsv = trans->block_rsv; |
| 4407 | |
| 4408 | if (root == root->fs_info->csum_root && trans->adding_csums) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4409 | block_rsv = trans->block_rsv; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4410 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4411 | if (root == root->fs_info->uuid_root) |
| 4412 | block_rsv = trans->block_rsv; |
| 4413 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4414 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4415 | block_rsv = root->block_rsv; |
| 4416 | |
| 4417 | if (!block_rsv) |
| 4418 | block_rsv = &root->fs_info->empty_block_rsv; |
| 4419 | |
| 4420 | return block_rsv; |
| 4421 | } |
| 4422 | |
| 4423 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 4424 | u64 num_bytes) |
| 4425 | { |
| 4426 | int ret = -ENOSPC; |
| 4427 | spin_lock(&block_rsv->lock); |
| 4428 | if (block_rsv->reserved >= num_bytes) { |
| 4429 | block_rsv->reserved -= num_bytes; |
| 4430 | if (block_rsv->reserved < block_rsv->size) |
| 4431 | block_rsv->full = 0; |
| 4432 | ret = 0; |
| 4433 | } |
| 4434 | spin_unlock(&block_rsv->lock); |
| 4435 | return ret; |
| 4436 | } |
| 4437 | |
| 4438 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 4439 | u64 num_bytes, int update_size) |
| 4440 | { |
| 4441 | spin_lock(&block_rsv->lock); |
| 4442 | block_rsv->reserved += num_bytes; |
| 4443 | if (update_size) |
| 4444 | block_rsv->size += num_bytes; |
| 4445 | else if (block_rsv->reserved >= block_rsv->size) |
| 4446 | block_rsv->full = 1; |
| 4447 | spin_unlock(&block_rsv->lock); |
| 4448 | } |
| 4449 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 4450 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 4451 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 4452 | int min_factor) |
| 4453 | { |
| 4454 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 4455 | u64 min_bytes; |
| 4456 | |
| 4457 | if (global_rsv->space_info != dest->space_info) |
| 4458 | return -ENOSPC; |
| 4459 | |
| 4460 | spin_lock(&global_rsv->lock); |
| 4461 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 4462 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 4463 | spin_unlock(&global_rsv->lock); |
| 4464 | return -ENOSPC; |
| 4465 | } |
| 4466 | global_rsv->reserved -= num_bytes; |
| 4467 | if (global_rsv->reserved < global_rsv->size) |
| 4468 | global_rsv->full = 0; |
| 4469 | spin_unlock(&global_rsv->lock); |
| 4470 | |
| 4471 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 4472 | return 0; |
| 4473 | } |
| 4474 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4475 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 4476 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 4477 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4478 | { |
| 4479 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 4480 | |
| 4481 | spin_lock(&block_rsv->lock); |
| 4482 | if (num_bytes == (u64)-1) |
| 4483 | num_bytes = block_rsv->size; |
| 4484 | block_rsv->size -= num_bytes; |
| 4485 | if (block_rsv->reserved >= block_rsv->size) { |
| 4486 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 4487 | block_rsv->reserved = block_rsv->size; |
| 4488 | block_rsv->full = 1; |
| 4489 | } else { |
| 4490 | num_bytes = 0; |
| 4491 | } |
| 4492 | spin_unlock(&block_rsv->lock); |
| 4493 | |
| 4494 | if (num_bytes > 0) { |
| 4495 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 4496 | spin_lock(&dest->lock); |
| 4497 | if (!dest->full) { |
| 4498 | u64 bytes_to_add; |
| 4499 | |
| 4500 | bytes_to_add = dest->size - dest->reserved; |
| 4501 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 4502 | dest->reserved += bytes_to_add; |
| 4503 | if (dest->reserved >= dest->size) |
| 4504 | dest->full = 1; |
| 4505 | num_bytes -= bytes_to_add; |
| 4506 | } |
| 4507 | spin_unlock(&dest->lock); |
| 4508 | } |
| 4509 | if (num_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4510 | spin_lock(&space_info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4511 | space_info->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4512 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4513 | space_info->flags, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4514 | spin_unlock(&space_info->lock); |
| 4515 | } |
| 4516 | } |
| 4517 | } |
| 4518 | |
| 4519 | static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src, |
| 4520 | struct btrfs_block_rsv *dst, u64 num_bytes) |
| 4521 | { |
| 4522 | int ret; |
| 4523 | |
| 4524 | ret = block_rsv_use_bytes(src, num_bytes); |
| 4525 | if (ret) |
| 4526 | return ret; |
| 4527 | |
| 4528 | block_rsv_add_bytes(dst, num_bytes, 1); |
| 4529 | return 0; |
| 4530 | } |
| 4531 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4532 | 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] | 4533 | { |
| 4534 | memset(rsv, 0, sizeof(*rsv)); |
| 4535 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4536 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4537 | } |
| 4538 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4539 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 4540 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4541 | { |
| 4542 | struct btrfs_block_rsv *block_rsv; |
| 4543 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4544 | |
| 4545 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 4546 | if (!block_rsv) |
| 4547 | return NULL; |
| 4548 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4549 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4550 | block_rsv->space_info = __find_space_info(fs_info, |
| 4551 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4552 | return block_rsv; |
| 4553 | } |
| 4554 | |
| 4555 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 4556 | struct btrfs_block_rsv *rsv) |
| 4557 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4558 | if (!rsv) |
| 4559 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4560 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 4561 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4562 | } |
| 4563 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4564 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 4565 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 4566 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4567 | { |
| 4568 | int ret; |
| 4569 | |
| 4570 | if (num_bytes == 0) |
| 4571 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4572 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 4573 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4574 | if (!ret) { |
| 4575 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 4576 | return 0; |
| 4577 | } |
| 4578 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4579 | return ret; |
| 4580 | } |
| 4581 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4582 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4583 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4584 | { |
| 4585 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4586 | int ret = -ENOSPC; |
| 4587 | |
| 4588 | if (!block_rsv) |
| 4589 | return 0; |
| 4590 | |
| 4591 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4592 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 4593 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4594 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4595 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4596 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4597 | return ret; |
| 4598 | } |
| 4599 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4600 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 4601 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 4602 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4603 | { |
| 4604 | u64 num_bytes = 0; |
| 4605 | int ret = -ENOSPC; |
| 4606 | |
| 4607 | if (!block_rsv) |
| 4608 | return 0; |
| 4609 | |
| 4610 | spin_lock(&block_rsv->lock); |
| 4611 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4612 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4613 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4614 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4615 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4616 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4617 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4618 | if (!ret) |
| 4619 | return 0; |
| 4620 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 4621 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4622 | if (!ret) { |
| 4623 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4624 | return 0; |
| 4625 | } |
| 4626 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4627 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4628 | } |
| 4629 | |
| 4630 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv, |
| 4631 | struct btrfs_block_rsv *dst_rsv, |
| 4632 | u64 num_bytes) |
| 4633 | { |
| 4634 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4635 | } |
| 4636 | |
| 4637 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 4638 | struct btrfs_block_rsv *block_rsv, |
| 4639 | u64 num_bytes) |
| 4640 | { |
| 4641 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
| 4642 | if (global_rsv->full || global_rsv == block_rsv || |
| 4643 | block_rsv->space_info != global_rsv->space_info) |
| 4644 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4645 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 4646 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4647 | } |
| 4648 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4649 | /* |
| 4650 | * helper to calculate size of global block reservation. |
| 4651 | * the desired value is sum of space used by extent tree, |
| 4652 | * checksum tree and root tree |
| 4653 | */ |
| 4654 | static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info) |
| 4655 | { |
| 4656 | struct btrfs_space_info *sinfo; |
| 4657 | u64 num_bytes; |
| 4658 | u64 meta_used; |
| 4659 | u64 data_used; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4660 | int csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4661 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4662 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 4663 | spin_lock(&sinfo->lock); |
| 4664 | data_used = sinfo->bytes_used; |
| 4665 | spin_unlock(&sinfo->lock); |
| 4666 | |
| 4667 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4668 | spin_lock(&sinfo->lock); |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4669 | if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4670 | data_used = 0; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4671 | meta_used = sinfo->bytes_used; |
| 4672 | spin_unlock(&sinfo->lock); |
| 4673 | |
| 4674 | num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) * |
| 4675 | csum_size * 2; |
| 4676 | num_bytes += div64_u64(data_used + meta_used, 50); |
| 4677 | |
| 4678 | if (num_bytes * 3 > meta_used) |
Chris Mason | 8e62c2d | 2012-04-12 13:46:48 -0400 | [diff] [blame] | 4679 | num_bytes = div64_u64(meta_used, 3); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4680 | |
| 4681 | return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10); |
| 4682 | } |
| 4683 | |
| 4684 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4685 | { |
| 4686 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 4687 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 4688 | u64 num_bytes; |
| 4689 | |
| 4690 | num_bytes = calc_global_metadata_size(fs_info); |
| 4691 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4692 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4693 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4694 | |
Josef Bacik | fdf30d1 | 2013-03-26 15:31:45 -0400 | [diff] [blame] | 4695 | block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4696 | |
| 4697 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4698 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 4699 | sinfo->bytes_may_use; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4700 | |
| 4701 | if (sinfo->total_bytes > num_bytes) { |
| 4702 | num_bytes = sinfo->total_bytes - num_bytes; |
| 4703 | block_rsv->reserved += num_bytes; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4704 | sinfo->bytes_may_use += num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4705 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4706 | sinfo->flags, num_bytes, 1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4707 | } |
| 4708 | |
| 4709 | if (block_rsv->reserved >= block_rsv->size) { |
| 4710 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4711 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4712 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4713 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4714 | block_rsv->reserved = block_rsv->size; |
| 4715 | block_rsv->full = 1; |
| 4716 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 4717 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4718 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4719 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4720 | } |
| 4721 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4722 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4723 | { |
| 4724 | struct btrfs_space_info *space_info; |
| 4725 | |
| 4726 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4727 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4728 | |
| 4729 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4730 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4731 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4732 | fs_info->trans_block_rsv.space_info = space_info; |
| 4733 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4734 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4735 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4736 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 4737 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 4738 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 4739 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 4740 | if (fs_info->quota_root) |
| 4741 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4742 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4743 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4744 | update_global_block_rsv(fs_info); |
| 4745 | } |
| 4746 | |
| 4747 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4748 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4749 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 4750 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4751 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 4752 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 4753 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 4754 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 4755 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 4756 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4757 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 4758 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4759 | } |
| 4760 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4761 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 4762 | struct btrfs_root *root) |
| 4763 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4764 | if (!trans->block_rsv) |
| 4765 | return; |
| 4766 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4767 | if (!trans->bytes_reserved) |
| 4768 | return; |
| 4769 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 4770 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4771 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 4772 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4773 | trans->bytes_reserved = 0; |
| 4774 | } |
| 4775 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4776 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4777 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 4778 | struct inode *inode) |
| 4779 | { |
| 4780 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4781 | struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root); |
| 4782 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 4783 | |
| 4784 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4785 | * We need to hold space in order to delete our orphan item once we've |
| 4786 | * added it, so this takes the reservation so we can release it later |
| 4787 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4788 | */ |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4789 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4790 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4791 | btrfs_ino(inode), num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4792 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4793 | } |
| 4794 | |
| 4795 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 4796 | { |
| 4797 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4798 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4799 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4800 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4801 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 4802 | } |
| 4803 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4804 | /* |
| 4805 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 4806 | * root: the root of the parent directory |
| 4807 | * rsv: block reservation |
| 4808 | * items: the number of items that we need do reservation |
| 4809 | * qgroup_reserved: used to return the reserved size in qgroup |
| 4810 | * |
| 4811 | * This function is used to reserve the space for snapshot/subvolume |
| 4812 | * creation and deletion. Those operations are different with the |
| 4813 | * common file/directory operations, they change two fs/file trees |
| 4814 | * and root tree, the number of items that the qgroup reserves is |
| 4815 | * different with the free space reservation. So we can not use |
| 4816 | * the space reseravtion mechanism in start_transaction(). |
| 4817 | */ |
| 4818 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 4819 | struct btrfs_block_rsv *rsv, |
| 4820 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4821 | u64 *qgroup_reserved, |
| 4822 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4823 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4824 | u64 num_bytes; |
| 4825 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4826 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4827 | |
| 4828 | if (root->fs_info->quota_enabled) { |
| 4829 | /* One for parent inode, two for dir entries */ |
| 4830 | num_bytes = 3 * root->leafsize; |
| 4831 | ret = btrfs_qgroup_reserve(root, num_bytes); |
| 4832 | if (ret) |
| 4833 | return ret; |
| 4834 | } else { |
| 4835 | num_bytes = 0; |
| 4836 | } |
| 4837 | |
| 4838 | *qgroup_reserved = num_bytes; |
| 4839 | |
| 4840 | num_bytes = btrfs_calc_trans_metadata_size(root, items); |
| 4841 | rsv->space_info = __find_space_info(root->fs_info, |
| 4842 | BTRFS_BLOCK_GROUP_METADATA); |
| 4843 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 4844 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4845 | |
| 4846 | if (ret == -ENOSPC && use_global_rsv) |
| 4847 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes); |
| 4848 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4849 | if (ret) { |
| 4850 | if (*qgroup_reserved) |
| 4851 | btrfs_qgroup_free(root, *qgroup_reserved); |
| 4852 | } |
| 4853 | |
| 4854 | return ret; |
| 4855 | } |
| 4856 | |
| 4857 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 4858 | struct btrfs_block_rsv *rsv, |
| 4859 | u64 qgroup_reserved) |
| 4860 | { |
| 4861 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 4862 | if (qgroup_reserved) |
| 4863 | btrfs_qgroup_free(root, qgroup_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4864 | } |
| 4865 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 4866 | /** |
| 4867 | * drop_outstanding_extent - drop an outstanding extent |
| 4868 | * @inode: the inode we're dropping the extent for |
| 4869 | * |
| 4870 | * This is called when we are freeing up an outstanding extent, either called |
| 4871 | * after an error or after an extent is written. This will return the number of |
| 4872 | * reserved extents that need to be freed. This must be called with |
| 4873 | * BTRFS_I(inode)->lock held. |
| 4874 | */ |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4875 | static unsigned drop_outstanding_extent(struct inode *inode) |
| 4876 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4877 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4878 | unsigned dropped_extents = 0; |
| 4879 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4880 | BUG_ON(!BTRFS_I(inode)->outstanding_extents); |
| 4881 | BTRFS_I(inode)->outstanding_extents--; |
| 4882 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4883 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 4884 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 4885 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4886 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4887 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4888 | /* |
| 4889 | * If we have more or the same amount of outsanding extents than we have |
| 4890 | * reserved then we need to leave the reserved extents count alone. |
| 4891 | */ |
| 4892 | if (BTRFS_I(inode)->outstanding_extents >= |
| 4893 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4894 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4895 | |
| 4896 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 4897 | BTRFS_I(inode)->outstanding_extents; |
| 4898 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 4899 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4900 | } |
| 4901 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 4902 | /** |
| 4903 | * calc_csum_metadata_size - return the amount of metada space that must be |
| 4904 | * reserved/free'd for the given bytes. |
| 4905 | * @inode: the inode we're manipulating |
| 4906 | * @num_bytes: the number of bytes in question |
| 4907 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 4908 | * |
| 4909 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 4910 | * correct amount of metadata that must either be reserved or freed. We |
| 4911 | * calculate how many checksums we can fit into one leaf and then divide the |
| 4912 | * number of bytes that will need to be checksumed by this value to figure out |
| 4913 | * how many checksums will be required. If we are adding bytes then the number |
| 4914 | * may go up and we will return the number of additional bytes that must be |
| 4915 | * reserved. If it is going down we will return the number of bytes that must |
| 4916 | * be freed. |
| 4917 | * |
| 4918 | * This must be called with BTRFS_I(inode)->lock held. |
| 4919 | */ |
| 4920 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 4921 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4922 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 4923 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4924 | u64 csum_size; |
| 4925 | int num_csums_per_leaf; |
| 4926 | int num_csums; |
| 4927 | int old_csums; |
| 4928 | |
| 4929 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 4930 | BTRFS_I(inode)->csum_bytes == 0) |
| 4931 | return 0; |
| 4932 | |
| 4933 | old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 4934 | if (reserve) |
| 4935 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 4936 | else |
| 4937 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
| 4938 | csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item); |
| 4939 | num_csums_per_leaf = (int)div64_u64(csum_size, |
| 4940 | sizeof(struct btrfs_csum_item) + |
| 4941 | sizeof(struct btrfs_disk_key)); |
| 4942 | num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 4943 | num_csums = num_csums + num_csums_per_leaf - 1; |
| 4944 | num_csums = num_csums / num_csums_per_leaf; |
| 4945 | |
| 4946 | old_csums = old_csums + num_csums_per_leaf - 1; |
| 4947 | old_csums = old_csums / num_csums_per_leaf; |
| 4948 | |
| 4949 | /* No change, no need to reserve more */ |
| 4950 | if (old_csums == num_csums) |
| 4951 | return 0; |
| 4952 | |
| 4953 | if (reserve) |
| 4954 | return btrfs_calc_trans_metadata_size(root, |
| 4955 | num_csums - old_csums); |
| 4956 | |
| 4957 | return btrfs_calc_trans_metadata_size(root, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4958 | } |
| 4959 | |
| 4960 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 4961 | { |
| 4962 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4963 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4964 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 4965 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4966 | unsigned nr_extents = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 4967 | int extra_reserve = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4968 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 4969 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4970 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 4971 | u64 to_free = 0; |
| 4972 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4973 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4974 | /* If we are a free space inode we need to not flush since we will be in |
| 4975 | * the middle of a transaction commit. We also don't need the delalloc |
| 4976 | * mutex since we won't race with anybody. We need this mostly to make |
| 4977 | * lockdep shut its filthy mouth. |
| 4978 | */ |
| 4979 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4980 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4981 | delalloc_lock = false; |
| 4982 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 4983 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4984 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 4985 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4986 | schedule_timeout(1); |
| 4987 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 4988 | if (delalloc_lock) |
| 4989 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 4990 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4991 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4992 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4993 | spin_lock(&BTRFS_I(inode)->lock); |
| 4994 | BTRFS_I(inode)->outstanding_extents++; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 4995 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4996 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 4997 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 4998 | nr_extents = BTRFS_I(inode)->outstanding_extents - |
| 4999 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5000 | |
| 5001 | /* |
| 5002 | * Add an item to reserve for updating the inode when we complete the |
| 5003 | * delalloc io. |
| 5004 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5005 | if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5006 | &BTRFS_I(inode)->runtime_flags)) { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5007 | nr_extents++; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5008 | extra_reserve = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5009 | } |
| 5010 | |
| 5011 | to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5012 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5013 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5014 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5015 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5016 | if (root->fs_info->quota_enabled) { |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5017 | ret = btrfs_qgroup_reserve(root, num_bytes + |
| 5018 | nr_extents * root->leafsize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5019 | if (ret) |
| 5020 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5021 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5022 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5023 | ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush); |
| 5024 | if (unlikely(ret)) { |
| 5025 | if (root->fs_info->quota_enabled) |
Miao Xie | 4b5829a | 2012-12-05 10:53:25 +0000 | [diff] [blame] | 5026 | btrfs_qgroup_free(root, num_bytes + |
| 5027 | nr_extents * root->leafsize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5028 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5029 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5030 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5031 | spin_lock(&BTRFS_I(inode)->lock); |
| 5032 | if (extra_reserve) { |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5033 | set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5034 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5035 | nr_extents--; |
| 5036 | } |
| 5037 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 5038 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5039 | |
| 5040 | if (delalloc_lock) |
| 5041 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5042 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5043 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 5044 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5045 | btrfs_ino(inode), to_reserve, 1); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5046 | block_rsv_add_bytes(block_rsv, to_reserve, 1); |
| 5047 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5048 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5049 | |
| 5050 | out_fail: |
| 5051 | spin_lock(&BTRFS_I(inode)->lock); |
| 5052 | dropped = drop_outstanding_extent(inode); |
| 5053 | /* |
| 5054 | * If the inodes csum_bytes is the same as the original |
| 5055 | * csum_bytes then we know we haven't raced with any free()ers |
| 5056 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5057 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5058 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5059 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5060 | } else { |
| 5061 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 5062 | u64 bytes; |
| 5063 | |
| 5064 | /* |
| 5065 | * This is tricky, but first we need to figure out how much we |
| 5066 | * free'd from any free-ers that occured during this |
| 5067 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 5068 | * before we dropped our lock, and then call the free for the |
| 5069 | * number of bytes that were freed while we were trying our |
| 5070 | * reservation. |
| 5071 | */ |
| 5072 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 5073 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 5074 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 5075 | |
| 5076 | |
| 5077 | /* |
| 5078 | * Now we need to see how much we would have freed had we not |
| 5079 | * been making this reservation and our ->csum_bytes were not |
| 5080 | * artificially inflated. |
| 5081 | */ |
| 5082 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 5083 | bytes = csum_bytes - orig_csum_bytes; |
| 5084 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 5085 | |
| 5086 | /* |
| 5087 | * Now reset ->csum_bytes to what it should be. If bytes is |
| 5088 | * more than to_free then we would have free'd more space had we |
| 5089 | * not had an artificially high ->csum_bytes, so we need to free |
| 5090 | * the remainder. If bytes is the same or less then we don't |
| 5091 | * need to do anything, the other free-ers did the correct |
| 5092 | * thing. |
| 5093 | */ |
| 5094 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 5095 | if (bytes > to_free) |
| 5096 | to_free = bytes - to_free; |
| 5097 | else |
| 5098 | to_free = 0; |
| 5099 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5100 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5101 | if (dropped) |
| 5102 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
| 5103 | |
| 5104 | if (to_free) { |
| 5105 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 5106 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5107 | btrfs_ino(inode), to_free, 0); |
| 5108 | } |
| 5109 | if (delalloc_lock) |
| 5110 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 5111 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5112 | } |
| 5113 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5114 | /** |
| 5115 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 5116 | * @inode: the inode to release the reservation for |
| 5117 | * @num_bytes: the number of bytes we're releasing |
| 5118 | * |
| 5119 | * This will release the metadata reservation for an inode. This can be called |
| 5120 | * once we complete IO for a given set of bytes to release their metadata |
| 5121 | * reservations. |
| 5122 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5123 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 5124 | { |
| 5125 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5126 | u64 to_free = 0; |
| 5127 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5128 | |
| 5129 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5130 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5131 | dropped = drop_outstanding_extent(inode); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5132 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 5133 | if (num_bytes) |
| 5134 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5135 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5136 | if (dropped > 0) |
| 5137 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5138 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5139 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5140 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5141 | if (root->fs_info->quota_enabled) { |
| 5142 | btrfs_qgroup_free(root, num_bytes + |
| 5143 | dropped * root->leafsize); |
| 5144 | } |
| 5145 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5146 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 5147 | to_free); |
| 5148 | } |
| 5149 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5150 | /** |
| 5151 | * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc |
| 5152 | * @inode: inode we're writing to |
| 5153 | * @num_bytes: the number of bytes we want to allocate |
| 5154 | * |
| 5155 | * This will do the following things |
| 5156 | * |
| 5157 | * o reserve space in the data space info for num_bytes |
| 5158 | * o reserve space in the metadata space info based on number of outstanding |
| 5159 | * extents and how much csums will be needed |
| 5160 | * o add to the inodes ->delalloc_bytes |
| 5161 | * o add it to the fs_info's delalloc inodes list. |
| 5162 | * |
| 5163 | * This will return 0 for success and -ENOSPC if there is no space left. |
| 5164 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5165 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes) |
| 5166 | { |
| 5167 | int ret; |
| 5168 | |
| 5169 | ret = btrfs_check_data_free_space(inode, num_bytes); |
| 5170 | if (ret) |
| 5171 | return ret; |
| 5172 | |
| 5173 | ret = btrfs_delalloc_reserve_metadata(inode, num_bytes); |
| 5174 | if (ret) { |
| 5175 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5176 | return ret; |
| 5177 | } |
| 5178 | |
| 5179 | return 0; |
| 5180 | } |
| 5181 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5182 | /** |
| 5183 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
| 5184 | * @inode: inode we're releasing space for |
| 5185 | * @num_bytes: the number of bytes we want to free up |
| 5186 | * |
| 5187 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 5188 | * called in the case that we don't need the metadata AND data reservations |
| 5189 | * anymore. So if there is an error or we insert an inline extent. |
| 5190 | * |
| 5191 | * This function will release the metadata space that was not used and will |
| 5192 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 5193 | * list if there are no delalloc bytes left. |
| 5194 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5195 | void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes) |
| 5196 | { |
| 5197 | btrfs_delalloc_release_metadata(inode, num_bytes); |
| 5198 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5199 | } |
| 5200 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 5201 | static int update_block_group(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5202 | u64 bytenr, u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5203 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5204 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5205 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5206 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5207 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5208 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5209 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 5210 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5211 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5212 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5213 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5214 | if (alloc) |
| 5215 | old_val += num_bytes; |
| 5216 | else |
| 5217 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5218 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5219 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5220 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5221 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5222 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5223 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5224 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5225 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 5226 | BTRFS_BLOCK_GROUP_RAID1 | |
| 5227 | BTRFS_BLOCK_GROUP_RAID10)) |
| 5228 | factor = 2; |
| 5229 | else |
| 5230 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 5231 | /* |
| 5232 | * If this block group has free space cache written out, we |
| 5233 | * need to make sure to load it if we are removing space. This |
| 5234 | * is because we need the unpinning stage to actually add the |
| 5235 | * space back to the block group, otherwise we will leak space. |
| 5236 | */ |
| 5237 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5238 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5239 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5240 | byte_in_group = bytenr - cache->key.objectid; |
| 5241 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5242 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5243 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5244 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5245 | |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 5246 | if (btrfs_test_opt(root, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5247 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 5248 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 5249 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5250 | cache->dirty = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5251 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5252 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5253 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5254 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5255 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5256 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5257 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5258 | cache->space_info->bytes_used += num_bytes; |
| 5259 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5260 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5261 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5262 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5263 | old_val -= num_bytes; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5264 | btrfs_set_block_group_used(&cache->item, old_val); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5265 | cache->pinned += num_bytes; |
| 5266 | cache->space_info->bytes_pinned += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5267 | cache->space_info->bytes_used -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5268 | cache->space_info->disk_used -= num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5269 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5270 | spin_unlock(&cache->space_info->lock); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5271 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5272 | set_extent_dirty(info->pinned_extents, |
| 5273 | bytenr, bytenr + num_bytes - 1, |
| 5274 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5275 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5276 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5277 | total -= num_bytes; |
| 5278 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5279 | } |
| 5280 | return 0; |
| 5281 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 5282 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5283 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 5284 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5285 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5286 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5287 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 5288 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 5289 | bytenr = root->fs_info->first_logical_byte; |
| 5290 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 5291 | |
| 5292 | if (bytenr < (u64)-1) |
| 5293 | return bytenr; |
| 5294 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5295 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 5296 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5297 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5298 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5299 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5300 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5301 | |
| 5302 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5303 | } |
| 5304 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5305 | static int pin_down_extent(struct btrfs_root *root, |
| 5306 | struct btrfs_block_group_cache *cache, |
| 5307 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5308 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5309 | spin_lock(&cache->space_info->lock); |
| 5310 | spin_lock(&cache->lock); |
| 5311 | cache->pinned += num_bytes; |
| 5312 | cache->space_info->bytes_pinned += num_bytes; |
| 5313 | if (reserved) { |
| 5314 | cache->reserved -= num_bytes; |
| 5315 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5316 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5317 | spin_unlock(&cache->lock); |
| 5318 | spin_unlock(&cache->space_info->lock); |
| 5319 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5320 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 5321 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 5322 | if (reserved) |
| 5323 | trace_btrfs_reserved_extent_free(root, bytenr, num_bytes); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5324 | return 0; |
| 5325 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5326 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5327 | /* |
| 5328 | * this function must be called within transaction |
| 5329 | */ |
| 5330 | int btrfs_pin_extent(struct btrfs_root *root, |
| 5331 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5332 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5333 | struct btrfs_block_group_cache *cache; |
| 5334 | |
| 5335 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5336 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5337 | |
| 5338 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 5339 | |
| 5340 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5341 | return 0; |
| 5342 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5343 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5344 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5345 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5346 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 5347 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5348 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5349 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5350 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5351 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5352 | |
| 5353 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5354 | if (!cache) |
| 5355 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5356 | |
| 5357 | /* |
| 5358 | * pull in the free space cache (if any) so that our pin |
| 5359 | * removes the free space from the cache. We have load_only set |
| 5360 | * to one because the slow code to read in the free extents does check |
| 5361 | * the pinned extents. |
| 5362 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5363 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5364 | |
| 5365 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 5366 | |
| 5367 | /* 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] | 5368 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5369 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5370 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5371 | } |
| 5372 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 5373 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 5374 | { |
| 5375 | int ret; |
| 5376 | struct btrfs_block_group_cache *block_group; |
| 5377 | struct btrfs_caching_control *caching_ctl; |
| 5378 | |
| 5379 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 5380 | if (!block_group) |
| 5381 | return -EINVAL; |
| 5382 | |
| 5383 | cache_block_group(block_group, 0); |
| 5384 | caching_ctl = get_caching_control(block_group); |
| 5385 | |
| 5386 | if (!caching_ctl) { |
| 5387 | /* Logic error */ |
| 5388 | BUG_ON(!block_group_cache_done(block_group)); |
| 5389 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 5390 | } else { |
| 5391 | mutex_lock(&caching_ctl->mutex); |
| 5392 | |
| 5393 | if (start >= caching_ctl->progress) { |
| 5394 | ret = add_excluded_extent(root, start, num_bytes); |
| 5395 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 5396 | ret = btrfs_remove_free_space(block_group, |
| 5397 | start, num_bytes); |
| 5398 | } else { |
| 5399 | num_bytes = caching_ctl->progress - start; |
| 5400 | ret = btrfs_remove_free_space(block_group, |
| 5401 | start, num_bytes); |
| 5402 | if (ret) |
| 5403 | goto out_lock; |
| 5404 | |
| 5405 | num_bytes = (start + num_bytes) - |
| 5406 | caching_ctl->progress; |
| 5407 | start = caching_ctl->progress; |
| 5408 | ret = add_excluded_extent(root, start, num_bytes); |
| 5409 | } |
| 5410 | out_lock: |
| 5411 | mutex_unlock(&caching_ctl->mutex); |
| 5412 | put_caching_control(caching_ctl); |
| 5413 | } |
| 5414 | btrfs_put_block_group(block_group); |
| 5415 | return ret; |
| 5416 | } |
| 5417 | |
| 5418 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 5419 | struct extent_buffer *eb) |
| 5420 | { |
| 5421 | struct btrfs_file_extent_item *item; |
| 5422 | struct btrfs_key key; |
| 5423 | int found_type; |
| 5424 | int i; |
| 5425 | |
| 5426 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 5427 | return 0; |
| 5428 | |
| 5429 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 5430 | btrfs_item_key_to_cpu(eb, &key, i); |
| 5431 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 5432 | continue; |
| 5433 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 5434 | found_type = btrfs_file_extent_type(eb, item); |
| 5435 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 5436 | continue; |
| 5437 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 5438 | continue; |
| 5439 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 5440 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 5441 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 5442 | } |
| 5443 | |
| 5444 | return 0; |
| 5445 | } |
| 5446 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5447 | /** |
| 5448 | * btrfs_update_reserved_bytes - update the block_group and space info counters |
| 5449 | * @cache: The cache we are manipulating |
| 5450 | * @num_bytes: The number of bytes in question |
| 5451 | * @reserve: One of the reservation enums |
| 5452 | * |
| 5453 | * This is called by the allocator when it reserves space, or by somebody who is |
| 5454 | * freeing space that was never actually used on disk. For example if you |
| 5455 | * reserve some space for a new leaf in transaction A and before transaction A |
| 5456 | * commits you free that leaf, you call this with reserve set to 0 in order to |
| 5457 | * clear the reservation. |
| 5458 | * |
| 5459 | * Metadata reservations should be called with RESERVE_ALLOC so we do the proper |
| 5460 | * ENOSPC accounting. For data we handle the reservation through clearing the |
| 5461 | * delalloc bits in the io_tree. We have to do this since we could end up |
| 5462 | * allocating less disk space for the amount of data we have reserved in the |
| 5463 | * case of compression. |
| 5464 | * |
| 5465 | * If this is a reservation and the block group has become read only we cannot |
| 5466 | * make the reservation and return -EAGAIN, otherwise this function always |
| 5467 | * succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5468 | */ |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5469 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 5470 | u64 num_bytes, int reserve) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5471 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5472 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5473 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5474 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5475 | spin_lock(&space_info->lock); |
| 5476 | spin_lock(&cache->lock); |
| 5477 | if (reserve != RESERVE_FREE) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5478 | if (cache->ro) { |
| 5479 | ret = -EAGAIN; |
| 5480 | } else { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5481 | cache->reserved += num_bytes; |
| 5482 | space_info->bytes_reserved += num_bytes; |
| 5483 | if (reserve == RESERVE_ALLOC) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5484 | trace_btrfs_space_reservation(cache->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5485 | "space_info", space_info->flags, |
| 5486 | num_bytes, 0); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5487 | space_info->bytes_may_use -= num_bytes; |
| 5488 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5489 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5490 | } else { |
| 5491 | if (cache->ro) |
| 5492 | space_info->bytes_readonly += num_bytes; |
| 5493 | cache->reserved -= num_bytes; |
| 5494 | space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5495 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5496 | spin_unlock(&cache->lock); |
| 5497 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5498 | return ret; |
| 5499 | } |
| 5500 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 5501 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5502 | struct btrfs_root *root) |
| 5503 | { |
| 5504 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5505 | struct btrfs_caching_control *next; |
| 5506 | struct btrfs_caching_control *caching_ctl; |
| 5507 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5508 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5509 | |
| 5510 | down_write(&fs_info->extent_commit_sem); |
| 5511 | |
| 5512 | list_for_each_entry_safe(caching_ctl, next, |
| 5513 | &fs_info->caching_block_groups, list) { |
| 5514 | cache = caching_ctl->block_group; |
| 5515 | if (block_group_cache_done(cache)) { |
| 5516 | cache->last_byte_to_unpin = (u64)-1; |
| 5517 | list_del_init(&caching_ctl->list); |
| 5518 | put_caching_control(caching_ctl); |
| 5519 | } else { |
| 5520 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 5521 | } |
| 5522 | } |
| 5523 | |
| 5524 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5525 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 5526 | else |
| 5527 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 5528 | |
| 5529 | up_write(&fs_info->extent_commit_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5530 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5531 | list_for_each_entry_rcu(space_info, &fs_info->space_info, list) |
| 5532 | percpu_counter_set(&space_info->total_bytes_pinned, 0); |
| 5533 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5534 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5535 | } |
| 5536 | |
| 5537 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 5538 | { |
| 5539 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5540 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5541 | struct btrfs_space_info *space_info; |
| 5542 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5543 | u64 len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5544 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5545 | |
| 5546 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5547 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5548 | if (!cache || |
| 5549 | start >= cache->key.objectid + cache->key.offset) { |
| 5550 | if (cache) |
| 5551 | btrfs_put_block_group(cache); |
| 5552 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5553 | BUG_ON(!cache); /* Logic error */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5554 | } |
| 5555 | |
| 5556 | len = cache->key.objectid + cache->key.offset - start; |
| 5557 | len = min(len, end + 1 - start); |
| 5558 | |
| 5559 | if (start < cache->last_byte_to_unpin) { |
| 5560 | len = min(len, cache->last_byte_to_unpin - start); |
| 5561 | btrfs_add_free_space(cache, start, len); |
| 5562 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5563 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5564 | start += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5565 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5566 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5567 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5568 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5569 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5570 | space_info->bytes_pinned -= len; |
| 5571 | if (cache->ro) { |
| 5572 | space_info->bytes_readonly += len; |
| 5573 | readonly = true; |
| 5574 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5575 | spin_unlock(&cache->lock); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5576 | if (!readonly && global_rsv->space_info == space_info) { |
| 5577 | spin_lock(&global_rsv->lock); |
| 5578 | if (!global_rsv->full) { |
| 5579 | len = min(len, global_rsv->size - |
| 5580 | global_rsv->reserved); |
| 5581 | global_rsv->reserved += len; |
| 5582 | space_info->bytes_may_use += len; |
| 5583 | if (global_rsv->reserved >= global_rsv->size) |
| 5584 | global_rsv->full = 1; |
| 5585 | } |
| 5586 | spin_unlock(&global_rsv->lock); |
| 5587 | } |
| 5588 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5589 | } |
| 5590 | |
| 5591 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5592 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 5593 | return 0; |
| 5594 | } |
| 5595 | |
| 5596 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5597 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5598 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5599 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5600 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5601 | u64 start; |
| 5602 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5603 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5604 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5605 | if (trans->aborted) |
| 5606 | return 0; |
| 5607 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5608 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5609 | unpin = &fs_info->freed_extents[1]; |
| 5610 | else |
| 5611 | unpin = &fs_info->freed_extents[0]; |
| 5612 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5613 | while (1) { |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5614 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 5615 | EXTENT_DIRTY, NULL); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5616 | if (ret) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5617 | break; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5618 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 5619 | if (btrfs_test_opt(root, DISCARD)) |
| 5620 | ret = btrfs_discard_extent(root, start, |
| 5621 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5622 | |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5623 | clear_extent_dirty(unpin, start, end, GFP_NOFS); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5624 | unpin_extent_range(root, start, end); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5625 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5626 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 5627 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 5628 | return 0; |
| 5629 | } |
| 5630 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5631 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 5632 | u64 owner, u64 root_objectid) |
| 5633 | { |
| 5634 | struct btrfs_space_info *space_info; |
| 5635 | u64 flags; |
| 5636 | |
| 5637 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 5638 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 5639 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 5640 | else |
| 5641 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 5642 | } else { |
| 5643 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 5644 | } |
| 5645 | |
| 5646 | space_info = __find_space_info(fs_info, flags); |
| 5647 | BUG_ON(!space_info); /* Logic bug */ |
| 5648 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 5649 | } |
| 5650 | |
| 5651 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5652 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 5653 | struct btrfs_root *root, |
| 5654 | u64 bytenr, u64 num_bytes, u64 parent, |
| 5655 | u64 root_objectid, u64 owner_objectid, |
| 5656 | u64 owner_offset, int refs_to_drop, |
| 5657 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5658 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 5659 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5660 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 5661 | struct btrfs_fs_info *info = root->fs_info; |
| 5662 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5663 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5664 | struct btrfs_extent_item *ei; |
| 5665 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5666 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5667 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5668 | int extent_slot = 0; |
| 5669 | int found_extent = 0; |
| 5670 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5671 | u32 item_size; |
| 5672 | u64 refs; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5673 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 5674 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 5675 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 5676 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 5677 | if (!path) |
| 5678 | return -ENOMEM; |
| 5679 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 5680 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5681 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5682 | |
| 5683 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 5684 | BUG_ON(!is_data && refs_to_drop != 1); |
| 5685 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5686 | if (is_data) |
| 5687 | skinny_metadata = 0; |
| 5688 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5689 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 5690 | bytenr, num_bytes, parent, |
| 5691 | root_objectid, owner_objectid, |
| 5692 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5693 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5694 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5695 | while (extent_slot >= 0) { |
| 5696 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5697 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5698 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5699 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5700 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5701 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5702 | found_extent = 1; |
| 5703 | break; |
| 5704 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5705 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 5706 | key.offset == owner_objectid) { |
| 5707 | found_extent = 1; |
| 5708 | break; |
| 5709 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5710 | if (path->slots[0] - extent_slot > 5) |
| 5711 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5712 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5713 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5714 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5715 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 5716 | if (found_extent && item_size < sizeof(*ei)) |
| 5717 | found_extent = 0; |
| 5718 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5719 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5720 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 5721 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5722 | NULL, refs_to_drop, |
| 5723 | is_data); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5724 | if (ret) { |
| 5725 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5726 | goto out; |
| 5727 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5728 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5729 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5730 | |
| 5731 | key.objectid = bytenr; |
| 5732 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5733 | key.offset = num_bytes; |
| 5734 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5735 | if (!is_data && skinny_metadata) { |
| 5736 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 5737 | key.offset = owner_objectid; |
| 5738 | } |
| 5739 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5740 | ret = btrfs_search_slot(trans, extent_root, |
| 5741 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5742 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 5743 | /* |
| 5744 | * Couldn't find our skinny metadata item, |
| 5745 | * see if we have ye olde extent item. |
| 5746 | */ |
| 5747 | path->slots[0]--; |
| 5748 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 5749 | path->slots[0]); |
| 5750 | if (key.objectid == bytenr && |
| 5751 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5752 | key.offset == num_bytes) |
| 5753 | ret = 0; |
| 5754 | } |
| 5755 | |
| 5756 | if (ret > 0 && skinny_metadata) { |
| 5757 | skinny_metadata = false; |
| 5758 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5759 | key.offset = num_bytes; |
| 5760 | btrfs_release_path(path); |
| 5761 | ret = btrfs_search_slot(trans, extent_root, |
| 5762 | &key, path, -1, 1); |
| 5763 | } |
| 5764 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5765 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5766 | 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] | 5767 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 5768 | if (ret > 0) |
| 5769 | btrfs_print_leaf(extent_root, |
| 5770 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5771 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5772 | if (ret < 0) { |
| 5773 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5774 | goto out; |
| 5775 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5776 | extent_slot = path->slots[0]; |
| 5777 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 5778 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5779 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5780 | btrfs_err(info, |
| 5781 | "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] | 5782 | bytenr, parent, root_objectid, owner_objectid, |
| 5783 | owner_offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5784 | } else { |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5785 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5786 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5787 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5788 | |
| 5789 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5790 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 5791 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5792 | if (item_size < sizeof(*ei)) { |
| 5793 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 5794 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 5795 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5796 | if (ret < 0) { |
| 5797 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5798 | goto out; |
| 5799 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5800 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5801 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5802 | path->leave_spinning = 1; |
| 5803 | |
| 5804 | key.objectid = bytenr; |
| 5805 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5806 | key.offset = num_bytes; |
| 5807 | |
| 5808 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 5809 | -1, 1); |
| 5810 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5811 | 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] | 5812 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5813 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 5814 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5815 | if (ret < 0) { |
| 5816 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5817 | goto out; |
| 5818 | } |
| 5819 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5820 | extent_slot = path->slots[0]; |
| 5821 | leaf = path->nodes[0]; |
| 5822 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 5823 | } |
| 5824 | #endif |
| 5825 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5826 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 5827 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5828 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 5829 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5830 | struct btrfs_tree_block_info *bi; |
| 5831 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 5832 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 5833 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5834 | } |
| 5835 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5836 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 5837 | if (refs < refs_to_drop) { |
| 5838 | btrfs_err(info, "trying to drop %d refs but we only have %Lu " |
| 5839 | "for bytenr %Lu\n", refs_to_drop, refs, bytenr); |
| 5840 | ret = -EINVAL; |
| 5841 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5842 | goto out; |
| 5843 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5844 | refs -= refs_to_drop; |
| 5845 | |
| 5846 | if (refs > 0) { |
| 5847 | if (extent_op) |
| 5848 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 5849 | /* |
| 5850 | * In the case of inline back ref, reference count will |
| 5851 | * be updated by remove_extent_backref |
| 5852 | */ |
| 5853 | if (iref) { |
| 5854 | BUG_ON(!found_extent); |
| 5855 | } else { |
| 5856 | btrfs_set_extent_refs(leaf, ei, refs); |
| 5857 | btrfs_mark_buffer_dirty(leaf); |
| 5858 | } |
| 5859 | if (found_extent) { |
| 5860 | ret = remove_extent_backref(trans, extent_root, path, |
| 5861 | iref, refs_to_drop, |
| 5862 | is_data); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5863 | if (ret) { |
| 5864 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5865 | goto out; |
| 5866 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5867 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5868 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 5869 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5870 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5871 | if (found_extent) { |
| 5872 | BUG_ON(is_data && refs_to_drop != |
| 5873 | extent_data_ref_count(root, path, iref)); |
| 5874 | if (iref) { |
| 5875 | BUG_ON(path->slots[0] != extent_slot); |
| 5876 | } else { |
| 5877 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 5878 | path->slots[0] = extent_slot; |
| 5879 | num_to_del = 2; |
| 5880 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 5881 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5882 | |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5883 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 5884 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5885 | if (ret) { |
| 5886 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5887 | goto out; |
| 5888 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5889 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 5890 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5891 | if (is_data) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 5892 | ret = btrfs_del_csums(trans, root, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5893 | if (ret) { |
| 5894 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5895 | goto out; |
| 5896 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 5897 | } |
| 5898 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 5899 | ret = update_block_group(root, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5900 | if (ret) { |
| 5901 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5902 | goto out; |
| 5903 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5904 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5905 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 5906 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5907 | return ret; |
| 5908 | } |
| 5909 | |
| 5910 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5911 | * 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] | 5912 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 5913 | * a given extent, and if there are no other delayed refs to be processed, it |
| 5914 | * removes it from the tree. |
| 5915 | */ |
| 5916 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 5917 | struct btrfs_root *root, u64 bytenr) |
| 5918 | { |
| 5919 | struct btrfs_delayed_ref_head *head; |
| 5920 | struct btrfs_delayed_ref_root *delayed_refs; |
| 5921 | struct btrfs_delayed_ref_node *ref; |
| 5922 | struct rb_node *node; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5923 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5924 | |
| 5925 | delayed_refs = &trans->transaction->delayed_refs; |
| 5926 | spin_lock(&delayed_refs->lock); |
| 5927 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 5928 | if (!head) |
| 5929 | goto out; |
| 5930 | |
| 5931 | node = rb_prev(&head->node.rb_node); |
| 5932 | if (!node) |
| 5933 | goto out; |
| 5934 | |
| 5935 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
| 5936 | |
| 5937 | /* there are still entries for this ref, we can't drop it */ |
| 5938 | if (ref->bytenr == bytenr) |
| 5939 | goto out; |
| 5940 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5941 | if (head->extent_op) { |
| 5942 | if (!head->must_insert_reserved) |
| 5943 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 5944 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5945 | head->extent_op = NULL; |
| 5946 | } |
| 5947 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5948 | /* |
| 5949 | * waiting for the lock here would deadlock. If someone else has it |
| 5950 | * locked they are already in the process of dropping it anyway |
| 5951 | */ |
| 5952 | if (!mutex_trylock(&head->mutex)) |
| 5953 | goto out; |
| 5954 | |
| 5955 | /* |
| 5956 | * at this point we have a head with no other entries. Go |
| 5957 | * ahead and process it. |
| 5958 | */ |
| 5959 | head->node.in_tree = 0; |
| 5960 | rb_erase(&head->node.rb_node, &delayed_refs->root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 5961 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5962 | delayed_refs->num_entries--; |
| 5963 | |
| 5964 | /* |
| 5965 | * we don't take a ref on the node because we're removing it from the |
| 5966 | * tree, so we just steal the ref the tree was holding. |
| 5967 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 5968 | delayed_refs->num_heads--; |
| 5969 | if (list_empty(&head->cluster)) |
| 5970 | delayed_refs->num_heads_ready--; |
| 5971 | |
| 5972 | list_del_init(&head->cluster); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5973 | spin_unlock(&delayed_refs->lock); |
| 5974 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5975 | BUG_ON(head->extent_op); |
| 5976 | if (head->must_insert_reserved) |
| 5977 | ret = 1; |
| 5978 | |
| 5979 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5980 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5981 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 5982 | out: |
| 5983 | spin_unlock(&delayed_refs->lock); |
| 5984 | return 0; |
| 5985 | } |
| 5986 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5987 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 5988 | struct btrfs_root *root, |
| 5989 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 5990 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5991 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5992 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5993 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5994 | int ret; |
| 5995 | |
| 5996 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 5997 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 5998 | buf->start, buf->len, |
| 5999 | parent, root->root_key.objectid, |
| 6000 | btrfs_header_level(buf), |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6001 | BTRFS_DROP_DELAYED_REF, NULL, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6002 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6003 | } |
| 6004 | |
| 6005 | if (!last_ref) |
| 6006 | return; |
| 6007 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6008 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6009 | |
| 6010 | if (btrfs_header_generation(buf) == trans->transid) { |
| 6011 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 6012 | ret = check_ref_cleanup(trans, root, buf->start); |
| 6013 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6014 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6015 | } |
| 6016 | |
| 6017 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 6018 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
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 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 6023 | |
| 6024 | btrfs_add_free_space(cache, buf->start, buf->len); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6025 | btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6026 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6027 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6028 | } |
| 6029 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6030 | if (pin) |
| 6031 | add_pinned_bytes(root->fs_info, buf->len, |
| 6032 | btrfs_header_level(buf), |
| 6033 | root->root_key.objectid); |
| 6034 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 6035 | /* |
| 6036 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 6037 | * anymore. |
| 6038 | */ |
| 6039 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6040 | btrfs_put_block_group(cache); |
| 6041 | } |
| 6042 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6043 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6044 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6045 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
| 6046 | u64 owner, u64 offset, int for_cow) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6047 | { |
| 6048 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6049 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6050 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6051 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 6052 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6053 | /* |
| 6054 | * tree log blocks never actually go into the extent allocation |
| 6055 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6056 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6057 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 6058 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6059 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6060 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6061 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6062 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6063 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 6064 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6065 | parent, root_objectid, (int)owner, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6066 | BTRFS_DROP_DELAYED_REF, NULL, for_cow); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6067 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6068 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 6069 | num_bytes, |
| 6070 | parent, root_objectid, owner, |
| 6071 | offset, BTRFS_DROP_DELAYED_REF, |
| 6072 | NULL, for_cow); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6073 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6074 | return ret; |
| 6075 | } |
| 6076 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6077 | static u64 stripe_align(struct btrfs_root *root, |
| 6078 | struct btrfs_block_group_cache *cache, |
| 6079 | u64 val, u64 num_bytes) |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 6080 | { |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 6081 | u64 ret = ALIGN(val, root->stripesize); |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 6082 | return ret; |
| 6083 | } |
| 6084 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6085 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6086 | * when we wait for progress in the block group caching, its because |
| 6087 | * our allocation attempt failed at least once. So, we must sleep |
| 6088 | * and let some progress happen before we try again. |
| 6089 | * |
| 6090 | * This function will sleep at least once waiting for new free space to |
| 6091 | * show up, and then it will check the block group free space numbers |
| 6092 | * for our min num_bytes. Another option is to have it go ahead |
| 6093 | * and look in the rbtree for a free extent of a given size, but this |
| 6094 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6095 | * |
| 6096 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 6097 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6098 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6099 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6100 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 6101 | u64 num_bytes) |
| 6102 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6103 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6104 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6105 | caching_ctl = get_caching_control(cache); |
| 6106 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6107 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6108 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6109 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 6110 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6111 | |
| 6112 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6113 | } |
| 6114 | |
| 6115 | static noinline int |
| 6116 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 6117 | { |
| 6118 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6119 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6120 | |
| 6121 | caching_ctl = get_caching_control(cache); |
| 6122 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6123 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6124 | |
| 6125 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6126 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 6127 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6128 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6129 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6130 | } |
| 6131 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6132 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6133 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6134 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6135 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6136 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6137 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6138 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6139 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6140 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6141 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6142 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6143 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6144 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6145 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6146 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6147 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6148 | } |
| 6149 | |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6150 | static int get_block_group_index(struct btrfs_block_group_cache *cache) |
| 6151 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6152 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6153 | } |
| 6154 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6155 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6156 | LOOP_CACHING_NOWAIT = 0, |
| 6157 | LOOP_CACHING_WAIT = 1, |
| 6158 | LOOP_ALLOC_CHUNK = 2, |
| 6159 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6160 | }; |
| 6161 | |
| 6162 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6163 | * walks the btree of allocated extents and find a hole of a given size. |
| 6164 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6165 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 6166 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6167 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6168 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6169 | * |
| 6170 | * If there is no suitable free space, we will record the max size of |
| 6171 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6172 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6173 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6174 | u64 num_bytes, u64 empty_size, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6175 | u64 hint_byte, struct btrfs_key *ins, |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6176 | u64 flags) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6177 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6178 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6179 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6180 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6181 | struct btrfs_block_group_cache *block_group = NULL; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6182 | struct btrfs_block_group_cache *used_block_group; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 6183 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6184 | u64 max_extent_size = 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6185 | int empty_cluster = 2 * 1024 * 1024; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6186 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6187 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6188 | int index = __get_raid_index(flags); |
| 6189 | int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ? |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6190 | RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6191 | bool found_uncached_bg = false; |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6192 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6193 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6194 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6195 | bool have_caching_bg = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6196 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6197 | WARN_ON(num_bytes < root->sectorsize); |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6198 | btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6199 | ins->objectid = 0; |
| 6200 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6201 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6202 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6203 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6204 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6205 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6206 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6207 | return -ENOSPC; |
| 6208 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6209 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6210 | /* |
| 6211 | * If the space info is for both data and metadata it means we have a |
| 6212 | * small filesystem and we can't use the clustering stuff. |
| 6213 | */ |
| 6214 | if (btrfs_mixed_space_info(space_info)) |
| 6215 | use_cluster = false; |
| 6216 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6217 | if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6218 | last_ptr = &root->fs_info->meta_alloc_cluster; |
Chris Mason | 536ac8a | 2009-02-12 09:41:38 -0500 | [diff] [blame] | 6219 | if (!btrfs_test_opt(root, SSD)) |
| 6220 | empty_cluster = 64 * 1024; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6221 | } |
| 6222 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6223 | if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster && |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6224 | btrfs_test_opt(root, SSD)) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6225 | last_ptr = &root->fs_info->data_alloc_cluster; |
| 6226 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6227 | |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6228 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6229 | spin_lock(&last_ptr->lock); |
| 6230 | if (last_ptr->block_group) |
| 6231 | hint_byte = last_ptr->window_start; |
| 6232 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6233 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6234 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6235 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6236 | search_start = max(search_start, hint_byte); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6237 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6238 | if (!last_ptr) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6239 | empty_cluster = 0; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6240 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6241 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6242 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 6243 | search_start); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6244 | used_block_group = block_group; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6245 | /* |
| 6246 | * we don't want to use the block group if it doesn't match our |
| 6247 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6248 | * |
| 6249 | * However if we are re-searching with an ideal block group |
| 6250 | * 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] | 6251 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6252 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6253 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6254 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6255 | if (list_empty(&block_group->list) || |
| 6256 | block_group->ro) { |
| 6257 | /* |
| 6258 | * someone is removing this block group, |
| 6259 | * we can't jump into the have_block_group |
| 6260 | * target because our list pointers are not |
| 6261 | * valid |
| 6262 | */ |
| 6263 | btrfs_put_block_group(block_group); |
| 6264 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6265 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6266 | index = get_block_group_index(block_group); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6267 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6268 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6269 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6270 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6271 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6272 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6273 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6274 | have_caching_bg = false; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6275 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6276 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 6277 | list) { |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6278 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6279 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 6280 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6281 | used_block_group = block_group; |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 6282 | btrfs_get_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6283 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6284 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6285 | /* |
| 6286 | * this can happen if we end up cycling through all the |
| 6287 | * raid types, but we want to make sure we only allocate |
| 6288 | * for the proper type. |
| 6289 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6290 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6291 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 6292 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6293 | BTRFS_BLOCK_GROUP_RAID5 | |
| 6294 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6295 | BTRFS_BLOCK_GROUP_RAID10; |
| 6296 | |
| 6297 | /* |
| 6298 | * if they asked for extra copies and this block group |
| 6299 | * doesn't provide them, bail. This does allow us to |
| 6300 | * fill raid0 from raid1. |
| 6301 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6302 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6303 | goto loop; |
| 6304 | } |
| 6305 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6306 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6307 | cached = block_group_cache_done(block_group); |
| 6308 | if (unlikely(!cached)) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6309 | found_uncached_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6310 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 6311 | BUG_ON(ret < 0); |
| 6312 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6313 | } |
| 6314 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6315 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 6316 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6317 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6318 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6319 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6320 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6321 | * Ok we want to try and use the cluster allocator, so |
| 6322 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6323 | */ |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6324 | if (last_ptr) { |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6325 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6326 | /* |
| 6327 | * the refill lock keeps out other |
| 6328 | * people trying to start a new cluster |
| 6329 | */ |
| 6330 | spin_lock(&last_ptr->refill_lock); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6331 | used_block_group = last_ptr->block_group; |
| 6332 | if (used_block_group != block_group && |
| 6333 | (!used_block_group || |
| 6334 | used_block_group->ro || |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6335 | !block_group_bits(used_block_group, flags))) { |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6336 | used_block_group = block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6337 | goto refill_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6338 | } |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6339 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6340 | if (used_block_group != block_group) |
| 6341 | btrfs_get_block_group(used_block_group); |
| 6342 | |
| 6343 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6344 | last_ptr, |
| 6345 | num_bytes, |
| 6346 | used_block_group->key.objectid, |
| 6347 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6348 | if (offset) { |
| 6349 | /* we have a block, we're done */ |
| 6350 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6351 | trace_btrfs_reserve_extent_cluster(root, |
| 6352 | block_group, search_start, num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6353 | goto checks; |
| 6354 | } |
| 6355 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6356 | WARN_ON(last_ptr->block_group != used_block_group); |
| 6357 | if (used_block_group != block_group) { |
| 6358 | btrfs_put_block_group(used_block_group); |
| 6359 | used_block_group = block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6360 | } |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6361 | refill_cluster: |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6362 | BUG_ON(used_block_group != block_group); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6363 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 6364 | * set up a new clusters, so lets just skip it |
| 6365 | * and let the allocator find whatever block |
| 6366 | * it can find. If we reach this point, we |
| 6367 | * will have tried the cluster allocator |
| 6368 | * plenty of times and not have found |
| 6369 | * anything, so we are likely way too |
| 6370 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6371 | * anything. |
| 6372 | * |
| 6373 | * However, if the cluster is taken from the |
| 6374 | * current block group, release the cluster |
| 6375 | * first, so that we stand a better chance of |
| 6376 | * succeeding in the unclustered |
| 6377 | * allocation. */ |
| 6378 | if (loop >= LOOP_NO_EMPTY_SIZE && |
| 6379 | last_ptr->block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6380 | spin_unlock(&last_ptr->refill_lock); |
| 6381 | goto unclustered_alloc; |
| 6382 | } |
| 6383 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6384 | /* |
| 6385 | * this cluster didn't work out, free it and |
| 6386 | * start over |
| 6387 | */ |
| 6388 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 6389 | |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6390 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 6391 | spin_unlock(&last_ptr->refill_lock); |
| 6392 | goto unclustered_alloc; |
| 6393 | } |
| 6394 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6395 | aligned_cluster = max_t(unsigned long, |
| 6396 | empty_cluster + empty_size, |
| 6397 | block_group->full_stripe_len); |
| 6398 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6399 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6400 | ret = btrfs_find_space_cluster(root, block_group, |
| 6401 | last_ptr, search_start, |
| 6402 | num_bytes, |
| 6403 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6404 | if (ret == 0) { |
| 6405 | /* |
| 6406 | * now pull our allocation out of this |
| 6407 | * cluster |
| 6408 | */ |
| 6409 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6410 | last_ptr, |
| 6411 | num_bytes, |
| 6412 | search_start, |
| 6413 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6414 | if (offset) { |
| 6415 | /* we found one, proceed */ |
| 6416 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6417 | trace_btrfs_reserve_extent_cluster(root, |
| 6418 | block_group, search_start, |
| 6419 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6420 | goto checks; |
| 6421 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6422 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 6423 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6424 | spin_unlock(&last_ptr->refill_lock); |
| 6425 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6426 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6427 | wait_block_group_cache_progress(block_group, |
| 6428 | num_bytes + empty_cluster + empty_size); |
| 6429 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6430 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6431 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6432 | /* |
| 6433 | * at this point we either didn't find a cluster |
| 6434 | * or we weren't able to allocate a block from our |
| 6435 | * cluster. Free the cluster we've been trying |
| 6436 | * to use, and go to the next block group |
| 6437 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6438 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6439 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6440 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6441 | } |
| 6442 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6443 | unclustered_alloc: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6444 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 6445 | if (cached && |
| 6446 | block_group->free_space_ctl->free_space < |
| 6447 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6448 | if (block_group->free_space_ctl->free_space > |
| 6449 | max_extent_size) |
| 6450 | max_extent_size = |
| 6451 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6452 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6453 | goto loop; |
| 6454 | } |
| 6455 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6456 | |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6457 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6458 | num_bytes, empty_size, |
| 6459 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6460 | /* |
| 6461 | * If we didn't find a chunk, and we haven't failed on this |
| 6462 | * block group before, and this block group is in the middle of |
| 6463 | * caching and we are ok with waiting, then go ahead and wait |
| 6464 | * for progress to be made, and set failed_alloc to true. |
| 6465 | * |
| 6466 | * If failed_alloc is true then we've already waited on this |
| 6467 | * block group once and should move on to the next block group. |
| 6468 | */ |
| 6469 | if (!offset && !failed_alloc && !cached && |
| 6470 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6471 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6472 | num_bytes + empty_size); |
| 6473 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6474 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6475 | } else if (!offset) { |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6476 | if (!cached) |
| 6477 | have_caching_bg = true; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6478 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6479 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6480 | checks: |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6481 | search_start = stripe_align(root, used_block_group, |
| 6482 | offset, num_bytes); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 6483 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6484 | /* move on to the next group */ |
| 6485 | if (search_start + num_bytes > |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6486 | used_block_group->key.objectid + used_block_group->key.offset) { |
| 6487 | btrfs_add_free_space(used_block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6488 | goto loop; |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6489 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6490 | |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6491 | if (offset < search_start) |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6492 | btrfs_add_free_space(used_block_group, offset, |
Josef Bacik | 6226cb0a | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6493 | search_start - offset); |
| 6494 | BUG_ON(offset > search_start); |
| 6495 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6496 | ret = btrfs_update_reserved_bytes(used_block_group, num_bytes, |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6497 | alloc_type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6498 | if (ret == -EAGAIN) { |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6499 | btrfs_add_free_space(used_block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6500 | goto loop; |
| 6501 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6502 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6503 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6504 | ins->objectid = search_start; |
| 6505 | ins->offset = num_bytes; |
| 6506 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6507 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 6508 | search_start, num_bytes); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6509 | if (used_block_group != block_group) |
| 6510 | btrfs_put_block_group(used_block_group); |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6511 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6512 | break; |
| 6513 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6514 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6515 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6516 | BUG_ON(index != get_block_group_index(block_group)); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6517 | if (used_block_group != block_group) |
| 6518 | btrfs_put_block_group(used_block_group); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6519 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6520 | } |
| 6521 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 6522 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6523 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 6524 | goto search; |
| 6525 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6526 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 6527 | goto search; |
| 6528 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6529 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6530 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 6531 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6532 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 6533 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 6534 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 6535 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6536 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6537 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6538 | index = 0; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6539 | loop++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6540 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6541 | struct btrfs_trans_handle *trans; |
| 6542 | |
| 6543 | trans = btrfs_join_transaction(root); |
| 6544 | if (IS_ERR(trans)) { |
| 6545 | ret = PTR_ERR(trans); |
| 6546 | goto out; |
| 6547 | } |
| 6548 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6549 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6550 | CHUNK_ALLOC_FORCE); |
| 6551 | /* |
| 6552 | * Do not bail out on ENOSPC since we |
| 6553 | * can do more things. |
| 6554 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6555 | if (ret < 0 && ret != -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6556 | btrfs_abort_transaction(trans, |
| 6557 | root, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6558 | else |
| 6559 | ret = 0; |
| 6560 | btrfs_end_transaction(trans, root); |
| 6561 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6562 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6563 | } |
| 6564 | |
| 6565 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6566 | empty_size = 0; |
| 6567 | empty_cluster = 0; |
| 6568 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6569 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6570 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6571 | } else if (!ins->objectid) { |
| 6572 | ret = -ENOSPC; |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6573 | } else if (ins->objectid) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6574 | ret = 0; |
| 6575 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6576 | out: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6577 | if (ret == -ENOSPC) |
| 6578 | ins->offset = max_extent_size; |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 6579 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6580 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 6581 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6582 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 6583 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6584 | { |
| 6585 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6586 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6587 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6588 | spin_lock(&info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6589 | printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6590 | info->flags, |
| 6591 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 6592 | info->bytes_reserved - info->bytes_readonly, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6593 | (info->full) ? "" : "not "); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6594 | printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, " |
| 6595 | "reserved=%llu, may_use=%llu, readonly=%llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6596 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 6597 | info->bytes_reserved, info->bytes_may_use, |
| 6598 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6599 | spin_unlock(&info->lock); |
| 6600 | |
| 6601 | if (!dump_block_groups) |
| 6602 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6603 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6604 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6605 | again: |
| 6606 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6607 | spin_lock(&cache->lock); |
Liu Bo | 799ffc3 | 2012-07-06 03:31:35 -0600 | [diff] [blame] | 6608 | 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] | 6609 | cache->key.objectid, cache->key.offset, |
| 6610 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 6611 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6612 | btrfs_dump_free_space(cache, bytes); |
| 6613 | spin_unlock(&cache->lock); |
| 6614 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6615 | if (++index < BTRFS_NR_RAID_TYPES) |
| 6616 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6617 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6618 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6619 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6620 | int btrfs_reserve_extent(struct btrfs_root *root, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6621 | u64 num_bytes, u64 min_alloc_size, |
| 6622 | u64 empty_size, u64 hint_byte, |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6623 | struct btrfs_key *ins, int is_data) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6624 | { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6625 | bool final_tried = false; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6626 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6627 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6628 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6629 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 6630 | again: |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6631 | WARN_ON(num_bytes < root->sectorsize); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6632 | ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins, |
| 6633 | flags); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6634 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6635 | if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6636 | if (!final_tried && ins->offset) { |
| 6637 | num_bytes = min(num_bytes >> 1, ins->offset); |
Zach Brown | 24542bf | 2012-11-16 00:04:43 +0000 | [diff] [blame] | 6638 | num_bytes = round_down(num_bytes, root->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6639 | num_bytes = max(num_bytes, min_alloc_size); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6640 | if (num_bytes == min_alloc_size) |
| 6641 | final_tried = true; |
| 6642 | goto again; |
| 6643 | } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 6644 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6645 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6646 | sinfo = __find_space_info(root->fs_info, flags); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6647 | btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6648 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 6649 | if (sinfo) |
| 6650 | dump_space_info(sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6651 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6652 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6653 | |
| 6654 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6655 | } |
| 6656 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6657 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
| 6658 | u64 start, u64 len, int pin) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6659 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6660 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6661 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6662 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6663 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 6664 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6665 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6666 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6667 | return -ENOSPC; |
| 6668 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6669 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6670 | if (btrfs_test_opt(root, DISCARD)) |
| 6671 | ret = btrfs_discard_extent(root, start, len, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6672 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6673 | if (pin) |
| 6674 | pin_down_extent(root, cache, start, len, 1); |
| 6675 | else { |
| 6676 | btrfs_add_free_space(cache, start, len); |
| 6677 | btrfs_update_reserved_bytes(cache, len, RESERVE_FREE); |
| 6678 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6679 | btrfs_put_block_group(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6680 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 6681 | trace_btrfs_reserved_extent_free(root, start, len); |
| 6682 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6683 | return ret; |
| 6684 | } |
| 6685 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6686 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
| 6687 | u64 start, u64 len) |
| 6688 | { |
| 6689 | return __btrfs_free_reserved_extent(root, start, len, 0); |
| 6690 | } |
| 6691 | |
| 6692 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 6693 | u64 start, u64 len) |
| 6694 | { |
| 6695 | return __btrfs_free_reserved_extent(root, start, len, 1); |
| 6696 | } |
| 6697 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6698 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 6699 | struct btrfs_root *root, |
| 6700 | u64 parent, u64 root_objectid, |
| 6701 | u64 flags, u64 owner, u64 offset, |
| 6702 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6703 | { |
| 6704 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6705 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6706 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6707 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6708 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6709 | struct extent_buffer *leaf; |
| 6710 | int type; |
| 6711 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 6712 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6713 | if (parent > 0) |
| 6714 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 6715 | else |
| 6716 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6717 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6718 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6719 | |
| 6720 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 6721 | if (!path) |
| 6722 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6723 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6724 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6725 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 6726 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6727 | if (ret) { |
| 6728 | btrfs_free_path(path); |
| 6729 | return ret; |
| 6730 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6731 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6732 | leaf = path->nodes[0]; |
| 6733 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6734 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6735 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 6736 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 6737 | btrfs_set_extent_flags(leaf, extent_item, |
| 6738 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6739 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6740 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 6741 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 6742 | if (parent > 0) { |
| 6743 | struct btrfs_shared_data_ref *ref; |
| 6744 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 6745 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 6746 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 6747 | } else { |
| 6748 | struct btrfs_extent_data_ref *ref; |
| 6749 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 6750 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 6751 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 6752 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 6753 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 6754 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 6755 | |
| 6756 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6757 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 6758 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 6759 | ret = update_block_group(root, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6760 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6761 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6762 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 6763 | BUG(); |
| 6764 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6765 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6766 | return ret; |
| 6767 | } |
| 6768 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6769 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 6770 | struct btrfs_root *root, |
| 6771 | u64 parent, u64 root_objectid, |
| 6772 | u64 flags, struct btrfs_disk_key *key, |
| 6773 | int level, struct btrfs_key *ins) |
| 6774 | { |
| 6775 | int ret; |
| 6776 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6777 | struct btrfs_extent_item *extent_item; |
| 6778 | struct btrfs_tree_block_info *block_info; |
| 6779 | struct btrfs_extent_inline_ref *iref; |
| 6780 | struct btrfs_path *path; |
| 6781 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6782 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
| 6783 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 6784 | SKINNY_METADATA); |
| 6785 | |
| 6786 | if (!skinny_metadata) |
| 6787 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6788 | |
| 6789 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 6790 | if (!path) { |
| 6791 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
| 6792 | root->leafsize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 6793 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 6794 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6795 | |
| 6796 | path->leave_spinning = 1; |
| 6797 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 6798 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6799 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 6800 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
| 6801 | root->leafsize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6802 | btrfs_free_path(path); |
| 6803 | return ret; |
| 6804 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6805 | |
| 6806 | leaf = path->nodes[0]; |
| 6807 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 6808 | struct btrfs_extent_item); |
| 6809 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 6810 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 6811 | btrfs_set_extent_flags(leaf, extent_item, |
| 6812 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6813 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6814 | if (skinny_metadata) { |
| 6815 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 6816 | } else { |
| 6817 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 6818 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 6819 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 6820 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 6821 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6822 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6823 | if (parent > 0) { |
| 6824 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 6825 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 6826 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 6827 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 6828 | } else { |
| 6829 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 6830 | BTRFS_TREE_BLOCK_REF_KEY); |
| 6831 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 6832 | } |
| 6833 | |
| 6834 | btrfs_mark_buffer_dirty(leaf); |
| 6835 | btrfs_free_path(path); |
| 6836 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6837 | ret = update_block_group(root, ins->objectid, root->leafsize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6838 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6839 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6840 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6841 | BUG(); |
| 6842 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6843 | |
| 6844 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6845 | return ret; |
| 6846 | } |
| 6847 | |
| 6848 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 6849 | struct btrfs_root *root, |
| 6850 | u64 root_objectid, u64 owner, |
| 6851 | u64 offset, struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6852 | { |
| 6853 | int ret; |
Chris Mason | 1c2308f | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 6854 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6855 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6856 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6857 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 6858 | ins->offset, 0, |
| 6859 | root_objectid, owner, offset, |
| 6860 | BTRFS_ADD_DELAYED_EXTENT, NULL, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6861 | return ret; |
| 6862 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6863 | |
| 6864 | /* |
| 6865 | * this is used by the tree logging recovery code. It records that |
| 6866 | * an extent has been allocated and makes sure to clear the free |
| 6867 | * space cache bits as well |
| 6868 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6869 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 6870 | struct btrfs_root *root, |
| 6871 | u64 root_objectid, u64 owner, u64 offset, |
| 6872 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6873 | { |
| 6874 | int ret; |
| 6875 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6876 | |
| 6877 | /* |
| 6878 | * Mixed block groups will exclude before processing the log so we only |
| 6879 | * need to do the exlude dance if this fs isn't mixed. |
| 6880 | */ |
| 6881 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 6882 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 6883 | if (ret) |
| 6884 | return ret; |
| 6885 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6886 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6887 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6888 | if (!block_group) |
| 6889 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6890 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6891 | ret = btrfs_update_reserved_bytes(block_group, ins->offset, |
| 6892 | RESERVE_ALLOC_NO_ACCOUNT); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6893 | BUG_ON(ret); /* logic error */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6894 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 6895 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6896 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6897 | return ret; |
| 6898 | } |
| 6899 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 6900 | static struct extent_buffer * |
| 6901 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6902 | u64 bytenr, u32 blocksize, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6903 | { |
| 6904 | struct extent_buffer *buf; |
| 6905 | |
| 6906 | buf = btrfs_find_create_tree_block(root, bytenr, blocksize); |
| 6907 | if (!buf) |
| 6908 | return ERR_PTR(-ENOMEM); |
| 6909 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 6910 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6911 | btrfs_tree_lock(buf); |
| 6912 | clean_tree_block(trans, root, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 6913 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 6914 | |
| 6915 | btrfs_set_lock_blocking(buf); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6916 | btrfs_set_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 6917 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 6918 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 6919 | /* |
| 6920 | * we allow two log transactions at a time, use different |
| 6921 | * EXENT bit to differentiate dirty pages. |
| 6922 | */ |
| 6923 | if (root->log_transid % 2 == 0) |
| 6924 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 6925 | buf->start + buf->len - 1, GFP_NOFS); |
| 6926 | else |
| 6927 | set_extent_new(&root->dirty_log_pages, buf->start, |
| 6928 | buf->start + buf->len - 1, GFP_NOFS); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 6929 | } else { |
| 6930 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 6931 | buf->start + buf->len - 1, GFP_NOFS); |
| 6932 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6933 | trans->blocks_used++; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 6934 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6935 | return buf; |
| 6936 | } |
| 6937 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6938 | static struct btrfs_block_rsv * |
| 6939 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 6940 | struct btrfs_root *root, u32 blocksize) |
| 6941 | { |
| 6942 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 6943 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6944 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 6945 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6946 | |
| 6947 | block_rsv = get_block_rsv(trans, root); |
| 6948 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6949 | if (unlikely(block_rsv->size == 0)) |
| 6950 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 6951 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6952 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 6953 | if (!ret) |
| 6954 | return block_rsv; |
| 6955 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6956 | if (block_rsv->failfast) |
| 6957 | return ERR_PTR(ret); |
| 6958 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 6959 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 6960 | global_updated = true; |
| 6961 | update_global_block_rsv(root->fs_info); |
| 6962 | goto again; |
| 6963 | } |
| 6964 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6965 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 6966 | static DEFINE_RATELIMIT_STATE(_rs, |
| 6967 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 6968 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 6969 | if (__ratelimit(&_rs)) |
| 6970 | WARN(1, KERN_DEBUG |
| 6971 | "btrfs: block rsv returned %d\n", ret); |
| 6972 | } |
| 6973 | try_reserve: |
| 6974 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 6975 | BTRFS_RESERVE_NO_FLUSH); |
| 6976 | if (!ret) |
| 6977 | return block_rsv; |
| 6978 | /* |
| 6979 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 6980 | * the global reserve if its space type is the same as the global |
| 6981 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6982 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 6983 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 6984 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 6985 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 6986 | if (!ret) |
| 6987 | return global_rsv; |
| 6988 | } |
| 6989 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6990 | } |
| 6991 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6992 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 6993 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6994 | { |
| 6995 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6996 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6997 | } |
| 6998 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6999 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7000 | * finds a free extent and does all the dirty work required for allocation |
| 7001 | * returns the key for the extent through ins, and a tree buffer for |
| 7002 | * the first block of the extent through buf. |
| 7003 | * |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7004 | * returns the tree buffer or NULL. |
| 7005 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7006 | struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7007 | struct btrfs_root *root, u32 blocksize, |
| 7008 | u64 parent, u64 root_objectid, |
| 7009 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7010 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7011 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 7012 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7013 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7014 | struct extent_buffer *buf; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7015 | u64 flags = 0; |
| 7016 | int ret; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7017 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7018 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7019 | |
| 7020 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 7021 | if (IS_ERR(block_rsv)) |
| 7022 | return ERR_CAST(block_rsv); |
| 7023 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7024 | ret = btrfs_reserve_extent(root, blocksize, blocksize, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7025 | empty_size, hint, &ins, 0); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7026 | if (ret) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7027 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7028 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7029 | } |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 7030 | |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 7031 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, |
| 7032 | blocksize, level); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7033 | BUG_ON(IS_ERR(buf)); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7034 | |
| 7035 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 7036 | if (parent == 0) |
| 7037 | parent = ins.objectid; |
| 7038 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7039 | } else |
| 7040 | BUG_ON(parent > 0); |
| 7041 | |
| 7042 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 7043 | struct btrfs_delayed_extent_op *extent_op; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7044 | extent_op = btrfs_alloc_delayed_extent_op(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7045 | BUG_ON(!extent_op); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7046 | if (key) |
| 7047 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 7048 | else |
| 7049 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 7050 | extent_op->flags_to_set = flags; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7051 | if (skinny_metadata) |
| 7052 | extent_op->update_key = 0; |
| 7053 | else |
| 7054 | extent_op->update_key = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7055 | extent_op->update_flags = 1; |
| 7056 | extent_op->is_data = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7057 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7058 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7059 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 7060 | ins.objectid, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7061 | ins.offset, parent, root_objectid, |
| 7062 | level, BTRFS_ADD_DELAYED_EXTENT, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7063 | extent_op, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7064 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7065 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7066 | return buf; |
| 7067 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7068 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7069 | struct walk_control { |
| 7070 | u64 refs[BTRFS_MAX_LEVEL]; |
| 7071 | u64 flags[BTRFS_MAX_LEVEL]; |
| 7072 | struct btrfs_key update_progress; |
| 7073 | int stage; |
| 7074 | int level; |
| 7075 | int shared_level; |
| 7076 | int update_ref; |
| 7077 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7078 | int reada_slot; |
| 7079 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7080 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7081 | }; |
| 7082 | |
| 7083 | #define DROP_REFERENCE 1 |
| 7084 | #define UPDATE_BACKREF 2 |
| 7085 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7086 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 7087 | struct btrfs_root *root, |
| 7088 | struct walk_control *wc, |
| 7089 | struct btrfs_path *path) |
| 7090 | { |
| 7091 | u64 bytenr; |
| 7092 | u64 generation; |
| 7093 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7094 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7095 | u32 nritems; |
| 7096 | u32 blocksize; |
| 7097 | struct btrfs_key key; |
| 7098 | struct extent_buffer *eb; |
| 7099 | int ret; |
| 7100 | int slot; |
| 7101 | int nread = 0; |
| 7102 | |
| 7103 | if (path->slots[wc->level] < wc->reada_slot) { |
| 7104 | wc->reada_count = wc->reada_count * 2 / 3; |
| 7105 | wc->reada_count = max(wc->reada_count, 2); |
| 7106 | } else { |
| 7107 | wc->reada_count = wc->reada_count * 3 / 2; |
| 7108 | wc->reada_count = min_t(int, wc->reada_count, |
| 7109 | BTRFS_NODEPTRS_PER_BLOCK(root)); |
| 7110 | } |
| 7111 | |
| 7112 | eb = path->nodes[wc->level]; |
| 7113 | nritems = btrfs_header_nritems(eb); |
| 7114 | blocksize = btrfs_level_size(root, wc->level - 1); |
| 7115 | |
| 7116 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 7117 | if (nread >= wc->reada_count) |
| 7118 | break; |
| 7119 | |
| 7120 | cond_resched(); |
| 7121 | bytenr = btrfs_node_blockptr(eb, slot); |
| 7122 | generation = btrfs_node_ptr_generation(eb, slot); |
| 7123 | |
| 7124 | if (slot == path->slots[wc->level]) |
| 7125 | goto reada; |
| 7126 | |
| 7127 | if (wc->stage == UPDATE_BACKREF && |
| 7128 | generation <= root->root_key.offset) |
| 7129 | continue; |
| 7130 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7131 | /* 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] | 7132 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 7133 | wc->level - 1, 1, &refs, |
| 7134 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7135 | /* We don't care about errors in readahead. */ |
| 7136 | if (ret < 0) |
| 7137 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7138 | BUG_ON(refs == 0); |
| 7139 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7140 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7141 | if (refs == 1) |
| 7142 | goto reada; |
| 7143 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7144 | if (wc->level == 1 && |
| 7145 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7146 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7147 | if (!wc->update_ref || |
| 7148 | generation <= root->root_key.offset) |
| 7149 | continue; |
| 7150 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 7151 | ret = btrfs_comp_cpu_keys(&key, |
| 7152 | &wc->update_progress); |
| 7153 | if (ret < 0) |
| 7154 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7155 | } else { |
| 7156 | if (wc->level == 1 && |
| 7157 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7158 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7159 | } |
| 7160 | reada: |
| 7161 | ret = readahead_tree_block(root, bytenr, blocksize, |
| 7162 | generation); |
| 7163 | if (ret) |
| 7164 | break; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7165 | nread++; |
| 7166 | } |
| 7167 | wc->reada_slot = slot; |
| 7168 | } |
| 7169 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7170 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7171 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7172 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7173 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 7174 | * back refs for pointers in the block. |
| 7175 | * |
| 7176 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7177 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7178 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 7179 | struct btrfs_root *root, |
| 7180 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7181 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7182 | { |
| 7183 | int level = wc->level; |
| 7184 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7185 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7186 | int ret; |
| 7187 | |
| 7188 | if (wc->stage == UPDATE_BACKREF && |
| 7189 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 7190 | return 1; |
| 7191 | |
| 7192 | /* |
| 7193 | * when reference count of tree block is 1, it won't increase |
| 7194 | * again. once full backref flag is set, we never clear it. |
| 7195 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7196 | if (lookup_info && |
| 7197 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 7198 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7199 | BUG_ON(!path->locks[level]); |
| 7200 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7201 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7202 | &wc->refs[level], |
| 7203 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7204 | BUG_ON(ret == -ENOMEM); |
| 7205 | if (ret) |
| 7206 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7207 | BUG_ON(wc->refs[level] == 0); |
| 7208 | } |
| 7209 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7210 | if (wc->stage == DROP_REFERENCE) { |
| 7211 | if (wc->refs[level] > 1) |
| 7212 | return 1; |
| 7213 | |
| 7214 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7215 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7216 | path->locks[level] = 0; |
| 7217 | } |
| 7218 | return 0; |
| 7219 | } |
| 7220 | |
| 7221 | /* wc->stage == UPDATE_BACKREF */ |
| 7222 | if (!(wc->flags[level] & flag)) { |
| 7223 | BUG_ON(!path->locks[level]); |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7224 | ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7225 | BUG_ON(ret); /* -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7226 | ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7227 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7228 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7229 | eb->len, flag, |
| 7230 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7231 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7232 | wc->flags[level] |= flag; |
| 7233 | } |
| 7234 | |
| 7235 | /* |
| 7236 | * the block is shared by multiple trees, so it's not good to |
| 7237 | * keep the tree lock |
| 7238 | */ |
| 7239 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7240 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7241 | path->locks[level] = 0; |
| 7242 | } |
| 7243 | return 0; |
| 7244 | } |
| 7245 | |
| 7246 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7247 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7248 | * |
| 7249 | * when wc->stage == DROP_REFERENCE, this function checks |
| 7250 | * reference count of the block pointed to. if the block |
| 7251 | * is shared and we need update back refs for the subtree |
| 7252 | * rooted at the block, this function changes wc->stage to |
| 7253 | * UPDATE_BACKREF. if the block is shared and there is no |
| 7254 | * need to update back, this function drops the reference |
| 7255 | * to the block. |
| 7256 | * |
| 7257 | * NOTE: return value 1 means we should stop walking down. |
| 7258 | */ |
| 7259 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 7260 | struct btrfs_root *root, |
| 7261 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7262 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7263 | { |
| 7264 | u64 bytenr; |
| 7265 | u64 generation; |
| 7266 | u64 parent; |
| 7267 | u32 blocksize; |
| 7268 | struct btrfs_key key; |
| 7269 | struct extent_buffer *next; |
| 7270 | int level = wc->level; |
| 7271 | int reada = 0; |
| 7272 | int ret = 0; |
| 7273 | |
| 7274 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 7275 | path->slots[level]); |
| 7276 | /* |
| 7277 | * if the lower level block was created before the snapshot |
| 7278 | * was created, we know there is no need to update back refs |
| 7279 | * for the subtree |
| 7280 | */ |
| 7281 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7282 | generation <= root->root_key.offset) { |
| 7283 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7284 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7285 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7286 | |
| 7287 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
| 7288 | blocksize = btrfs_level_size(root, level - 1); |
| 7289 | |
| 7290 | next = btrfs_find_tree_block(root, bytenr, blocksize); |
| 7291 | if (!next) { |
| 7292 | next = btrfs_find_create_tree_block(root, bytenr, blocksize); |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 7293 | if (!next) |
| 7294 | return -ENOMEM; |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 7295 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 7296 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7297 | reada = 1; |
| 7298 | } |
| 7299 | btrfs_tree_lock(next); |
| 7300 | btrfs_set_lock_blocking(next); |
| 7301 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7302 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7303 | &wc->refs[level - 1], |
| 7304 | &wc->flags[level - 1]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7305 | if (ret < 0) { |
| 7306 | btrfs_tree_unlock(next); |
| 7307 | return ret; |
| 7308 | } |
| 7309 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7310 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 7311 | btrfs_err(root->fs_info, "Missing references."); |
| 7312 | BUG(); |
| 7313 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7314 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7315 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7316 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7317 | if (wc->refs[level - 1] > 1) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7318 | if (level == 1 && |
| 7319 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7320 | goto skip; |
| 7321 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7322 | if (!wc->update_ref || |
| 7323 | generation <= root->root_key.offset) |
| 7324 | goto skip; |
| 7325 | |
| 7326 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 7327 | path->slots[level]); |
| 7328 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 7329 | if (ret < 0) |
| 7330 | goto skip; |
| 7331 | |
| 7332 | wc->stage = UPDATE_BACKREF; |
| 7333 | wc->shared_level = level - 1; |
| 7334 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7335 | } else { |
| 7336 | if (level == 1 && |
| 7337 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7338 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7339 | } |
| 7340 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 7341 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7342 | btrfs_tree_unlock(next); |
| 7343 | free_extent_buffer(next); |
| 7344 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7345 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7346 | } |
| 7347 | |
| 7348 | if (!next) { |
| 7349 | if (reada && level == 1) |
| 7350 | reada_walk_down(trans, root, wc, path); |
| 7351 | next = read_tree_block(root, bytenr, blocksize, generation); |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7352 | if (!next || !extent_buffer_uptodate(next)) { |
| 7353 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 7354 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7355 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7356 | btrfs_tree_lock(next); |
| 7357 | btrfs_set_lock_blocking(next); |
| 7358 | } |
| 7359 | |
| 7360 | level--; |
| 7361 | BUG_ON(level != btrfs_header_level(next)); |
| 7362 | path->nodes[level] = next; |
| 7363 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7364 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7365 | wc->level = level; |
| 7366 | if (wc->level == 1) |
| 7367 | wc->reada_slot = 0; |
| 7368 | return 0; |
| 7369 | skip: |
| 7370 | wc->refs[level - 1] = 0; |
| 7371 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7372 | if (wc->stage == DROP_REFERENCE) { |
| 7373 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 7374 | parent = path->nodes[level]->start; |
| 7375 | } else { |
| 7376 | BUG_ON(root->root_key.objectid != |
| 7377 | btrfs_header_owner(path->nodes[level])); |
| 7378 | parent = 0; |
| 7379 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7380 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7381 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7382 | root->root_key.objectid, level - 1, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7383 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7384 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7385 | btrfs_tree_unlock(next); |
| 7386 | free_extent_buffer(next); |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7387 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7388 | return 1; |
| 7389 | } |
| 7390 | |
| 7391 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7392 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7393 | * |
| 7394 | * when wc->stage == DROP_REFERENCE, this function drops |
| 7395 | * reference count on the block. |
| 7396 | * |
| 7397 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 7398 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 7399 | * to UPDATE_BACKREF previously while processing the block. |
| 7400 | * |
| 7401 | * NOTE: return value 1 means we should stop walking up. |
| 7402 | */ |
| 7403 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 7404 | struct btrfs_root *root, |
| 7405 | struct btrfs_path *path, |
| 7406 | struct walk_control *wc) |
| 7407 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7408 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7409 | int level = wc->level; |
| 7410 | struct extent_buffer *eb = path->nodes[level]; |
| 7411 | u64 parent = 0; |
| 7412 | |
| 7413 | if (wc->stage == UPDATE_BACKREF) { |
| 7414 | BUG_ON(wc->shared_level < level); |
| 7415 | if (level < wc->shared_level) |
| 7416 | goto out; |
| 7417 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7418 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 7419 | if (ret > 0) |
| 7420 | wc->update_ref = 0; |
| 7421 | |
| 7422 | wc->stage = DROP_REFERENCE; |
| 7423 | wc->shared_level = -1; |
| 7424 | path->slots[level] = 0; |
| 7425 | |
| 7426 | /* |
| 7427 | * check reference count again if the block isn't locked. |
| 7428 | * we should start walking down the tree again if reference |
| 7429 | * count is one. |
| 7430 | */ |
| 7431 | if (!path->locks[level]) { |
| 7432 | BUG_ON(level == 0); |
| 7433 | btrfs_tree_lock(eb); |
| 7434 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7435 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7436 | |
| 7437 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7438 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7439 | &wc->refs[level], |
| 7440 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7441 | if (ret < 0) { |
| 7442 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7443 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7444 | return ret; |
| 7445 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7446 | BUG_ON(wc->refs[level] == 0); |
| 7447 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7448 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7449 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7450 | return 1; |
| 7451 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7452 | } |
| 7453 | } |
| 7454 | |
| 7455 | /* wc->stage == DROP_REFERENCE */ |
| 7456 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 7457 | |
| 7458 | if (wc->refs[level] == 1) { |
| 7459 | if (level == 0) { |
| 7460 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7461 | ret = btrfs_dec_ref(trans, root, eb, 1, |
| 7462 | wc->for_reloc); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7463 | else |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7464 | ret = btrfs_dec_ref(trans, root, eb, 0, |
| 7465 | wc->for_reloc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7466 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7467 | } |
| 7468 | /* make block locked assertion in clean_tree_block happy */ |
| 7469 | if (!path->locks[level] && |
| 7470 | btrfs_header_generation(eb) == trans->transid) { |
| 7471 | btrfs_tree_lock(eb); |
| 7472 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7473 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7474 | } |
| 7475 | clean_tree_block(trans, root, eb); |
| 7476 | } |
| 7477 | |
| 7478 | if (eb == root->node) { |
| 7479 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 7480 | parent = eb->start; |
| 7481 | else |
| 7482 | BUG_ON(root->root_key.objectid != |
| 7483 | btrfs_header_owner(eb)); |
| 7484 | } else { |
| 7485 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 7486 | parent = path->nodes[level + 1]->start; |
| 7487 | else |
| 7488 | BUG_ON(root->root_key.objectid != |
| 7489 | btrfs_header_owner(path->nodes[level + 1])); |
| 7490 | } |
| 7491 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7492 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7493 | out: |
| 7494 | wc->refs[level] = 0; |
| 7495 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7496 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7497 | } |
| 7498 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7499 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 7500 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7501 | struct btrfs_path *path, |
| 7502 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7503 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7504 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7505 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7506 | int ret; |
| 7507 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7508 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7509 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7510 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7511 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7512 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7513 | if (level == 0) |
| 7514 | break; |
| 7515 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 7516 | if (path->slots[level] >= |
| 7517 | btrfs_header_nritems(path->nodes[level])) |
| 7518 | break; |
| 7519 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7520 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7521 | if (ret > 0) { |
| 7522 | path->slots[level]++; |
| 7523 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 7524 | } else if (ret < 0) |
| 7525 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7526 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7527 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7528 | return 0; |
| 7529 | } |
| 7530 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7531 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 7532 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7533 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7534 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7535 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7536 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7537 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7538 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7539 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 7540 | while (level < max_level && path->nodes[level]) { |
| 7541 | wc->level = level; |
| 7542 | if (path->slots[level] + 1 < |
| 7543 | btrfs_header_nritems(path->nodes[level])) { |
| 7544 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7545 | return 0; |
| 7546 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7547 | ret = walk_up_proc(trans, root, path, wc); |
| 7548 | if (ret > 0) |
| 7549 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 7550 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7551 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7552 | btrfs_tree_unlock_rw(path->nodes[level], |
| 7553 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7554 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7555 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7556 | free_extent_buffer(path->nodes[level]); |
| 7557 | path->nodes[level] = NULL; |
| 7558 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7559 | } |
| 7560 | } |
| 7561 | return 1; |
| 7562 | } |
| 7563 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7564 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7565 | * drop a subvolume tree. |
| 7566 | * |
| 7567 | * this function traverses the tree freeing any blocks that only |
| 7568 | * referenced by the tree. |
| 7569 | * |
| 7570 | * when a shared tree block is found. this function decreases its |
| 7571 | * reference count by one. if update_ref is true, this function |
| 7572 | * also make sure backrefs for the shared block and all lower level |
| 7573 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 7574 | * |
| 7575 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7576 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 7577 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7578 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 7579 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7580 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7581 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7582 | struct btrfs_trans_handle *trans; |
| 7583 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7584 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7585 | struct walk_control *wc; |
| 7586 | struct btrfs_key key; |
| 7587 | int err = 0; |
| 7588 | int ret; |
| 7589 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7590 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7591 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7592 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7593 | if (!path) { |
| 7594 | err = -ENOMEM; |
| 7595 | goto out; |
| 7596 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7597 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7598 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 7599 | if (!wc) { |
| 7600 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7601 | err = -ENOMEM; |
| 7602 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 7603 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7604 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7605 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7606 | if (IS_ERR(trans)) { |
| 7607 | err = PTR_ERR(trans); |
| 7608 | goto out_free; |
| 7609 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 7610 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7611 | if (block_rsv) |
| 7612 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7613 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7614 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7615 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7616 | path->nodes[level] = btrfs_lock_root_node(root); |
| 7617 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7618 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7619 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7620 | memset(&wc->update_progress, 0, |
| 7621 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7622 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7623 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7624 | memcpy(&wc->update_progress, &key, |
| 7625 | sizeof(wc->update_progress)); |
| 7626 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 7627 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7628 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 7629 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7630 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 7631 | path->lowest_level = 0; |
| 7632 | if (ret < 0) { |
| 7633 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7634 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 7635 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7636 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7637 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 7638 | /* |
| 7639 | * unlock our path, this is safe because only this |
| 7640 | * function is allowed to delete this snapshot |
| 7641 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7642 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7643 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7644 | level = btrfs_header_level(root->node); |
| 7645 | while (1) { |
| 7646 | btrfs_tree_lock(path->nodes[level]); |
| 7647 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 7648 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7649 | |
| 7650 | ret = btrfs_lookup_extent_info(trans, root, |
| 7651 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7652 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7653 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7654 | if (ret < 0) { |
| 7655 | err = ret; |
| 7656 | goto out_end_trans; |
| 7657 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7658 | BUG_ON(wc->refs[level] == 0); |
| 7659 | |
| 7660 | if (level == root_item->drop_level) |
| 7661 | break; |
| 7662 | |
| 7663 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 7664 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7665 | WARN_ON(wc->refs[level] != 1); |
| 7666 | level--; |
| 7667 | } |
| 7668 | } |
| 7669 | |
| 7670 | wc->level = level; |
| 7671 | wc->shared_level = -1; |
| 7672 | wc->stage = DROP_REFERENCE; |
| 7673 | wc->update_ref = update_ref; |
| 7674 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7675 | wc->for_reloc = for_reloc; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7676 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7677 | |
| 7678 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 7679 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7680 | ret = walk_down_tree(trans, root, path, wc); |
| 7681 | if (ret < 0) { |
| 7682 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 7683 | break; |
| 7684 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7685 | |
| 7686 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 7687 | if (ret < 0) { |
| 7688 | err = ret; |
| 7689 | break; |
| 7690 | } |
| 7691 | |
| 7692 | if (ret > 0) { |
| 7693 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 7694 | break; |
| 7695 | } |
| 7696 | |
| 7697 | if (wc->stage == DROP_REFERENCE) { |
| 7698 | level = wc->level; |
| 7699 | btrfs_node_key(path->nodes[level], |
| 7700 | &root_item->drop_progress, |
| 7701 | path->slots[level]); |
| 7702 | root_item->drop_level = level; |
| 7703 | } |
| 7704 | |
| 7705 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 7706 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 7707 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7708 | ret = btrfs_update_root(trans, tree_root, |
| 7709 | &root->root_key, |
| 7710 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7711 | if (ret) { |
| 7712 | btrfs_abort_transaction(trans, tree_root, ret); |
| 7713 | err = ret; |
| 7714 | goto out_end_trans; |
| 7715 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7716 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7717 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 7718 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
| 7719 | pr_debug("btrfs: drop snapshot early exit\n"); |
| 7720 | err = -EAGAIN; |
| 7721 | goto out_free; |
| 7722 | } |
| 7723 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7724 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7725 | if (IS_ERR(trans)) { |
| 7726 | err = PTR_ERR(trans); |
| 7727 | goto out_free; |
| 7728 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7729 | if (block_rsv) |
| 7730 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7731 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7732 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7733 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7734 | if (err) |
| 7735 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7736 | |
| 7737 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7738 | if (ret) { |
| 7739 | btrfs_abort_transaction(trans, tree_root, ret); |
| 7740 | goto out_end_trans; |
| 7741 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7742 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7743 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7744 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 7745 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7746 | if (ret < 0) { |
| 7747 | btrfs_abort_transaction(trans, tree_root, ret); |
| 7748 | err = ret; |
| 7749 | goto out_end_trans; |
| 7750 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 7751 | /* if we fail to delete the orphan item this time |
| 7752 | * around, it'll get picked up the next time. |
| 7753 | * |
| 7754 | * The most common failure here is just -ENOENT. |
| 7755 | */ |
| 7756 | btrfs_del_orphan_item(trans, tree_root, |
| 7757 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7758 | } |
| 7759 | } |
| 7760 | |
| 7761 | if (root->in_radix) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 7762 | btrfs_drop_and_free_fs_root(tree_root->fs_info, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7763 | } else { |
| 7764 | free_extent_buffer(root->node); |
| 7765 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 7766 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7767 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7768 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7769 | out_end_trans: |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7770 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7771 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7772 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7773 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7774 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7775 | /* |
| 7776 | * So if we need to stop dropping the snapshot for whatever reason we |
| 7777 | * need to make sure to add it back to the dead root list so that we |
| 7778 | * keep trying to do the work later. This also cleans up roots if we |
| 7779 | * don't have it in the radix (like when we recover after a power fail |
| 7780 | * or unmount) so we don't leak memory. |
| 7781 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 7782 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 7783 | btrfs_add_dead_root(root); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 7784 | if (err) |
| 7785 | btrfs_std_error(root->fs_info, err); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 7786 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 7787 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 7788 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7789 | /* |
| 7790 | * drop subtree rooted at tree block 'node'. |
| 7791 | * |
| 7792 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7793 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7794 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7795 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 7796 | struct btrfs_root *root, |
| 7797 | struct extent_buffer *node, |
| 7798 | struct extent_buffer *parent) |
| 7799 | { |
| 7800 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7801 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7802 | int level; |
| 7803 | int parent_level; |
| 7804 | int ret = 0; |
| 7805 | int wret; |
| 7806 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7807 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 7808 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7809 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 7810 | if (!path) |
| 7811 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7812 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7813 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 7814 | if (!wc) { |
| 7815 | btrfs_free_path(path); |
| 7816 | return -ENOMEM; |
| 7817 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7818 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 7819 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7820 | parent_level = btrfs_header_level(parent); |
| 7821 | extent_buffer_get(parent); |
| 7822 | path->nodes[parent_level] = parent; |
| 7823 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 7824 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 7825 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7826 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7827 | path->nodes[level] = node; |
| 7828 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7829 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7830 | |
| 7831 | wc->refs[parent_level] = 1; |
| 7832 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7833 | wc->level = level; |
| 7834 | wc->shared_level = -1; |
| 7835 | wc->stage = DROP_REFERENCE; |
| 7836 | wc->update_ref = 0; |
| 7837 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7838 | wc->for_reloc = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7839 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7840 | |
| 7841 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7842 | wret = walk_down_tree(trans, root, path, wc); |
| 7843 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7844 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7845 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7846 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7847 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7848 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7849 | if (wret < 0) |
| 7850 | ret = wret; |
| 7851 | if (wret != 0) |
| 7852 | break; |
| 7853 | } |
| 7854 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7855 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7856 | btrfs_free_path(path); |
| 7857 | return ret; |
| 7858 | } |
| 7859 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7860 | static u64 update_block_group_flags(struct btrfs_root *root, u64 flags) |
| 7861 | { |
| 7862 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7863 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7864 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7865 | /* |
| 7866 | * if restripe for this chunk_type is on pick target profile and |
| 7867 | * return, otherwise do the usual balance |
| 7868 | */ |
| 7869 | stripped = get_restripe_target(root->fs_info, flags); |
| 7870 | if (stripped) |
| 7871 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 7872 | |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 7873 | /* |
| 7874 | * we add in the count of missing devices because we want |
| 7875 | * to make sure that any RAID levels on a degraded FS |
| 7876 | * continue to be honored. |
| 7877 | */ |
| 7878 | num_devices = root->fs_info->fs_devices->rw_devices + |
| 7879 | root->fs_info->fs_devices->missing_devices; |
| 7880 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7881 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7882 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7883 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 7884 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7885 | if (num_devices == 1) { |
| 7886 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 7887 | stripped = flags & ~stripped; |
| 7888 | |
| 7889 | /* turn raid0 into single device chunks */ |
| 7890 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 7891 | return stripped; |
| 7892 | |
| 7893 | /* turn mirroring into duplication */ |
| 7894 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 7895 | BTRFS_BLOCK_GROUP_RAID10)) |
| 7896 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7897 | } else { |
| 7898 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7899 | if (flags & stripped) |
| 7900 | return flags; |
| 7901 | |
| 7902 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 7903 | stripped = flags & ~stripped; |
| 7904 | |
| 7905 | /* switch duplicated blocks with raid1 */ |
| 7906 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 7907 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 7908 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 7909 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7910 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 7911 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7912 | return flags; |
| 7913 | } |
| 7914 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7915 | 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] | 7916 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7917 | struct btrfs_space_info *sinfo = cache->space_info; |
| 7918 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7919 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7920 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 7921 | |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 7922 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7923 | /* |
| 7924 | * We need some metadata space and system metadata space for |
| 7925 | * allocating chunks in some corner cases until we force to set |
| 7926 | * it to be readonly. |
| 7927 | */ |
| 7928 | if ((sinfo->flags & |
| 7929 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 7930 | !force) |
| 7931 | min_allocable_bytes = 1 * 1024 * 1024; |
| 7932 | else |
| 7933 | min_allocable_bytes = 0; |
| 7934 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7935 | spin_lock(&sinfo->lock); |
| 7936 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 7937 | |
| 7938 | if (cache->ro) { |
| 7939 | ret = 0; |
| 7940 | goto out; |
| 7941 | } |
| 7942 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7943 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 7944 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 7945 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7946 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7947 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 7948 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7949 | sinfo->bytes_readonly += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7950 | cache->ro = 1; |
| 7951 | ret = 0; |
| 7952 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 7953 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7954 | spin_unlock(&cache->lock); |
| 7955 | spin_unlock(&sinfo->lock); |
| 7956 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 7957 | } |
| 7958 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7959 | int btrfs_set_block_group_ro(struct btrfs_root *root, |
| 7960 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7961 | |
| 7962 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7963 | struct btrfs_trans_handle *trans; |
| 7964 | u64 alloc_flags; |
| 7965 | int ret; |
| 7966 | |
| 7967 | BUG_ON(cache->ro); |
| 7968 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 7969 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7970 | if (IS_ERR(trans)) |
| 7971 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7972 | |
| 7973 | alloc_flags = update_block_group_flags(root, cache->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7974 | if (alloc_flags != cache->flags) { |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 7975 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7976 | CHUNK_ALLOC_FORCE); |
| 7977 | if (ret < 0) |
| 7978 | goto out; |
| 7979 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7980 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7981 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7982 | if (!ret) |
| 7983 | goto out; |
| 7984 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 7985 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 7986 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7987 | if (ret < 0) |
| 7988 | goto out; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 7989 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7990 | out: |
| 7991 | btrfs_end_transaction(trans, root); |
| 7992 | return ret; |
| 7993 | } |
| 7994 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 7995 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 7996 | struct btrfs_root *root, u64 type) |
| 7997 | { |
| 7998 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 7999 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8000 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8001 | } |
| 8002 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8003 | /* |
| 8004 | * helper to account the unused space of all the readonly block group in the |
| 8005 | * list. takes mirrors into account. |
| 8006 | */ |
| 8007 | static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list) |
| 8008 | { |
| 8009 | struct btrfs_block_group_cache *block_group; |
| 8010 | u64 free_bytes = 0; |
| 8011 | int factor; |
| 8012 | |
| 8013 | list_for_each_entry(block_group, groups_list, list) { |
| 8014 | spin_lock(&block_group->lock); |
| 8015 | |
| 8016 | if (!block_group->ro) { |
| 8017 | spin_unlock(&block_group->lock); |
| 8018 | continue; |
| 8019 | } |
| 8020 | |
| 8021 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8022 | BTRFS_BLOCK_GROUP_RAID10 | |
| 8023 | BTRFS_BLOCK_GROUP_DUP)) |
| 8024 | factor = 2; |
| 8025 | else |
| 8026 | factor = 1; |
| 8027 | |
| 8028 | free_bytes += (block_group->key.offset - |
| 8029 | btrfs_block_group_used(&block_group->item)) * |
| 8030 | factor; |
| 8031 | |
| 8032 | spin_unlock(&block_group->lock); |
| 8033 | } |
| 8034 | |
| 8035 | return free_bytes; |
| 8036 | } |
| 8037 | |
| 8038 | /* |
| 8039 | * helper to account the unused space of all the readonly block group in the |
| 8040 | * space_info. takes mirrors into account. |
| 8041 | */ |
| 8042 | u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo) |
| 8043 | { |
| 8044 | int i; |
| 8045 | u64 free_bytes = 0; |
| 8046 | |
| 8047 | spin_lock(&sinfo->lock); |
| 8048 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8049 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8050 | if (!list_empty(&sinfo->block_groups[i])) |
| 8051 | free_bytes += __btrfs_get_ro_block_group_free_space( |
| 8052 | &sinfo->block_groups[i]); |
| 8053 | |
| 8054 | spin_unlock(&sinfo->lock); |
| 8055 | |
| 8056 | return free_bytes; |
| 8057 | } |
| 8058 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 8059 | void btrfs_set_block_group_rw(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8060 | struct btrfs_block_group_cache *cache) |
| 8061 | { |
| 8062 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8063 | u64 num_bytes; |
| 8064 | |
| 8065 | BUG_ON(!cache->ro); |
| 8066 | |
| 8067 | spin_lock(&sinfo->lock); |
| 8068 | spin_lock(&cache->lock); |
| 8069 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8070 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
| 8071 | sinfo->bytes_readonly -= num_bytes; |
| 8072 | cache->ro = 0; |
| 8073 | spin_unlock(&cache->lock); |
| 8074 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8075 | } |
| 8076 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8077 | /* |
| 8078 | * checks to see if its even possible to relocate this block group. |
| 8079 | * |
| 8080 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 8081 | * ok to go ahead and try. |
| 8082 | */ |
| 8083 | int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8084 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8085 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8086 | struct btrfs_space_info *space_info; |
| 8087 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 8088 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8089 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8090 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8091 | u64 dev_min = 1; |
| 8092 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8093 | u64 target; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8094 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8095 | int full = 0; |
| 8096 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8097 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8098 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8099 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8100 | /* odd, couldn't find the block group, leave it alone */ |
| 8101 | if (!block_group) |
| 8102 | return -1; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8103 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8104 | min_free = btrfs_block_group_used(&block_group->item); |
| 8105 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8106 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8107 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8108 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8109 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8110 | space_info = block_group->space_info; |
| 8111 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8112 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8113 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8114 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8115 | /* |
| 8116 | * 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] | 8117 | * relocate it unless we're able to allocate a new chunk below. |
| 8118 | * |
| 8119 | * Otherwise, we need to make sure we have room in the space to handle |
| 8120 | * 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] | 8121 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 8122 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8123 | (space_info->bytes_used + space_info->bytes_reserved + |
| 8124 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 8125 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8126 | spin_unlock(&space_info->lock); |
| 8127 | goto out; |
| 8128 | } |
| 8129 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8130 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8131 | /* |
| 8132 | * ok we don't have enough space, but maybe we have free space on our |
| 8133 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8134 | * alloc devices and guess if we have enough space. if this block |
| 8135 | * group is going to be restriped, run checks against the target |
| 8136 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8137 | */ |
| 8138 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 8139 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8140 | /* |
| 8141 | * index: |
| 8142 | * 0: raid10 |
| 8143 | * 1: raid1 |
| 8144 | * 2: dup |
| 8145 | * 3: raid0 |
| 8146 | * 4: single |
| 8147 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8148 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 8149 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 8150 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8151 | } else { |
| 8152 | /* |
| 8153 | * this is just a balance, so if we were marked as full |
| 8154 | * we know there is no space for a new chunk |
| 8155 | */ |
| 8156 | if (full) |
| 8157 | goto out; |
| 8158 | |
| 8159 | index = get_block_group_index(block_group); |
| 8160 | } |
| 8161 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8162 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8163 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8164 | /* Divide by 2 */ |
| 8165 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8166 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8167 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8168 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8169 | /* Multiply by 2 */ |
| 8170 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8171 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8172 | dev_min = fs_devices->rw_devices; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8173 | do_div(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8174 | } |
| 8175 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8176 | /* We need to do this so that we can look at pending chunks */ |
| 8177 | trans = btrfs_join_transaction(root); |
| 8178 | if (IS_ERR(trans)) { |
| 8179 | ret = PTR_ERR(trans); |
| 8180 | goto out; |
| 8181 | } |
| 8182 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8183 | mutex_lock(&root->fs_info->chunk_mutex); |
| 8184 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8185 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8186 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8187 | /* |
| 8188 | * check to make sure we can actually find a chunk with enough |
| 8189 | * space to fit our block group in. |
| 8190 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 8191 | if (device->total_bytes > device->bytes_used + min_free && |
| 8192 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8193 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8194 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8195 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8196 | dev_nr++; |
| 8197 | |
| 8198 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8199 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8200 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8201 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8202 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8203 | } |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8204 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8205 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8206 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8207 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8208 | return ret; |
| 8209 | } |
| 8210 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 8211 | static int find_first_block_group(struct btrfs_root *root, |
| 8212 | struct btrfs_path *path, struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8213 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8214 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8215 | struct btrfs_key found_key; |
| 8216 | struct extent_buffer *leaf; |
| 8217 | int slot; |
| 8218 | |
| 8219 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 8220 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8221 | goto out; |
| 8222 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8223 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8224 | slot = path->slots[0]; |
| 8225 | leaf = path->nodes[0]; |
| 8226 | if (slot >= btrfs_header_nritems(leaf)) { |
| 8227 | ret = btrfs_next_leaf(root, path); |
| 8228 | if (ret == 0) |
| 8229 | continue; |
| 8230 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8231 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8232 | break; |
| 8233 | } |
| 8234 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 8235 | |
| 8236 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8237 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
| 8238 | ret = 0; |
| 8239 | goto out; |
| 8240 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8241 | path->slots[0]++; |
| 8242 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8243 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8244 | return ret; |
| 8245 | } |
| 8246 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8247 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 8248 | { |
| 8249 | struct btrfs_block_group_cache *block_group; |
| 8250 | u64 last = 0; |
| 8251 | |
| 8252 | while (1) { |
| 8253 | struct inode *inode; |
| 8254 | |
| 8255 | block_group = btrfs_lookup_first_block_group(info, last); |
| 8256 | while (block_group) { |
| 8257 | spin_lock(&block_group->lock); |
| 8258 | if (block_group->iref) |
| 8259 | break; |
| 8260 | spin_unlock(&block_group->lock); |
| 8261 | block_group = next_block_group(info->tree_root, |
| 8262 | block_group); |
| 8263 | } |
| 8264 | if (!block_group) { |
| 8265 | if (last == 0) |
| 8266 | break; |
| 8267 | last = 0; |
| 8268 | continue; |
| 8269 | } |
| 8270 | |
| 8271 | inode = block_group->inode; |
| 8272 | block_group->iref = 0; |
| 8273 | block_group->inode = NULL; |
| 8274 | spin_unlock(&block_group->lock); |
| 8275 | iput(inode); |
| 8276 | last = block_group->key.objectid + block_group->key.offset; |
| 8277 | btrfs_put_block_group(block_group); |
| 8278 | } |
| 8279 | } |
| 8280 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8281 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 8282 | { |
| 8283 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8284 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8285 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8286 | struct rb_node *n; |
| 8287 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8288 | down_write(&info->extent_commit_sem); |
| 8289 | while (!list_empty(&info->caching_block_groups)) { |
| 8290 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 8291 | struct btrfs_caching_control, list); |
| 8292 | list_del(&caching_ctl->list); |
| 8293 | put_caching_control(caching_ctl); |
| 8294 | } |
| 8295 | up_write(&info->extent_commit_sem); |
| 8296 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8297 | spin_lock(&info->block_group_cache_lock); |
| 8298 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 8299 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 8300 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8301 | rb_erase(&block_group->cache_node, |
| 8302 | &info->block_group_cache_tree); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8303 | spin_unlock(&info->block_group_cache_lock); |
| 8304 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8305 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8306 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8307 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8308 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8309 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8310 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8311 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8312 | /* |
| 8313 | * We haven't cached this block group, which means we could |
| 8314 | * possibly have excluded extents on this block group. |
| 8315 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 8316 | if (block_group->cached == BTRFS_CACHE_NO || |
| 8317 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8318 | free_excluded_extents(info->extent_root, block_group); |
| 8319 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8320 | btrfs_remove_free_space_cache(block_group); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 8321 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8322 | |
| 8323 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8324 | } |
| 8325 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8326 | |
| 8327 | /* now that all the block groups are freed, go through and |
| 8328 | * free all the space_info structs. This is only called during |
| 8329 | * the final stages of unmount, and so we know nobody is |
| 8330 | * using them. We call synchronize_rcu() once before we start, |
| 8331 | * just to be on the safe side. |
| 8332 | */ |
| 8333 | synchronize_rcu(); |
| 8334 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 8335 | release_global_block_rsv(info); |
| 8336 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8337 | while (!list_empty(&info->space_info)) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8338 | space_info = list_entry(info->space_info.next, |
| 8339 | struct btrfs_space_info, |
| 8340 | list); |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8341 | if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) { |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8342 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8343 | space_info->bytes_reserved > 0 || |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8344 | space_info->bytes_may_use > 0)) { |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8345 | dump_space_info(space_info, 0, 0); |
| 8346 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8347 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 8348 | percpu_counter_destroy(&space_info->total_bytes_pinned); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8349 | list_del(&space_info->list); |
| 8350 | kfree(space_info); |
| 8351 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8352 | return 0; |
| 8353 | } |
| 8354 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8355 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 8356 | struct btrfs_block_group_cache *cache) |
| 8357 | { |
| 8358 | int index = get_block_group_index(cache); |
| 8359 | |
| 8360 | down_write(&space_info->groups_sem); |
| 8361 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 8362 | up_write(&space_info->groups_sem); |
| 8363 | } |
| 8364 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8365 | int btrfs_read_block_groups(struct btrfs_root *root) |
| 8366 | { |
| 8367 | struct btrfs_path *path; |
| 8368 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8369 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 8370 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8371 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8372 | struct btrfs_key key; |
| 8373 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8374 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8375 | int need_clear = 0; |
| 8376 | u64 cache_gen; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 8377 | |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 8378 | root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8379 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8380 | key.offset = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8381 | btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8382 | path = btrfs_alloc_path(); |
| 8383 | if (!path) |
| 8384 | return -ENOMEM; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 8385 | path->reada = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8386 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 8387 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 8388 | if (btrfs_test_opt(root, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 8389 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8390 | need_clear = 1; |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 8391 | if (btrfs_test_opt(root, CLEAR_CACHE)) |
| 8392 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8393 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8394 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8395 | ret = find_first_block_group(root, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8396 | if (ret > 0) |
| 8397 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8398 | if (ret != 0) |
| 8399 | goto error; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8400 | leaf = path->nodes[0]; |
| 8401 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 8402 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8403 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8404 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8405 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8406 | } |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8407 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 8408 | GFP_NOFS); |
| 8409 | if (!cache->free_space_ctl) { |
| 8410 | kfree(cache); |
| 8411 | ret = -ENOMEM; |
| 8412 | goto error; |
| 8413 | } |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 8414 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8415 | atomic_set(&cache->count, 1); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8416 | spin_lock_init(&cache->lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8417 | cache->fs_info = info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8418 | INIT_LIST_HEAD(&cache->list); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8419 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8420 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 8421 | if (need_clear) { |
| 8422 | /* |
| 8423 | * When we mount with old space cache, we need to |
| 8424 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 8425 | * |
| 8426 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 8427 | * truncate the old free space cache inode and |
| 8428 | * setup a new one. |
| 8429 | * b) Setting 'dirty flag' makes sure that we flush |
| 8430 | * the new space cache info onto disk. |
| 8431 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8432 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 8433 | if (btrfs_test_opt(root, SPACE_CACHE)) |
| 8434 | cache->dirty = 1; |
| 8435 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8436 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8437 | read_extent_buffer(leaf, &cache->item, |
| 8438 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 8439 | sizeof(cache->item)); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8440 | memcpy(&cache->key, &found_key, sizeof(found_key)); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8441 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8442 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8443 | btrfs_release_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8444 | cache->flags = btrfs_block_group_flags(&cache->item); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8445 | cache->sectorsize = root->sectorsize; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8446 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 8447 | &root->fs_info->mapping_tree, |
| 8448 | found_key.objectid); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8449 | btrfs_init_free_space_ctl(cache); |
| 8450 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8451 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8452 | * We need to exclude the super stripes now so that the space |
| 8453 | * info has super bytes accounted for, otherwise we'll think |
| 8454 | * we have more space than we actually do. |
| 8455 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 8456 | ret = exclude_super_stripes(root, cache); |
| 8457 | if (ret) { |
| 8458 | /* |
| 8459 | * We may have excluded something, so call this just in |
| 8460 | * case. |
| 8461 | */ |
| 8462 | free_excluded_extents(root, cache); |
| 8463 | kfree(cache->free_space_ctl); |
| 8464 | kfree(cache); |
| 8465 | goto error; |
| 8466 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8467 | |
| 8468 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8469 | * check for two cases, either we are full, and therefore |
| 8470 | * don't need to bother with the caching work since we won't |
| 8471 | * find any space, or we are empty, and we can just add all |
| 8472 | * the space in and be done with it. This saves us _alot_ of |
| 8473 | * time, particularly in the full case. |
| 8474 | */ |
| 8475 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8476 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8477 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8478 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8479 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8480 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8481 | cache->cached = BTRFS_CACHE_FINISHED; |
| 8482 | add_new_free_space(cache, root->fs_info, |
| 8483 | found_key.objectid, |
| 8484 | found_key.objectid + |
| 8485 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8486 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8487 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 8488 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8489 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 8490 | if (ret) { |
| 8491 | btrfs_remove_free_space_cache(cache); |
| 8492 | btrfs_put_block_group(cache); |
| 8493 | goto error; |
| 8494 | } |
| 8495 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8496 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 8497 | btrfs_block_group_used(&cache->item), |
| 8498 | &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8499 | if (ret) { |
| 8500 | btrfs_remove_free_space_cache(cache); |
| 8501 | spin_lock(&info->block_group_cache_lock); |
| 8502 | rb_erase(&cache->cache_node, |
| 8503 | &info->block_group_cache_tree); |
| 8504 | spin_unlock(&info->block_group_cache_lock); |
| 8505 | btrfs_put_block_group(cache); |
| 8506 | goto error; |
| 8507 | } |
| 8508 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8509 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8510 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8511 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8512 | spin_unlock(&cache->space_info->lock); |
| 8513 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8514 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8515 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 8516 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 8517 | if (btrfs_chunk_readonly(root, cache->key.objectid)) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8518 | set_block_group_ro(cache, 1); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8519 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8520 | |
| 8521 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 8522 | if (!(get_alloc_profile(root, space_info->flags) & |
| 8523 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 8524 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8525 | BTRFS_BLOCK_GROUP_RAID5 | |
| 8526 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8527 | BTRFS_BLOCK_GROUP_DUP))) |
| 8528 | continue; |
| 8529 | /* |
| 8530 | * avoid allocating from un-mirrored block group if there are |
| 8531 | * mirrored block groups. |
| 8532 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 8533 | list_for_each_entry(cache, |
| 8534 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 8535 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8536 | set_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 8537 | list_for_each_entry(cache, |
| 8538 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 8539 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8540 | set_block_group_ro(cache, 1); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8541 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8542 | |
| 8543 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8544 | ret = 0; |
| 8545 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8546 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8547 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8548 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8549 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8550 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
| 8551 | struct btrfs_root *root) |
| 8552 | { |
| 8553 | struct btrfs_block_group_cache *block_group, *tmp; |
| 8554 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 8555 | struct btrfs_block_group_item item; |
| 8556 | struct btrfs_key key; |
| 8557 | int ret = 0; |
| 8558 | |
| 8559 | list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, |
| 8560 | new_bg_list) { |
| 8561 | list_del_init(&block_group->new_bg_list); |
| 8562 | |
| 8563 | if (ret) |
| 8564 | continue; |
| 8565 | |
| 8566 | spin_lock(&block_group->lock); |
| 8567 | memcpy(&item, &block_group->item, sizeof(item)); |
| 8568 | memcpy(&key, &block_group->key, sizeof(key)); |
| 8569 | spin_unlock(&block_group->lock); |
| 8570 | |
| 8571 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 8572 | sizeof(item)); |
| 8573 | if (ret) |
| 8574 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8575 | ret = btrfs_finish_chunk_alloc(trans, extent_root, |
| 8576 | key.objectid, key.offset); |
| 8577 | if (ret) |
| 8578 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8579 | } |
| 8580 | } |
| 8581 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8582 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
| 8583 | struct btrfs_root *root, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 8584 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8585 | u64 size) |
| 8586 | { |
| 8587 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8588 | struct btrfs_root *extent_root; |
| 8589 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8590 | |
| 8591 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8592 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 8593 | root->fs_info->last_trans_log_full_commit = trans->transid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8594 | |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 8595 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8596 | if (!cache) |
| 8597 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8598 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 8599 | GFP_NOFS); |
| 8600 | if (!cache->free_space_ctl) { |
| 8601 | kfree(cache); |
| 8602 | return -ENOMEM; |
| 8603 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8604 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 8605 | cache->key.objectid = chunk_offset; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8606 | cache->key.offset = size; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8607 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8608 | cache->sectorsize = root->sectorsize; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8609 | cache->fs_info = root->fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8610 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 8611 | &root->fs_info->mapping_tree, |
| 8612 | chunk_offset); |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8613 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8614 | atomic_set(&cache->count, 1); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8615 | spin_lock_init(&cache->lock); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8616 | INIT_LIST_HEAD(&cache->list); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8617 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8618 | INIT_LIST_HEAD(&cache->new_bg_list); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8619 | |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 8620 | btrfs_init_free_space_ctl(cache); |
| 8621 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8622 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8623 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
| 8624 | cache->flags = type; |
| 8625 | btrfs_set_block_group_flags(&cache->item, type); |
| 8626 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8627 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8628 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 8629 | ret = exclude_super_stripes(root, cache); |
| 8630 | if (ret) { |
| 8631 | /* |
| 8632 | * We may have excluded something, so call this just in |
| 8633 | * case. |
| 8634 | */ |
| 8635 | free_excluded_extents(root, cache); |
| 8636 | kfree(cache->free_space_ctl); |
| 8637 | kfree(cache); |
| 8638 | return ret; |
| 8639 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8640 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8641 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 8642 | chunk_offset + size); |
| 8643 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8644 | free_excluded_extents(root, cache); |
| 8645 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8646 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 8647 | if (ret) { |
| 8648 | btrfs_remove_free_space_cache(cache); |
| 8649 | btrfs_put_block_group(cache); |
| 8650 | return ret; |
| 8651 | } |
| 8652 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8653 | ret = update_space_info(root->fs_info, cache->flags, size, bytes_used, |
| 8654 | &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 8655 | if (ret) { |
| 8656 | btrfs_remove_free_space_cache(cache); |
| 8657 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 8658 | rb_erase(&cache->cache_node, |
| 8659 | &root->fs_info->block_group_cache_tree); |
| 8660 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 8661 | btrfs_put_block_group(cache); |
| 8662 | return ret; |
| 8663 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 8664 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8665 | |
| 8666 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8667 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 8668 | spin_unlock(&cache->space_info->lock); |
| 8669 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8670 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8671 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 8672 | list_add_tail(&cache->new_bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8673 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 8674 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8675 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 8676 | return 0; |
| 8677 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8678 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8679 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 8680 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8681 | u64 extra_flags = chunk_to_extended(flags) & |
| 8682 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8683 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 8684 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8685 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 8686 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 8687 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 8688 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 8689 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 8690 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 8691 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8692 | } |
| 8693 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8694 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
| 8695 | struct btrfs_root *root, u64 group_start) |
| 8696 | { |
| 8697 | struct btrfs_path *path; |
| 8698 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 8699 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8700 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8701 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8702 | struct inode *inode; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8703 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8704 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 8705 | int factor; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8706 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8707 | root = root->fs_info->extent_root; |
| 8708 | |
| 8709 | block_group = btrfs_lookup_block_group(root->fs_info, group_start); |
| 8710 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8711 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8712 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 8713 | /* |
| 8714 | * Free the reserved super bytes from this block group before |
| 8715 | * remove it. |
| 8716 | */ |
| 8717 | free_excluded_extents(root, block_group); |
| 8718 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8719 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8720 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 8721 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 8722 | BTRFS_BLOCK_GROUP_RAID1 | |
| 8723 | BTRFS_BLOCK_GROUP_RAID10)) |
| 8724 | factor = 2; |
| 8725 | else |
| 8726 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8727 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 8728 | /* make sure this block group isn't part of an allocation cluster */ |
| 8729 | cluster = &root->fs_info->data_alloc_cluster; |
| 8730 | spin_lock(&cluster->refill_lock); |
| 8731 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 8732 | spin_unlock(&cluster->refill_lock); |
| 8733 | |
| 8734 | /* |
| 8735 | * make sure this block group isn't part of a metadata |
| 8736 | * allocation cluster |
| 8737 | */ |
| 8738 | cluster = &root->fs_info->meta_alloc_cluster; |
| 8739 | spin_lock(&cluster->refill_lock); |
| 8740 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 8741 | spin_unlock(&cluster->refill_lock); |
| 8742 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8743 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8744 | if (!path) { |
| 8745 | ret = -ENOMEM; |
| 8746 | goto out; |
| 8747 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8748 | |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 8749 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8750 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 8751 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8752 | if (ret) { |
| 8753 | btrfs_add_delayed_iput(inode); |
| 8754 | goto out; |
| 8755 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8756 | clear_nlink(inode); |
| 8757 | /* One for the block groups ref */ |
| 8758 | spin_lock(&block_group->lock); |
| 8759 | if (block_group->iref) { |
| 8760 | block_group->iref = 0; |
| 8761 | block_group->inode = NULL; |
| 8762 | spin_unlock(&block_group->lock); |
| 8763 | iput(inode); |
| 8764 | } else { |
| 8765 | spin_unlock(&block_group->lock); |
| 8766 | } |
| 8767 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 8768 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8769 | } |
| 8770 | |
| 8771 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 8772 | key.offset = block_group->key.objectid; |
| 8773 | key.type = 0; |
| 8774 | |
| 8775 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 8776 | if (ret < 0) |
| 8777 | goto out; |
| 8778 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8779 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8780 | if (ret == 0) { |
| 8781 | ret = btrfs_del_item(trans, tree_root, path); |
| 8782 | if (ret) |
| 8783 | goto out; |
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 | } |
| 8786 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 8787 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8788 | rb_erase(&block_group->cache_node, |
| 8789 | &root->fs_info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 8790 | |
| 8791 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 8792 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 8793 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8794 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8795 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 8796 | /* |
| 8797 | * we must use list_del_init so people can check to see if they |
| 8798 | * are still on the list after taking the semaphore |
| 8799 | */ |
| 8800 | list_del_init(&block_group->list); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 8801 | if (list_empty(&block_group->space_info->block_groups[index])) |
| 8802 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8803 | up_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8804 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8805 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8806 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8807 | |
| 8808 | btrfs_remove_free_space_cache(block_group); |
| 8809 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8810 | spin_lock(&block_group->space_info->lock); |
| 8811 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 8812 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 8813 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8814 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 8815 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8816 | memcpy(&key, &block_group->key, sizeof(key)); |
| 8817 | |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 8818 | btrfs_clear_space_info_full(root->fs_info); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 8819 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8820 | btrfs_put_block_group(block_group); |
| 8821 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8822 | |
| 8823 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 8824 | if (ret > 0) |
| 8825 | ret = -EIO; |
| 8826 | if (ret < 0) |
| 8827 | goto out; |
| 8828 | |
| 8829 | ret = btrfs_del_item(trans, root, path); |
| 8830 | out: |
| 8831 | btrfs_free_path(path); |
| 8832 | return ret; |
| 8833 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8834 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8835 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 8836 | { |
| 8837 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8838 | struct btrfs_super_block *disk_super; |
| 8839 | u64 features; |
| 8840 | u64 flags; |
| 8841 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8842 | int ret; |
| 8843 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 8844 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8845 | if (!btrfs_super_root(disk_super)) |
| 8846 | return 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8847 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8848 | features = btrfs_super_incompat_flags(disk_super); |
| 8849 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 8850 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8851 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8852 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 8853 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8854 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8855 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8856 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 8857 | if (mixed) { |
| 8858 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
| 8859 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 8860 | } else { |
| 8861 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 8862 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 8863 | if (ret) |
| 8864 | goto out; |
| 8865 | |
| 8866 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 8867 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 8868 | } |
| 8869 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 8870 | return ret; |
| 8871 | } |
| 8872 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8873 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 8874 | { |
| 8875 | return unpin_extent_range(root, start, end); |
| 8876 | } |
| 8877 | |
| 8878 | int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 8879 | u64 num_bytes, u64 *actual_bytes) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8880 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 8881 | return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 8882 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8883 | |
| 8884 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 8885 | { |
| 8886 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 8887 | struct btrfs_block_group_cache *cache = NULL; |
| 8888 | u64 group_trimmed; |
| 8889 | u64 start; |
| 8890 | u64 end; |
| 8891 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 8892 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8893 | int ret = 0; |
| 8894 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 8895 | /* |
| 8896 | * try to trim all FS space, our block group may start from non-zero. |
| 8897 | */ |
| 8898 | if (range->len == total_bytes) |
| 8899 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 8900 | else |
| 8901 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8902 | |
| 8903 | while (cache) { |
| 8904 | if (cache->key.objectid >= (range->start + range->len)) { |
| 8905 | btrfs_put_block_group(cache); |
| 8906 | break; |
| 8907 | } |
| 8908 | |
| 8909 | start = max(range->start, cache->key.objectid); |
| 8910 | end = min(range->start + range->len, |
| 8911 | cache->key.objectid + cache->key.offset); |
| 8912 | |
| 8913 | if (end - start >= range->minlen) { |
| 8914 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 8915 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 8916 | if (ret) { |
| 8917 | btrfs_put_block_group(cache); |
| 8918 | break; |
| 8919 | } |
| 8920 | ret = wait_block_group_cache_done(cache); |
| 8921 | if (ret) { |
| 8922 | btrfs_put_block_group(cache); |
| 8923 | break; |
| 8924 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 8925 | } |
| 8926 | ret = btrfs_trim_block_group(cache, |
| 8927 | &group_trimmed, |
| 8928 | start, |
| 8929 | end, |
| 8930 | range->minlen); |
| 8931 | |
| 8932 | trimmed += group_trimmed; |
| 8933 | if (ret) { |
| 8934 | btrfs_put_block_group(cache); |
| 8935 | break; |
| 8936 | } |
| 8937 | } |
| 8938 | |
| 8939 | cache = next_block_group(fs_info->tree_root, cache); |
| 8940 | } |
| 8941 | |
| 8942 | range->len = trimmed; |
| 8943 | return ret; |
| 8944 | } |