Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Oracle. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public |
| 6 | * License v2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public |
| 14 | * License along with this program; if not, write to the |
| 15 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 16 | * Boston, MA 021110-1307, USA. |
| 17 | */ |
Zach Brown | ec6b910 | 2007-07-11 10:00:37 -0400 | [diff] [blame] | 18 | #include <linux/sched.h> |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 19 | #include <linux/pagemap.h> |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 20 | #include <linux/writeback.h> |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 21 | #include <linux/blkdev.h> |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 22 | #include <linux/sort.h> |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 23 | #include <linux/rcupdate.h> |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 24 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
David Sterba | dff51cd | 2011-06-14 12:52:17 +0200 | [diff] [blame] | 26 | #include <linux/ratelimit.h> |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 27 | #include <linux/percpu_counter.h> |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 28 | #include "hash.h" |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 29 | #include "tree-log.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 30 | #include "disk-io.h" |
| 31 | #include "print-tree.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 32 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 33 | #include "raid56.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 34 | #include "locking.h" |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 35 | #include "free-space-cache.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 36 | #include "math.h" |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 37 | #include "sysfs.h" |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 38 | #include "qgroup.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 39 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 40 | #undef SCRAMBLE_DELAYED_REFS |
| 41 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 42 | /* |
| 43 | * control flags for do_chunk_alloc's force field |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 44 | * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk |
| 45 | * if we really need one. |
| 46 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 47 | * CHUNK_ALLOC_LIMITED means to only try and allocate one |
| 48 | * if we have very few chunks already allocated. This is |
| 49 | * used as part of the clustering code to help make sure |
| 50 | * we have a good pool of storage to cluster in, without |
| 51 | * filling the FS with empty chunks |
| 52 | * |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 53 | * CHUNK_ALLOC_FORCE means it must try to allocate one |
| 54 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 55 | */ |
| 56 | enum { |
| 57 | CHUNK_ALLOC_NO_FORCE = 0, |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 58 | CHUNK_ALLOC_LIMITED = 1, |
| 59 | CHUNK_ALLOC_FORCE = 2, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 60 | }; |
| 61 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 62 | /* |
| 63 | * Control how reservations are dealt with. |
| 64 | * |
| 65 | * RESERVE_FREE - freeing a reservation. |
| 66 | * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for |
| 67 | * ENOSPC accounting |
| 68 | * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update |
| 69 | * bytes_may_use as the ENOSPC accounting is done elsewhere |
| 70 | */ |
| 71 | enum { |
| 72 | RESERVE_FREE = 0, |
| 73 | RESERVE_ALLOC = 1, |
| 74 | RESERVE_ALLOC_NO_ACCOUNT = 2, |
| 75 | }; |
| 76 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 77 | static int update_block_group(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 78 | u64 bytenr, u64 num_bytes, int alloc); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 79 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 80 | struct btrfs_root *root, |
| 81 | u64 bytenr, u64 num_bytes, u64 parent, |
| 82 | u64 root_objectid, u64 owner_objectid, |
| 83 | u64 owner_offset, int refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 84 | struct btrfs_delayed_extent_op *extra_op, |
| 85 | int no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 86 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 87 | struct extent_buffer *leaf, |
| 88 | struct btrfs_extent_item *ei); |
| 89 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 90 | struct btrfs_root *root, |
| 91 | u64 parent, u64 root_objectid, |
| 92 | u64 flags, u64 owner, u64 offset, |
| 93 | struct btrfs_key *ins, int ref_mod); |
| 94 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 95 | struct btrfs_root *root, |
| 96 | u64 parent, u64 root_objectid, |
| 97 | u64 flags, struct btrfs_disk_key *key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 98 | int level, struct btrfs_key *ins, |
| 99 | int no_quota); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 100 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 101 | struct btrfs_root *extent_root, u64 flags, |
| 102 | int force); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 103 | static int find_next_key(struct btrfs_path *path, int level, |
| 104 | struct btrfs_key *key); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 105 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 106 | int dump_block_groups); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 107 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 108 | u64 num_bytes, int reserve, |
| 109 | int delalloc); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 110 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 111 | u64 num_bytes); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 112 | int btrfs_pin_extent(struct btrfs_root *root, |
| 113 | u64 bytenr, u64 num_bytes, int reserved); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 114 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 115 | static noinline int |
| 116 | block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 117 | { |
| 118 | smp_mb(); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 119 | return cache->cached == BTRFS_CACHE_FINISHED || |
| 120 | cache->cached == BTRFS_CACHE_ERROR; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 121 | } |
| 122 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 123 | static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits) |
| 124 | { |
| 125 | return (cache->flags & bits) == bits; |
| 126 | } |
| 127 | |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 128 | static void btrfs_get_block_group(struct btrfs_block_group_cache *cache) |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 129 | { |
| 130 | atomic_inc(&cache->count); |
| 131 | } |
| 132 | |
| 133 | void btrfs_put_block_group(struct btrfs_block_group_cache *cache) |
| 134 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 135 | if (atomic_dec_and_test(&cache->count)) { |
| 136 | WARN_ON(cache->pinned > 0); |
| 137 | WARN_ON(cache->reserved > 0); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 138 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 139 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 140 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 141 | } |
| 142 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 143 | /* |
| 144 | * this adds the block group to the fs_info rb tree for the block group |
| 145 | * cache |
| 146 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 147 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 148 | struct btrfs_block_group_cache *block_group) |
| 149 | { |
| 150 | struct rb_node **p; |
| 151 | struct rb_node *parent = NULL; |
| 152 | struct btrfs_block_group_cache *cache; |
| 153 | |
| 154 | spin_lock(&info->block_group_cache_lock); |
| 155 | p = &info->block_group_cache_tree.rb_node; |
| 156 | |
| 157 | while (*p) { |
| 158 | parent = *p; |
| 159 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 160 | cache_node); |
| 161 | if (block_group->key.objectid < cache->key.objectid) { |
| 162 | p = &(*p)->rb_left; |
| 163 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 164 | p = &(*p)->rb_right; |
| 165 | } else { |
| 166 | spin_unlock(&info->block_group_cache_lock); |
| 167 | return -EEXIST; |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | rb_link_node(&block_group->cache_node, parent, p); |
| 172 | rb_insert_color(&block_group->cache_node, |
| 173 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 174 | |
| 175 | if (info->first_logical_byte > block_group->key.objectid) |
| 176 | info->first_logical_byte = block_group->key.objectid; |
| 177 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 178 | spin_unlock(&info->block_group_cache_lock); |
| 179 | |
| 180 | return 0; |
| 181 | } |
| 182 | |
| 183 | /* |
| 184 | * This will return the block group at or after bytenr if contains is 0, else |
| 185 | * it will return the block group that contains the bytenr |
| 186 | */ |
| 187 | static struct btrfs_block_group_cache * |
| 188 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 189 | int contains) |
| 190 | { |
| 191 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 192 | struct rb_node *n; |
| 193 | u64 end, start; |
| 194 | |
| 195 | spin_lock(&info->block_group_cache_lock); |
| 196 | n = info->block_group_cache_tree.rb_node; |
| 197 | |
| 198 | while (n) { |
| 199 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 200 | cache_node); |
| 201 | end = cache->key.objectid + cache->key.offset - 1; |
| 202 | start = cache->key.objectid; |
| 203 | |
| 204 | if (bytenr < start) { |
| 205 | if (!contains && (!ret || start < ret->key.objectid)) |
| 206 | ret = cache; |
| 207 | n = n->rb_left; |
| 208 | } else if (bytenr > start) { |
| 209 | if (contains && bytenr <= end) { |
| 210 | ret = cache; |
| 211 | break; |
| 212 | } |
| 213 | n = n->rb_right; |
| 214 | } else { |
| 215 | ret = cache; |
| 216 | break; |
| 217 | } |
| 218 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 219 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 220 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 221 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 222 | info->first_logical_byte = ret->key.objectid; |
| 223 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 224 | spin_unlock(&info->block_group_cache_lock); |
| 225 | |
| 226 | return ret; |
| 227 | } |
| 228 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 229 | static int add_excluded_extent(struct btrfs_root *root, |
| 230 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 231 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 232 | u64 end = start + num_bytes - 1; |
| 233 | set_extent_bits(&root->fs_info->freed_extents[0], |
| 234 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 235 | set_extent_bits(&root->fs_info->freed_extents[1], |
| 236 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 237 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 238 | } |
| 239 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 240 | static void free_excluded_extents(struct btrfs_root *root, |
| 241 | struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 242 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 243 | u64 start, end; |
| 244 | |
| 245 | start = cache->key.objectid; |
| 246 | end = start + cache->key.offset - 1; |
| 247 | |
| 248 | clear_extent_bits(&root->fs_info->freed_extents[0], |
| 249 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 250 | clear_extent_bits(&root->fs_info->freed_extents[1], |
| 251 | start, end, EXTENT_UPTODATE, GFP_NOFS); |
| 252 | } |
| 253 | |
| 254 | static int exclude_super_stripes(struct btrfs_root *root, |
| 255 | struct btrfs_block_group_cache *cache) |
| 256 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 257 | u64 bytenr; |
| 258 | u64 *logical; |
| 259 | int stripe_len; |
| 260 | int i, nr, ret; |
| 261 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 262 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 263 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 264 | cache->bytes_super += stripe_len; |
| 265 | ret = add_excluded_extent(root, cache->key.objectid, |
| 266 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 267 | if (ret) |
| 268 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 271 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 272 | bytenr = btrfs_sb_offset(i); |
| 273 | ret = btrfs_rmap_block(&root->fs_info->mapping_tree, |
| 274 | cache->key.objectid, bytenr, |
| 275 | 0, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 276 | if (ret) |
| 277 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 278 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 279 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 280 | u64 start, len; |
| 281 | |
| 282 | if (logical[nr] > cache->key.objectid + |
| 283 | cache->key.offset) |
| 284 | continue; |
| 285 | |
| 286 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 287 | continue; |
| 288 | |
| 289 | start = logical[nr]; |
| 290 | if (start < cache->key.objectid) { |
| 291 | start = cache->key.objectid; |
| 292 | len = (logical[nr] + stripe_len) - start; |
| 293 | } else { |
| 294 | len = min_t(u64, stripe_len, |
| 295 | cache->key.objectid + |
| 296 | cache->key.offset - start); |
| 297 | } |
| 298 | |
| 299 | cache->bytes_super += len; |
| 300 | ret = add_excluded_extent(root, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 301 | if (ret) { |
| 302 | kfree(logical); |
| 303 | return ret; |
| 304 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 305 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 306 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 307 | kfree(logical); |
| 308 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 309 | return 0; |
| 310 | } |
| 311 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 312 | static struct btrfs_caching_control * |
| 313 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 314 | { |
| 315 | struct btrfs_caching_control *ctl; |
| 316 | |
| 317 | spin_lock(&cache->lock); |
| 318 | if (cache->cached != BTRFS_CACHE_STARTED) { |
| 319 | spin_unlock(&cache->lock); |
| 320 | return NULL; |
| 321 | } |
| 322 | |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 323 | /* We're loading it the fast way, so we don't have a caching_ctl. */ |
| 324 | if (!cache->caching_ctl) { |
| 325 | spin_unlock(&cache->lock); |
| 326 | return NULL; |
| 327 | } |
| 328 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 329 | ctl = cache->caching_ctl; |
| 330 | atomic_inc(&ctl->count); |
| 331 | spin_unlock(&cache->lock); |
| 332 | return ctl; |
| 333 | } |
| 334 | |
| 335 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 336 | { |
| 337 | if (atomic_dec_and_test(&ctl->count)) |
| 338 | kfree(ctl); |
| 339 | } |
| 340 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 341 | /* |
| 342 | * this is only called by cache_block_group, since we could have freed extents |
| 343 | * we need to check the pinned_extents for any extents that can't be used yet |
| 344 | * since their free space will be released as soon as the transaction commits. |
| 345 | */ |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 346 | static u64 add_new_free_space(struct btrfs_block_group_cache *block_group, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 347 | struct btrfs_fs_info *info, u64 start, u64 end) |
| 348 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 349 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 350 | int ret; |
| 351 | |
| 352 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 353 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 354 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 355 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 356 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 357 | if (ret) |
| 358 | break; |
| 359 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 360 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 361 | start = extent_end + 1; |
| 362 | } else if (extent_start > start && extent_start < end) { |
| 363 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 364 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 365 | ret = btrfs_add_free_space(block_group, start, |
| 366 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 367 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 368 | start = extent_end + 1; |
| 369 | } else { |
| 370 | break; |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | if (start < end) { |
| 375 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 376 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 377 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 378 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 379 | } |
| 380 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 381 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 382 | } |
| 383 | |
Qu Wenruo | d458b05 | 2014-02-28 10:46:19 +0800 | [diff] [blame] | 384 | static noinline void caching_thread(struct btrfs_work *work) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 385 | { |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 386 | struct btrfs_block_group_cache *block_group; |
| 387 | struct btrfs_fs_info *fs_info; |
| 388 | struct btrfs_caching_control *caching_ctl; |
| 389 | struct btrfs_root *extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 390 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 391 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 392 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 393 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 394 | u64 last = 0; |
| 395 | u32 nritems; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 396 | int ret = -ENOMEM; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 397 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 398 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 399 | block_group = caching_ctl->block_group; |
| 400 | fs_info = block_group->fs_info; |
| 401 | extent_root = fs_info->extent_root; |
| 402 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 403 | path = btrfs_alloc_path(); |
| 404 | if (!path) |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 405 | goto out; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 406 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 407 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 408 | |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 409 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 410 | * We don't want to deadlock with somebody trying to allocate a new |
| 411 | * extent for the extent root while also trying to search the extent |
| 412 | * root to add free space. So we skip locking and search the commit |
| 413 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 414 | */ |
| 415 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 416 | path->search_commit_root = 1; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 417 | path->reada = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 418 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 419 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 420 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 421 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 422 | again: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 423 | mutex_lock(&caching_ctl->mutex); |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 424 | /* need to make sure the commit_root doesn't disappear */ |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 425 | down_read(&fs_info->commit_root_sem); |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 426 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 427 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 428 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 429 | if (ret < 0) |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 430 | goto err; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 431 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 432 | leaf = path->nodes[0]; |
| 433 | nritems = btrfs_header_nritems(leaf); |
| 434 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 435 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 436 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 437 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 438 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 439 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 440 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 441 | if (path->slots[0] < nritems) { |
| 442 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 443 | } else { |
| 444 | ret = find_next_key(path, 0, &key); |
| 445 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 446 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 447 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 448 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 449 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 450 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 451 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 452 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 453 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 454 | cond_resched(); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 455 | goto again; |
| 456 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 457 | |
| 458 | ret = btrfs_next_leaf(extent_root, path); |
| 459 | if (ret < 0) |
| 460 | goto err; |
| 461 | if (ret) |
| 462 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 463 | leaf = path->nodes[0]; |
| 464 | nritems = btrfs_header_nritems(leaf); |
| 465 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 466 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 467 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 468 | if (key.objectid < last) { |
| 469 | key.objectid = last; |
| 470 | key.offset = 0; |
| 471 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 472 | |
| 473 | caching_ctl->progress = last; |
| 474 | btrfs_release_path(path); |
| 475 | goto next; |
| 476 | } |
| 477 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 478 | if (key.objectid < block_group->key.objectid) { |
| 479 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 480 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 481 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 482 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 483 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 484 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 485 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 486 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 487 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 488 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 489 | total_found += add_new_free_space(block_group, |
| 490 | fs_info, last, |
| 491 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 492 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 493 | last = key.objectid + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 494 | fs_info->tree_root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 495 | else |
| 496 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 497 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 498 | if (total_found > (1024 * 1024 * 2)) { |
| 499 | total_found = 0; |
| 500 | wake_up(&caching_ctl->wait); |
| 501 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 502 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 503 | path->slots[0]++; |
| 504 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 505 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 506 | |
| 507 | total_found += add_new_free_space(block_group, fs_info, last, |
| 508 | block_group->key.objectid + |
| 509 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 510 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 511 | |
| 512 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 513 | block_group->caching_ctl = NULL; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 514 | block_group->cached = BTRFS_CACHE_FINISHED; |
| 515 | spin_unlock(&block_group->lock); |
| 516 | |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 517 | err: |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 518 | btrfs_free_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 519 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 520 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 521 | free_excluded_extents(extent_root, block_group); |
| 522 | |
| 523 | mutex_unlock(&caching_ctl->mutex); |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 524 | out: |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 525 | if (ret) { |
| 526 | spin_lock(&block_group->lock); |
| 527 | block_group->caching_ctl = NULL; |
| 528 | block_group->cached = BTRFS_CACHE_ERROR; |
| 529 | spin_unlock(&block_group->lock); |
| 530 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 531 | wake_up(&caching_ctl->wait); |
| 532 | |
| 533 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 534 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 535 | } |
| 536 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 537 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 538 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 539 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 540 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 541 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 542 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 543 | int ret = 0; |
| 544 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 545 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 546 | if (!caching_ctl) |
| 547 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 548 | |
| 549 | INIT_LIST_HEAD(&caching_ctl->list); |
| 550 | mutex_init(&caching_ctl->mutex); |
| 551 | init_waitqueue_head(&caching_ctl->wait); |
| 552 | caching_ctl->block_group = cache; |
| 553 | caching_ctl->progress = cache->key.objectid; |
| 554 | atomic_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 555 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 556 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 557 | |
| 558 | spin_lock(&cache->lock); |
| 559 | /* |
| 560 | * This should be a rare occasion, but this could happen I think in the |
| 561 | * case where one thread starts to load the space cache info, and then |
| 562 | * some other thread starts a transaction commit which tries to do an |
| 563 | * allocation while the other thread is still loading the space cache |
| 564 | * info. The previous loop should have kept us from choosing this block |
| 565 | * group, but if we've moved to the state where we will wait on caching |
| 566 | * block groups we need to first check if we're doing a fast load here, |
| 567 | * so we can wait for it to finish, otherwise we could end up allocating |
| 568 | * from a block group who's cache gets evicted for one reason or |
| 569 | * another. |
| 570 | */ |
| 571 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 572 | struct btrfs_caching_control *ctl; |
| 573 | |
| 574 | ctl = cache->caching_ctl; |
| 575 | atomic_inc(&ctl->count); |
| 576 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 577 | spin_unlock(&cache->lock); |
| 578 | |
| 579 | schedule(); |
| 580 | |
| 581 | finish_wait(&ctl->wait, &wait); |
| 582 | put_caching_control(ctl); |
| 583 | spin_lock(&cache->lock); |
| 584 | } |
| 585 | |
| 586 | if (cache->cached != BTRFS_CACHE_NO) { |
| 587 | spin_unlock(&cache->lock); |
| 588 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 589 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 590 | } |
| 591 | WARN_ON(cache->caching_ctl); |
| 592 | cache->caching_ctl = caching_ctl; |
| 593 | cache->cached = BTRFS_CACHE_FAST; |
| 594 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 595 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 596 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 597 | ret = load_free_space_cache(fs_info, cache); |
| 598 | |
| 599 | spin_lock(&cache->lock); |
| 600 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 601 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 602 | cache->cached = BTRFS_CACHE_FINISHED; |
| 603 | cache->last_byte_to_unpin = (u64)-1; |
| 604 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 605 | if (load_cache_only) { |
| 606 | cache->caching_ctl = NULL; |
| 607 | cache->cached = BTRFS_CACHE_NO; |
| 608 | } else { |
| 609 | cache->cached = BTRFS_CACHE_STARTED; |
| 610 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 611 | } |
| 612 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 613 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 614 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 615 | put_caching_control(caching_ctl); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 616 | free_excluded_extents(fs_info->extent_root, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 617 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 618 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 619 | } else { |
| 620 | /* |
| 621 | * We are not going to do the fast caching, set cached to the |
| 622 | * appropriate value and wakeup any waiters. |
| 623 | */ |
| 624 | spin_lock(&cache->lock); |
| 625 | if (load_cache_only) { |
| 626 | cache->caching_ctl = NULL; |
| 627 | cache->cached = BTRFS_CACHE_NO; |
| 628 | } else { |
| 629 | cache->cached = BTRFS_CACHE_STARTED; |
| 630 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 631 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 632 | wake_up(&caching_ctl->wait); |
| 633 | } |
| 634 | |
| 635 | if (load_cache_only) { |
| 636 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 637 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 638 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 639 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 640 | down_write(&fs_info->commit_root_sem); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 641 | atomic_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 642 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 643 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 644 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 645 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 646 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 647 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 648 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 649 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 650 | } |
| 651 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 652 | /* |
| 653 | * return the block group that starts at or after bytenr |
| 654 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 655 | static struct btrfs_block_group_cache * |
| 656 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 657 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 658 | struct btrfs_block_group_cache *cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 659 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 660 | cache = block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 661 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 662 | return cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 663 | } |
| 664 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 665 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 666 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 667 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 668 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 669 | struct btrfs_fs_info *info, |
| 670 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 671 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 672 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 673 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 674 | cache = block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 675 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 676 | return cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 677 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 678 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 679 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 680 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 681 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 682 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 683 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 684 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 685 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 686 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 687 | rcu_read_lock(); |
| 688 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 689 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 690 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 691 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 692 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 693 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 694 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 695 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 696 | } |
| 697 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 698 | /* |
| 699 | * after adding space to the filesystem, we need to clear the full flags |
| 700 | * on all the space infos. |
| 701 | */ |
| 702 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 703 | { |
| 704 | struct list_head *head = &info->space_info; |
| 705 | struct btrfs_space_info *found; |
| 706 | |
| 707 | rcu_read_lock(); |
| 708 | list_for_each_entry_rcu(found, head, list) |
| 709 | found->full = 0; |
| 710 | rcu_read_unlock(); |
| 711 | } |
| 712 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 713 | /* simple helper to search for an existing data extent at a given offset */ |
| 714 | int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 715 | { |
| 716 | int ret; |
| 717 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 718 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 719 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 720 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 721 | if (!path) |
| 722 | return -ENOMEM; |
| 723 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 724 | key.objectid = start; |
| 725 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 726 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 727 | ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path, |
| 728 | 0, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 729 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 730 | return ret; |
| 731 | } |
| 732 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 733 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 734 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 735 | * |
| 736 | * the head node for delayed ref is used to store the sum of all the |
| 737 | * reference count modifications queued up in the rbtree. the head |
| 738 | * node may also store the extent flags to set. This way you can check |
| 739 | * to see what the reference count and extent flags would be if all of |
| 740 | * the delayed refs are not processed. |
| 741 | */ |
| 742 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
| 743 | struct btrfs_root *root, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 744 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 745 | { |
| 746 | struct btrfs_delayed_ref_head *head; |
| 747 | struct btrfs_delayed_ref_root *delayed_refs; |
| 748 | struct btrfs_path *path; |
| 749 | struct btrfs_extent_item *ei; |
| 750 | struct extent_buffer *leaf; |
| 751 | struct btrfs_key key; |
| 752 | u32 item_size; |
| 753 | u64 num_refs; |
| 754 | u64 extent_flags; |
| 755 | int ret; |
| 756 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 757 | /* |
| 758 | * If we don't have skinny metadata, don't bother doing anything |
| 759 | * different |
| 760 | */ |
| 761 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) { |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 762 | offset = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 763 | metadata = 0; |
| 764 | } |
| 765 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 766 | path = btrfs_alloc_path(); |
| 767 | if (!path) |
| 768 | return -ENOMEM; |
| 769 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 770 | if (!trans) { |
| 771 | path->skip_locking = 1; |
| 772 | path->search_commit_root = 1; |
| 773 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 774 | |
| 775 | search_again: |
| 776 | key.objectid = bytenr; |
| 777 | key.offset = offset; |
| 778 | if (metadata) |
| 779 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 780 | else |
| 781 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 782 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 783 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, |
| 784 | &key, path, 0, 0); |
| 785 | if (ret < 0) |
| 786 | goto out_free; |
| 787 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 788 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 789 | if (path->slots[0]) { |
| 790 | path->slots[0]--; |
| 791 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 792 | path->slots[0]); |
| 793 | if (key.objectid == bytenr && |
| 794 | key.type == BTRFS_EXTENT_ITEM_KEY && |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 795 | key.offset == root->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 796 | ret = 0; |
| 797 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 798 | } |
| 799 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 800 | if (ret == 0) { |
| 801 | leaf = path->nodes[0]; |
| 802 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 803 | if (item_size >= sizeof(*ei)) { |
| 804 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 805 | struct btrfs_extent_item); |
| 806 | num_refs = btrfs_extent_refs(leaf, ei); |
| 807 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 808 | } else { |
| 809 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 810 | struct btrfs_extent_item_v0 *ei0; |
| 811 | BUG_ON(item_size != sizeof(*ei0)); |
| 812 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 813 | struct btrfs_extent_item_v0); |
| 814 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 815 | /* FIXME: this isn't correct for data */ |
| 816 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 817 | #else |
| 818 | BUG(); |
| 819 | #endif |
| 820 | } |
| 821 | BUG_ON(num_refs == 0); |
| 822 | } else { |
| 823 | num_refs = 0; |
| 824 | extent_flags = 0; |
| 825 | ret = 0; |
| 826 | } |
| 827 | |
| 828 | if (!trans) |
| 829 | goto out; |
| 830 | |
| 831 | delayed_refs = &trans->transaction->delayed_refs; |
| 832 | spin_lock(&delayed_refs->lock); |
| 833 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 834 | if (head) { |
| 835 | if (!mutex_trylock(&head->mutex)) { |
| 836 | atomic_inc(&head->node.refs); |
| 837 | spin_unlock(&delayed_refs->lock); |
| 838 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 839 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 840 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 841 | /* |
| 842 | * Mutex was contended, block until it's released and try |
| 843 | * again |
| 844 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 845 | mutex_lock(&head->mutex); |
| 846 | mutex_unlock(&head->mutex); |
| 847 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 848 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 849 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 850 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 851 | if (head->extent_op && head->extent_op->update_flags) |
| 852 | extent_flags |= head->extent_op->flags_to_set; |
| 853 | else |
| 854 | BUG_ON(num_refs == 0); |
| 855 | |
| 856 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 857 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 858 | mutex_unlock(&head->mutex); |
| 859 | } |
| 860 | spin_unlock(&delayed_refs->lock); |
| 861 | out: |
| 862 | WARN_ON(num_refs == 0); |
| 863 | if (refs) |
| 864 | *refs = num_refs; |
| 865 | if (flags) |
| 866 | *flags = extent_flags; |
| 867 | out_free: |
| 868 | btrfs_free_path(path); |
| 869 | return ret; |
| 870 | } |
| 871 | |
| 872 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 873 | * Back reference rules. Back refs have three main goals: |
| 874 | * |
| 875 | * 1) differentiate between all holders of references to an extent so that |
| 876 | * when a reference is dropped we can make sure it was a valid reference |
| 877 | * before freeing the extent. |
| 878 | * |
| 879 | * 2) Provide enough information to quickly find the holders of an extent |
| 880 | * if we notice a given block is corrupted or bad. |
| 881 | * |
| 882 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 883 | * maintenance. This is actually the same as #2, but with a slightly |
| 884 | * different use case. |
| 885 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 886 | * There are two kinds of back refs. The implicit back refs is optimized |
| 887 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 888 | * back refs of this kind provide information about the block's owner tree |
| 889 | * and the pointer's key. These information allow us to find the block by |
| 890 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 891 | * referenced by their owner trees. The location of tree block is recorded |
| 892 | * in the back refs. Actually the full back refs is generic, and can be |
| 893 | * used in all cases the implicit back refs is used. The major shortcoming |
| 894 | * of the full back refs is its overhead. Every time a tree block gets |
| 895 | * COWed, we have to update back refs entry for all pointers in it. |
| 896 | * |
| 897 | * For a newly allocated tree block, we use implicit back refs for |
| 898 | * pointers in it. This means most tree related operations only involve |
| 899 | * implicit back refs. For a tree block created in old transaction, the |
| 900 | * only way to drop a reference to it is COW it. So we can detect the |
| 901 | * event that tree block loses its owner tree's reference and do the |
| 902 | * back refs conversion. |
| 903 | * |
| 904 | * When a tree block is COW'd through a tree, there are four cases: |
| 905 | * |
| 906 | * The reference count of the block is one and the tree is the block's |
| 907 | * owner tree. Nothing to do in this case. |
| 908 | * |
| 909 | * The reference count of the block is one and the tree is not the |
| 910 | * block's owner tree. In this case, full back refs is used for pointers |
| 911 | * in the block. Remove these full back refs, add implicit back refs for |
| 912 | * every pointers in the new block. |
| 913 | * |
| 914 | * The reference count of the block is greater than one and the tree is |
| 915 | * the block's owner tree. In this case, implicit back refs is used for |
| 916 | * pointers in the block. Add full back refs for every pointers in the |
| 917 | * block, increase lower level extents' reference counts. The original |
| 918 | * implicit back refs are entailed to the new block. |
| 919 | * |
| 920 | * The reference count of the block is greater than one and the tree is |
| 921 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 922 | * the new block, increase lower level extents' reference count. |
| 923 | * |
| 924 | * Back Reference Key composing: |
| 925 | * |
| 926 | * The key objectid corresponds to the first byte in the extent, |
| 927 | * The key type is used to differentiate between types of back refs. |
| 928 | * There are different meanings of the key offset for different types |
| 929 | * of back refs. |
| 930 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 931 | * File extents can be referenced by: |
| 932 | * |
| 933 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 934 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 935 | * - different offsets inside a file (bookend extents in file.c) |
| 936 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 937 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 938 | * |
| 939 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 940 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 941 | * - original offset in the file |
| 942 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 943 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 944 | * The key offset for the implicit back refs is hash of the first |
| 945 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 946 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 947 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 948 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 949 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 950 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 951 | * The key offset for the implicit back refs is the first byte of |
| 952 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 953 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 954 | * When a file extent is allocated, The implicit back refs is used. |
| 955 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 956 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 957 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 958 | * |
| 959 | * When a file extent is removed file truncation, we find the |
| 960 | * corresponding implicit back refs and check the following fields: |
| 961 | * |
| 962 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 963 | * |
| 964 | * Btree extents can be referenced by: |
| 965 | * |
| 966 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 967 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 968 | * Both the implicit back refs and the full back refs for tree blocks |
| 969 | * only consist of key. The key offset for the implicit back refs is |
| 970 | * objectid of block's owner tree. The key offset for the full back refs |
| 971 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 972 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 973 | * When implicit back refs is used, information about the lowest key and |
| 974 | * level of the tree block are required. These information are stored in |
| 975 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 976 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 977 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 978 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 979 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
| 980 | struct btrfs_root *root, |
| 981 | struct btrfs_path *path, |
| 982 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 983 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 984 | struct btrfs_extent_item *item; |
| 985 | struct btrfs_extent_item_v0 *ei0; |
| 986 | struct btrfs_extent_ref_v0 *ref0; |
| 987 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 988 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 989 | struct btrfs_key key; |
| 990 | struct btrfs_key found_key; |
| 991 | u32 new_size = sizeof(*item); |
| 992 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 993 | int ret; |
| 994 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 995 | leaf = path->nodes[0]; |
| 996 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 997 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 998 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 999 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1000 | struct btrfs_extent_item_v0); |
| 1001 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1002 | |
| 1003 | if (owner == (u64)-1) { |
| 1004 | while (1) { |
| 1005 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1006 | ret = btrfs_next_leaf(root, path); |
| 1007 | if (ret < 0) |
| 1008 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1009 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1010 | leaf = path->nodes[0]; |
| 1011 | } |
| 1012 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1013 | path->slots[0]); |
| 1014 | BUG_ON(key.objectid != found_key.objectid); |
| 1015 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1016 | path->slots[0]++; |
| 1017 | continue; |
| 1018 | } |
| 1019 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1020 | struct btrfs_extent_ref_v0); |
| 1021 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1022 | break; |
| 1023 | } |
| 1024 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1025 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1026 | |
| 1027 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1028 | new_size += sizeof(*bi); |
| 1029 | |
| 1030 | new_size -= sizeof(*ei0); |
| 1031 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1032 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1033 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1034 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1035 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1036 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1037 | btrfs_extend_item(root, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1038 | |
| 1039 | leaf = path->nodes[0]; |
| 1040 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1041 | btrfs_set_extent_refs(leaf, item, refs); |
| 1042 | /* FIXME: get real generation */ |
| 1043 | btrfs_set_extent_generation(leaf, item, 0); |
| 1044 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1045 | btrfs_set_extent_flags(leaf, item, |
| 1046 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1047 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1048 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1049 | /* FIXME: get first key of the block */ |
| 1050 | memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi)); |
| 1051 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1052 | } else { |
| 1053 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1054 | } |
| 1055 | btrfs_mark_buffer_dirty(leaf); |
| 1056 | return 0; |
| 1057 | } |
| 1058 | #endif |
| 1059 | |
| 1060 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1061 | { |
| 1062 | u32 high_crc = ~(u32)0; |
| 1063 | u32 low_crc = ~(u32)0; |
| 1064 | __le64 lenum; |
| 1065 | |
| 1066 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1067 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1068 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1069 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1070 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1071 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1072 | |
| 1073 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1074 | } |
| 1075 | |
| 1076 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1077 | struct btrfs_extent_data_ref *ref) |
| 1078 | { |
| 1079 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1080 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1081 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1082 | } |
| 1083 | |
| 1084 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1085 | struct btrfs_extent_data_ref *ref, |
| 1086 | u64 root_objectid, u64 owner, u64 offset) |
| 1087 | { |
| 1088 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1089 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1090 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1091 | return 0; |
| 1092 | return 1; |
| 1093 | } |
| 1094 | |
| 1095 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1096 | struct btrfs_root *root, |
| 1097 | struct btrfs_path *path, |
| 1098 | u64 bytenr, u64 parent, |
| 1099 | u64 root_objectid, |
| 1100 | u64 owner, u64 offset) |
| 1101 | { |
| 1102 | struct btrfs_key key; |
| 1103 | struct btrfs_extent_data_ref *ref; |
| 1104 | struct extent_buffer *leaf; |
| 1105 | u32 nritems; |
| 1106 | int ret; |
| 1107 | int recow; |
| 1108 | int err = -ENOENT; |
| 1109 | |
| 1110 | key.objectid = bytenr; |
| 1111 | if (parent) { |
| 1112 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1113 | key.offset = parent; |
| 1114 | } else { |
| 1115 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1116 | key.offset = hash_extent_data_ref(root_objectid, |
| 1117 | owner, offset); |
| 1118 | } |
| 1119 | again: |
| 1120 | recow = 0; |
| 1121 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1122 | if (ret < 0) { |
| 1123 | err = ret; |
| 1124 | goto fail; |
| 1125 | } |
| 1126 | |
| 1127 | if (parent) { |
| 1128 | if (!ret) |
| 1129 | return 0; |
| 1130 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1131 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1132 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1133 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1134 | if (ret < 0) { |
| 1135 | err = ret; |
| 1136 | goto fail; |
| 1137 | } |
| 1138 | if (!ret) |
| 1139 | return 0; |
| 1140 | #endif |
| 1141 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1145 | nritems = btrfs_header_nritems(leaf); |
| 1146 | while (1) { |
| 1147 | if (path->slots[0] >= nritems) { |
| 1148 | ret = btrfs_next_leaf(root, path); |
| 1149 | if (ret < 0) |
| 1150 | err = ret; |
| 1151 | if (ret) |
| 1152 | goto fail; |
| 1153 | |
| 1154 | leaf = path->nodes[0]; |
| 1155 | nritems = btrfs_header_nritems(leaf); |
| 1156 | recow = 1; |
| 1157 | } |
| 1158 | |
| 1159 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1160 | if (key.objectid != bytenr || |
| 1161 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1162 | goto fail; |
| 1163 | |
| 1164 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1165 | struct btrfs_extent_data_ref); |
| 1166 | |
| 1167 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1168 | owner, offset)) { |
| 1169 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1170 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1171 | goto again; |
| 1172 | } |
| 1173 | err = 0; |
| 1174 | break; |
| 1175 | } |
| 1176 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1177 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1178 | fail: |
| 1179 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1180 | } |
| 1181 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1182 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1183 | struct btrfs_root *root, |
| 1184 | struct btrfs_path *path, |
| 1185 | u64 bytenr, u64 parent, |
| 1186 | u64 root_objectid, u64 owner, |
| 1187 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1188 | { |
| 1189 | struct btrfs_key key; |
| 1190 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1191 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1192 | u32 num_refs; |
| 1193 | int ret; |
| 1194 | |
| 1195 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1196 | if (parent) { |
| 1197 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1198 | key.offset = parent; |
| 1199 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1200 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1201 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1202 | key.offset = hash_extent_data_ref(root_objectid, |
| 1203 | owner, offset); |
| 1204 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1205 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1206 | |
| 1207 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1208 | if (ret && ret != -EEXIST) |
| 1209 | goto fail; |
| 1210 | |
| 1211 | leaf = path->nodes[0]; |
| 1212 | if (parent) { |
| 1213 | struct btrfs_shared_data_ref *ref; |
| 1214 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1215 | struct btrfs_shared_data_ref); |
| 1216 | if (ret == 0) { |
| 1217 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1218 | } else { |
| 1219 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1220 | num_refs += refs_to_add; |
| 1221 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1222 | } |
| 1223 | } else { |
| 1224 | struct btrfs_extent_data_ref *ref; |
| 1225 | while (ret == -EEXIST) { |
| 1226 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1227 | struct btrfs_extent_data_ref); |
| 1228 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1229 | owner, offset)) |
| 1230 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1231 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1232 | key.offset++; |
| 1233 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1234 | size); |
| 1235 | if (ret && ret != -EEXIST) |
| 1236 | goto fail; |
| 1237 | |
| 1238 | leaf = path->nodes[0]; |
| 1239 | } |
| 1240 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1241 | struct btrfs_extent_data_ref); |
| 1242 | if (ret == 0) { |
| 1243 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1244 | root_objectid); |
| 1245 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1246 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1247 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1248 | } else { |
| 1249 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1250 | num_refs += refs_to_add; |
| 1251 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1252 | } |
| 1253 | } |
| 1254 | btrfs_mark_buffer_dirty(leaf); |
| 1255 | ret = 0; |
| 1256 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1257 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1258 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1259 | } |
| 1260 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1261 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1262 | struct btrfs_root *root, |
| 1263 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1264 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1265 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1266 | struct btrfs_key key; |
| 1267 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1268 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1269 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1270 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1271 | int ret = 0; |
| 1272 | |
| 1273 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1274 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1275 | |
| 1276 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1277 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1278 | struct btrfs_extent_data_ref); |
| 1279 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1280 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1281 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1282 | struct btrfs_shared_data_ref); |
| 1283 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1284 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1285 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1286 | struct btrfs_extent_ref_v0 *ref0; |
| 1287 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1288 | struct btrfs_extent_ref_v0); |
| 1289 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1290 | #endif |
| 1291 | } else { |
| 1292 | BUG(); |
| 1293 | } |
| 1294 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1295 | BUG_ON(num_refs < refs_to_drop); |
| 1296 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1297 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1298 | if (num_refs == 0) { |
| 1299 | ret = btrfs_del_item(trans, root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1300 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1301 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1302 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1303 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1304 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1305 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1306 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1307 | else { |
| 1308 | struct btrfs_extent_ref_v0 *ref0; |
| 1309 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1310 | struct btrfs_extent_ref_v0); |
| 1311 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1312 | } |
| 1313 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1314 | btrfs_mark_buffer_dirty(leaf); |
| 1315 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1316 | return ret; |
| 1317 | } |
| 1318 | |
| 1319 | static noinline u32 extent_data_ref_count(struct btrfs_root *root, |
| 1320 | struct btrfs_path *path, |
| 1321 | struct btrfs_extent_inline_ref *iref) |
| 1322 | { |
| 1323 | struct btrfs_key key; |
| 1324 | struct extent_buffer *leaf; |
| 1325 | struct btrfs_extent_data_ref *ref1; |
| 1326 | struct btrfs_shared_data_ref *ref2; |
| 1327 | u32 num_refs = 0; |
| 1328 | |
| 1329 | leaf = path->nodes[0]; |
| 1330 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1331 | if (iref) { |
| 1332 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1333 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1334 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1335 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1336 | } else { |
| 1337 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1338 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1339 | } |
| 1340 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1341 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1342 | struct btrfs_extent_data_ref); |
| 1343 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1344 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1345 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1346 | struct btrfs_shared_data_ref); |
| 1347 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1348 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1349 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1350 | struct btrfs_extent_ref_v0 *ref0; |
| 1351 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1352 | struct btrfs_extent_ref_v0); |
| 1353 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1354 | #endif |
| 1355 | } else { |
| 1356 | WARN_ON(1); |
| 1357 | } |
| 1358 | return num_refs; |
| 1359 | } |
| 1360 | |
| 1361 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1362 | struct btrfs_root *root, |
| 1363 | struct btrfs_path *path, |
| 1364 | u64 bytenr, u64 parent, |
| 1365 | u64 root_objectid) |
| 1366 | { |
| 1367 | struct btrfs_key key; |
| 1368 | int ret; |
| 1369 | |
| 1370 | key.objectid = bytenr; |
| 1371 | if (parent) { |
| 1372 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1373 | key.offset = parent; |
| 1374 | } else { |
| 1375 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1376 | key.offset = root_objectid; |
| 1377 | } |
| 1378 | |
| 1379 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1380 | if (ret > 0) |
| 1381 | ret = -ENOENT; |
| 1382 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1383 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1384 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1385 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1386 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1387 | if (ret > 0) |
| 1388 | ret = -ENOENT; |
| 1389 | } |
| 1390 | #endif |
| 1391 | return ret; |
| 1392 | } |
| 1393 | |
| 1394 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1395 | struct btrfs_root *root, |
| 1396 | struct btrfs_path *path, |
| 1397 | u64 bytenr, u64 parent, |
| 1398 | u64 root_objectid) |
| 1399 | { |
| 1400 | struct btrfs_key key; |
| 1401 | int ret; |
| 1402 | |
| 1403 | key.objectid = bytenr; |
| 1404 | if (parent) { |
| 1405 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1406 | key.offset = parent; |
| 1407 | } else { |
| 1408 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1409 | key.offset = root_objectid; |
| 1410 | } |
| 1411 | |
| 1412 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1413 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1414 | return ret; |
| 1415 | } |
| 1416 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1417 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1418 | { |
| 1419 | int type; |
| 1420 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1421 | if (parent > 0) |
| 1422 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1423 | else |
| 1424 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1425 | } else { |
| 1426 | if (parent > 0) |
| 1427 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1428 | else |
| 1429 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1430 | } |
| 1431 | return type; |
| 1432 | } |
| 1433 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1434 | static int find_next_key(struct btrfs_path *path, int level, |
| 1435 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1436 | |
| 1437 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1438 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1439 | if (!path->nodes[level]) |
| 1440 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1441 | if (path->slots[level] + 1 >= |
| 1442 | btrfs_header_nritems(path->nodes[level])) |
| 1443 | continue; |
| 1444 | if (level == 0) |
| 1445 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1446 | path->slots[level] + 1); |
| 1447 | else |
| 1448 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1449 | path->slots[level] + 1); |
| 1450 | return 0; |
| 1451 | } |
| 1452 | return 1; |
| 1453 | } |
| 1454 | |
| 1455 | /* |
| 1456 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1457 | * to the address of inline back ref, and 0 is returned. |
| 1458 | * |
| 1459 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1460 | * should be inserted, and -ENOENT is returned. |
| 1461 | * |
| 1462 | * if insert is true and there are too many inline back refs, the path |
| 1463 | * points to the extent item, and -EAGAIN is returned. |
| 1464 | * |
| 1465 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1466 | * items in the tree are ordered. |
| 1467 | */ |
| 1468 | static noinline_for_stack |
| 1469 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1470 | struct btrfs_root *root, |
| 1471 | struct btrfs_path *path, |
| 1472 | struct btrfs_extent_inline_ref **ref_ret, |
| 1473 | u64 bytenr, u64 num_bytes, |
| 1474 | u64 parent, u64 root_objectid, |
| 1475 | u64 owner, u64 offset, int insert) |
| 1476 | { |
| 1477 | struct btrfs_key key; |
| 1478 | struct extent_buffer *leaf; |
| 1479 | struct btrfs_extent_item *ei; |
| 1480 | struct btrfs_extent_inline_ref *iref; |
| 1481 | u64 flags; |
| 1482 | u64 item_size; |
| 1483 | unsigned long ptr; |
| 1484 | unsigned long end; |
| 1485 | int extra_size; |
| 1486 | int type; |
| 1487 | int want; |
| 1488 | int ret; |
| 1489 | int err = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1490 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 1491 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1492 | |
| 1493 | key.objectid = bytenr; |
| 1494 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1495 | key.offset = num_bytes; |
| 1496 | |
| 1497 | want = extent_ref_type(parent, owner); |
| 1498 | if (insert) { |
| 1499 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1500 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1501 | } else |
| 1502 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1503 | |
| 1504 | /* |
| 1505 | * Owner is our parent level, so we can just add one to get the level |
| 1506 | * for the block we are interested in. |
| 1507 | */ |
| 1508 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1509 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1510 | key.offset = owner; |
| 1511 | } |
| 1512 | |
| 1513 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1514 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1515 | if (ret < 0) { |
| 1516 | err = ret; |
| 1517 | goto out; |
| 1518 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1519 | |
| 1520 | /* |
| 1521 | * We may be a newly converted file system which still has the old fat |
| 1522 | * extent entries for metadata, so try and see if we have one of those. |
| 1523 | */ |
| 1524 | if (ret > 0 && skinny_metadata) { |
| 1525 | skinny_metadata = false; |
| 1526 | if (path->slots[0]) { |
| 1527 | path->slots[0]--; |
| 1528 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1529 | path->slots[0]); |
| 1530 | if (key.objectid == bytenr && |
| 1531 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1532 | key.offset == num_bytes) |
| 1533 | ret = 0; |
| 1534 | } |
| 1535 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1536 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1537 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1538 | key.offset = num_bytes; |
| 1539 | btrfs_release_path(path); |
| 1540 | goto again; |
| 1541 | } |
| 1542 | } |
| 1543 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1544 | if (ret && !insert) { |
| 1545 | err = -ENOENT; |
| 1546 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1547 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1548 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1549 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1550 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1551 | |
| 1552 | leaf = path->nodes[0]; |
| 1553 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1554 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1555 | if (item_size < sizeof(*ei)) { |
| 1556 | if (!insert) { |
| 1557 | err = -ENOENT; |
| 1558 | goto out; |
| 1559 | } |
| 1560 | ret = convert_extent_item_v0(trans, root, path, owner, |
| 1561 | extra_size); |
| 1562 | if (ret < 0) { |
| 1563 | err = ret; |
| 1564 | goto out; |
| 1565 | } |
| 1566 | leaf = path->nodes[0]; |
| 1567 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1568 | } |
| 1569 | #endif |
| 1570 | BUG_ON(item_size < sizeof(*ei)); |
| 1571 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1572 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1573 | flags = btrfs_extent_flags(leaf, ei); |
| 1574 | |
| 1575 | ptr = (unsigned long)(ei + 1); |
| 1576 | end = (unsigned long)ei + item_size; |
| 1577 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1578 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1579 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1580 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1581 | } |
| 1582 | |
| 1583 | err = -ENOENT; |
| 1584 | while (1) { |
| 1585 | if (ptr >= end) { |
| 1586 | WARN_ON(ptr > end); |
| 1587 | break; |
| 1588 | } |
| 1589 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1590 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1591 | if (want < type) |
| 1592 | break; |
| 1593 | if (want > type) { |
| 1594 | ptr += btrfs_extent_inline_ref_size(type); |
| 1595 | continue; |
| 1596 | } |
| 1597 | |
| 1598 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1599 | struct btrfs_extent_data_ref *dref; |
| 1600 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1601 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1602 | owner, offset)) { |
| 1603 | err = 0; |
| 1604 | break; |
| 1605 | } |
| 1606 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1607 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1608 | break; |
| 1609 | } else { |
| 1610 | u64 ref_offset; |
| 1611 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1612 | if (parent > 0) { |
| 1613 | if (parent == ref_offset) { |
| 1614 | err = 0; |
| 1615 | break; |
| 1616 | } |
| 1617 | if (ref_offset < parent) |
| 1618 | break; |
| 1619 | } else { |
| 1620 | if (root_objectid == ref_offset) { |
| 1621 | err = 0; |
| 1622 | break; |
| 1623 | } |
| 1624 | if (ref_offset < root_objectid) |
| 1625 | break; |
| 1626 | } |
| 1627 | } |
| 1628 | ptr += btrfs_extent_inline_ref_size(type); |
| 1629 | } |
| 1630 | if (err == -ENOENT && insert) { |
| 1631 | if (item_size + extra_size >= |
| 1632 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1633 | err = -EAGAIN; |
| 1634 | goto out; |
| 1635 | } |
| 1636 | /* |
| 1637 | * To add new inline back ref, we have to make sure |
| 1638 | * there is no corresponding back ref item. |
| 1639 | * For simplicity, we just do not add new inline back |
| 1640 | * ref if there is any kind of item for this block |
| 1641 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1642 | if (find_next_key(path, 0, &key) == 0 && |
| 1643 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1644 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1645 | err = -EAGAIN; |
| 1646 | goto out; |
| 1647 | } |
| 1648 | } |
| 1649 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1650 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1651 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1652 | path->keep_locks = 0; |
| 1653 | btrfs_unlock_up_safe(path, 1); |
| 1654 | } |
| 1655 | return err; |
| 1656 | } |
| 1657 | |
| 1658 | /* |
| 1659 | * helper to add new inline back ref |
| 1660 | */ |
| 1661 | static noinline_for_stack |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1662 | void setup_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1663 | struct btrfs_path *path, |
| 1664 | struct btrfs_extent_inline_ref *iref, |
| 1665 | u64 parent, u64 root_objectid, |
| 1666 | u64 owner, u64 offset, int refs_to_add, |
| 1667 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1668 | { |
| 1669 | struct extent_buffer *leaf; |
| 1670 | struct btrfs_extent_item *ei; |
| 1671 | unsigned long ptr; |
| 1672 | unsigned long end; |
| 1673 | unsigned long item_offset; |
| 1674 | u64 refs; |
| 1675 | int size; |
| 1676 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1677 | |
| 1678 | leaf = path->nodes[0]; |
| 1679 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1680 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1681 | |
| 1682 | type = extent_ref_type(parent, owner); |
| 1683 | size = btrfs_extent_inline_ref_size(type); |
| 1684 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1685 | btrfs_extend_item(root, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1686 | |
| 1687 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1688 | refs = btrfs_extent_refs(leaf, ei); |
| 1689 | refs += refs_to_add; |
| 1690 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1691 | if (extent_op) |
| 1692 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1693 | |
| 1694 | ptr = (unsigned long)ei + item_offset; |
| 1695 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1696 | if (ptr < end - size) |
| 1697 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1698 | end - size - ptr); |
| 1699 | |
| 1700 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1701 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1702 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1703 | struct btrfs_extent_data_ref *dref; |
| 1704 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1705 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1706 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1707 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1708 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1709 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1710 | struct btrfs_shared_data_ref *sref; |
| 1711 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1712 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1713 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1714 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1715 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1716 | } else { |
| 1717 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1718 | } |
| 1719 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1720 | } |
| 1721 | |
| 1722 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
| 1723 | struct btrfs_root *root, |
| 1724 | struct btrfs_path *path, |
| 1725 | struct btrfs_extent_inline_ref **ref_ret, |
| 1726 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1727 | u64 root_objectid, u64 owner, u64 offset) |
| 1728 | { |
| 1729 | int ret; |
| 1730 | |
| 1731 | ret = lookup_inline_extent_backref(trans, root, path, ref_ret, |
| 1732 | bytenr, num_bytes, parent, |
| 1733 | root_objectid, owner, offset, 0); |
| 1734 | if (ret != -ENOENT) |
| 1735 | return ret; |
| 1736 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1737 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1738 | *ref_ret = NULL; |
| 1739 | |
| 1740 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1741 | ret = lookup_tree_block_ref(trans, root, path, bytenr, parent, |
| 1742 | root_objectid); |
| 1743 | } else { |
| 1744 | ret = lookup_extent_data_ref(trans, root, path, bytenr, parent, |
| 1745 | root_objectid, owner, offset); |
| 1746 | } |
| 1747 | return ret; |
| 1748 | } |
| 1749 | |
| 1750 | /* |
| 1751 | * helper to update/remove inline back ref |
| 1752 | */ |
| 1753 | static noinline_for_stack |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1754 | void update_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1755 | struct btrfs_path *path, |
| 1756 | struct btrfs_extent_inline_ref *iref, |
| 1757 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1758 | struct btrfs_delayed_extent_op *extent_op, |
| 1759 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1760 | { |
| 1761 | struct extent_buffer *leaf; |
| 1762 | struct btrfs_extent_item *ei; |
| 1763 | struct btrfs_extent_data_ref *dref = NULL; |
| 1764 | struct btrfs_shared_data_ref *sref = NULL; |
| 1765 | unsigned long ptr; |
| 1766 | unsigned long end; |
| 1767 | u32 item_size; |
| 1768 | int size; |
| 1769 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1770 | u64 refs; |
| 1771 | |
| 1772 | leaf = path->nodes[0]; |
| 1773 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1774 | refs = btrfs_extent_refs(leaf, ei); |
| 1775 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1776 | refs += refs_to_mod; |
| 1777 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1778 | if (extent_op) |
| 1779 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1780 | |
| 1781 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1782 | |
| 1783 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1784 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1785 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1786 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1787 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1788 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1789 | } else { |
| 1790 | refs = 1; |
| 1791 | BUG_ON(refs_to_mod != -1); |
| 1792 | } |
| 1793 | |
| 1794 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1795 | refs += refs_to_mod; |
| 1796 | |
| 1797 | if (refs > 0) { |
| 1798 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1799 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1800 | else |
| 1801 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1802 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1803 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1804 | size = btrfs_extent_inline_ref_size(type); |
| 1805 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1806 | ptr = (unsigned long)iref; |
| 1807 | end = (unsigned long)ei + item_size; |
| 1808 | if (ptr + size < end) |
| 1809 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1810 | end - ptr - size); |
| 1811 | item_size -= size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1812 | btrfs_truncate_item(root, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1813 | } |
| 1814 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | static noinline_for_stack |
| 1818 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1819 | struct btrfs_root *root, |
| 1820 | struct btrfs_path *path, |
| 1821 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1822 | u64 root_objectid, u64 owner, |
| 1823 | u64 offset, int refs_to_add, |
| 1824 | struct btrfs_delayed_extent_op *extent_op) |
| 1825 | { |
| 1826 | struct btrfs_extent_inline_ref *iref; |
| 1827 | int ret; |
| 1828 | |
| 1829 | ret = lookup_inline_extent_backref(trans, root, path, &iref, |
| 1830 | bytenr, num_bytes, parent, |
| 1831 | root_objectid, owner, offset, 1); |
| 1832 | if (ret == 0) { |
| 1833 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1834 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1835 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1836 | } else if (ret == -ENOENT) { |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1837 | setup_inline_extent_backref(root, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1838 | root_objectid, owner, offset, |
| 1839 | refs_to_add, extent_op); |
| 1840 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1841 | } |
| 1842 | return ret; |
| 1843 | } |
| 1844 | |
| 1845 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
| 1846 | struct btrfs_root *root, |
| 1847 | struct btrfs_path *path, |
| 1848 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1849 | u64 owner, u64 offset, int refs_to_add) |
| 1850 | { |
| 1851 | int ret; |
| 1852 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1853 | BUG_ON(refs_to_add != 1); |
| 1854 | ret = insert_tree_block_ref(trans, root, path, bytenr, |
| 1855 | parent, root_objectid); |
| 1856 | } else { |
| 1857 | ret = insert_extent_data_ref(trans, root, path, bytenr, |
| 1858 | parent, root_objectid, |
| 1859 | owner, offset, refs_to_add); |
| 1860 | } |
| 1861 | return ret; |
| 1862 | } |
| 1863 | |
| 1864 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
| 1865 | struct btrfs_root *root, |
| 1866 | struct btrfs_path *path, |
| 1867 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1868 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1869 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1870 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1871 | |
| 1872 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1873 | if (iref) { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1874 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1875 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1876 | } else if (is_data) { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1877 | ret = remove_extent_data_ref(trans, root, path, refs_to_drop, |
| 1878 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1879 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1880 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1881 | ret = btrfs_del_item(trans, root, path); |
| 1882 | } |
| 1883 | return ret; |
| 1884 | } |
| 1885 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1886 | static int btrfs_issue_discard(struct block_device *bdev, |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1887 | u64 start, u64 len) |
| 1888 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1889 | return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0); |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1890 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1891 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1892 | static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1893 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1894 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1895 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1896 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1897 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1898 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 1899 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1900 | /* Tell the block device(s) that the sectors can be discarded */ |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 1901 | ret = btrfs_map_block(root->fs_info, REQ_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1902 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1903 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1904 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1905 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1906 | int i; |
| 1907 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1908 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1909 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1910 | if (!stripe->dev->can_discard) |
| 1911 | continue; |
| 1912 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1913 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 1914 | stripe->physical, |
| 1915 | stripe->length); |
| 1916 | if (!ret) |
| 1917 | discarded_bytes += stripe->length; |
| 1918 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1919 | break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */ |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 1920 | |
| 1921 | /* |
| 1922 | * Just in case we get back EOPNOTSUPP for some reason, |
| 1923 | * just ignore the return value so we don't screw up |
| 1924 | * people calling discard_extent. |
| 1925 | */ |
| 1926 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1927 | } |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1928 | kfree(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1929 | } |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1930 | |
| 1931 | if (actual_bytes) |
| 1932 | *actual_bytes = discarded_bytes; |
| 1933 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1934 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1935 | if (ret == -EOPNOTSUPP) |
| 1936 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1937 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1938 | } |
| 1939 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1940 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1941 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 1942 | struct btrfs_root *root, |
| 1943 | u64 bytenr, u64 num_bytes, u64 parent, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1944 | u64 root_objectid, u64 owner, u64 offset, |
| 1945 | int no_quota) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1946 | { |
| 1947 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1948 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1949 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1950 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 1951 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1952 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1953 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1954 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 1955 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1956 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1957 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1958 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 1959 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 1960 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1961 | parent, root_objectid, owner, offset, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1962 | BTRFS_ADD_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1963 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1964 | return ret; |
| 1965 | } |
| 1966 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1967 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1968 | struct btrfs_root *root, |
| 1969 | u64 bytenr, u64 num_bytes, |
| 1970 | u64 parent, u64 root_objectid, |
| 1971 | u64 owner, u64 offset, int refs_to_add, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1972 | int no_quota, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1973 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1974 | { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1975 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1976 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1977 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1978 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1979 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1980 | u64 refs; |
| 1981 | int ret; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1982 | enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_ADD_EXCL; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 1983 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 1984 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1985 | if (!path) |
| 1986 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 1987 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1988 | if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled) |
| 1989 | no_quota = 1; |
| 1990 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 1991 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1992 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1993 | /* this will setup the path even if it fails to insert the back ref */ |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1994 | ret = insert_inline_extent_backref(trans, fs_info->extent_root, path, |
| 1995 | bytenr, num_bytes, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1996 | root_objectid, owner, offset, |
| 1997 | refs_to_add, extent_op); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1998 | if ((ret < 0 && ret != -EAGAIN) || (!ret && no_quota)) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1999 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2000 | /* |
| 2001 | * Ok we were able to insert an inline extent and it appears to be a new |
| 2002 | * reference, deal with the qgroup accounting. |
| 2003 | */ |
| 2004 | if (!ret && !no_quota) { |
| 2005 | ASSERT(root->fs_info->quota_enabled); |
| 2006 | leaf = path->nodes[0]; |
| 2007 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 2008 | item = btrfs_item_ptr(leaf, path->slots[0], |
| 2009 | struct btrfs_extent_item); |
| 2010 | if (btrfs_extent_refs(leaf, item) > (u64)refs_to_add) |
| 2011 | type = BTRFS_QGROUP_OPER_ADD_SHARED; |
| 2012 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2013 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2014 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 2015 | bytenr, num_bytes, type, 0); |
| 2016 | goto out; |
| 2017 | } |
| 2018 | |
| 2019 | /* |
| 2020 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2021 | * inline extent ref, so just update the reference count and add a |
| 2022 | * normal backref. |
| 2023 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2024 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2025 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2026 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2027 | refs = btrfs_extent_refs(leaf, item); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2028 | if (refs) |
| 2029 | type = BTRFS_QGROUP_OPER_ADD_SHARED; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2030 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2031 | if (extent_op) |
| 2032 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2033 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2034 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2035 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2036 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2037 | if (!no_quota) { |
| 2038 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 2039 | bytenr, num_bytes, type, 0); |
| 2040 | if (ret) |
| 2041 | goto out; |
| 2042 | } |
| 2043 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 2044 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2045 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2046 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2047 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2048 | path, bytenr, parent, root_objectid, |
| 2049 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2050 | if (ret) |
| 2051 | btrfs_abort_transaction(trans, root, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2052 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2053 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2054 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2055 | } |
| 2056 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2057 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2058 | struct btrfs_root *root, |
| 2059 | struct btrfs_delayed_ref_node *node, |
| 2060 | struct btrfs_delayed_extent_op *extent_op, |
| 2061 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2062 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2063 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2064 | struct btrfs_delayed_data_ref *ref; |
| 2065 | struct btrfs_key ins; |
| 2066 | u64 parent = 0; |
| 2067 | u64 ref_root = 0; |
| 2068 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2069 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2070 | ins.objectid = node->bytenr; |
| 2071 | ins.offset = node->num_bytes; |
| 2072 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2073 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2074 | ref = btrfs_delayed_node_to_data_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2075 | trace_run_delayed_data_ref(node, ref, node->action); |
| 2076 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2077 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2078 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2079 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2080 | |
| 2081 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2082 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2083 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2084 | ret = alloc_reserved_file_extent(trans, root, |
| 2085 | parent, ref_root, flags, |
| 2086 | ref->objectid, ref->offset, |
| 2087 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2088 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2089 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2090 | node->num_bytes, parent, |
| 2091 | ref_root, ref->objectid, |
| 2092 | ref->offset, node->ref_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2093 | node->no_quota, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2094 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2095 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2096 | node->num_bytes, parent, |
| 2097 | ref_root, ref->objectid, |
| 2098 | ref->offset, node->ref_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2099 | extent_op, node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2100 | } else { |
| 2101 | BUG(); |
| 2102 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2103 | return ret; |
| 2104 | } |
| 2105 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2106 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2107 | struct extent_buffer *leaf, |
| 2108 | struct btrfs_extent_item *ei) |
| 2109 | { |
| 2110 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2111 | if (extent_op->update_flags) { |
| 2112 | flags |= extent_op->flags_to_set; |
| 2113 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2114 | } |
| 2115 | |
| 2116 | if (extent_op->update_key) { |
| 2117 | struct btrfs_tree_block_info *bi; |
| 2118 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2119 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2120 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2121 | } |
| 2122 | } |
| 2123 | |
| 2124 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2125 | struct btrfs_root *root, |
| 2126 | struct btrfs_delayed_ref_node *node, |
| 2127 | struct btrfs_delayed_extent_op *extent_op) |
| 2128 | { |
| 2129 | struct btrfs_key key; |
| 2130 | struct btrfs_path *path; |
| 2131 | struct btrfs_extent_item *ei; |
| 2132 | struct extent_buffer *leaf; |
| 2133 | u32 item_size; |
| 2134 | int ret; |
| 2135 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2136 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2137 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2138 | if (trans->aborted) |
| 2139 | return 0; |
| 2140 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2141 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2142 | metadata = 0; |
| 2143 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2144 | path = btrfs_alloc_path(); |
| 2145 | if (!path) |
| 2146 | return -ENOMEM; |
| 2147 | |
| 2148 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2149 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2150 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2151 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2152 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2153 | } else { |
| 2154 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2155 | key.offset = node->num_bytes; |
| 2156 | } |
| 2157 | |
| 2158 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2159 | path->reada = 1; |
| 2160 | path->leave_spinning = 1; |
| 2161 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2162 | path, 0, 1); |
| 2163 | if (ret < 0) { |
| 2164 | err = ret; |
| 2165 | goto out; |
| 2166 | } |
| 2167 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2168 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2169 | if (path->slots[0] > 0) { |
| 2170 | path->slots[0]--; |
| 2171 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2172 | path->slots[0]); |
| 2173 | if (key.objectid == node->bytenr && |
| 2174 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2175 | key.offset == node->num_bytes) |
| 2176 | ret = 0; |
| 2177 | } |
| 2178 | if (ret > 0) { |
| 2179 | btrfs_release_path(path); |
| 2180 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2181 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2182 | key.objectid = node->bytenr; |
| 2183 | key.offset = node->num_bytes; |
| 2184 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2185 | goto again; |
| 2186 | } |
| 2187 | } else { |
| 2188 | err = -EIO; |
| 2189 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2190 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2191 | } |
| 2192 | |
| 2193 | leaf = path->nodes[0]; |
| 2194 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2195 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2196 | if (item_size < sizeof(*ei)) { |
| 2197 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2198 | path, (u64)-1, 0); |
| 2199 | if (ret < 0) { |
| 2200 | err = ret; |
| 2201 | goto out; |
| 2202 | } |
| 2203 | leaf = path->nodes[0]; |
| 2204 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2205 | } |
| 2206 | #endif |
| 2207 | BUG_ON(item_size < sizeof(*ei)); |
| 2208 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2209 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2210 | |
| 2211 | btrfs_mark_buffer_dirty(leaf); |
| 2212 | out: |
| 2213 | btrfs_free_path(path); |
| 2214 | return err; |
| 2215 | } |
| 2216 | |
| 2217 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2218 | struct btrfs_root *root, |
| 2219 | struct btrfs_delayed_ref_node *node, |
| 2220 | struct btrfs_delayed_extent_op *extent_op, |
| 2221 | int insert_reserved) |
| 2222 | { |
| 2223 | int ret = 0; |
| 2224 | struct btrfs_delayed_tree_ref *ref; |
| 2225 | struct btrfs_key ins; |
| 2226 | u64 parent = 0; |
| 2227 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2228 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2229 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2230 | |
| 2231 | ref = btrfs_delayed_node_to_tree_ref(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2232 | trace_run_delayed_tree_ref(node, ref, node->action); |
| 2233 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2234 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2235 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2236 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2237 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2238 | ins.objectid = node->bytenr; |
| 2239 | if (skinny_metadata) { |
| 2240 | ins.offset = ref->level; |
| 2241 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2242 | } else { |
| 2243 | ins.offset = node->num_bytes; |
| 2244 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2245 | } |
| 2246 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2247 | BUG_ON(node->ref_mod != 1); |
| 2248 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2249 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2250 | ret = alloc_reserved_tree_block(trans, root, |
| 2251 | parent, ref_root, |
| 2252 | extent_op->flags_to_set, |
| 2253 | &extent_op->key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2254 | ref->level, &ins, |
| 2255 | node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2256 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
| 2257 | ret = __btrfs_inc_extent_ref(trans, root, node->bytenr, |
| 2258 | node->num_bytes, parent, ref_root, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2259 | ref->level, 0, 1, node->no_quota, |
| 2260 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2261 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
| 2262 | ret = __btrfs_free_extent(trans, root, node->bytenr, |
| 2263 | node->num_bytes, parent, ref_root, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2264 | ref->level, 0, 1, extent_op, |
| 2265 | node->no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2266 | } else { |
| 2267 | BUG(); |
| 2268 | } |
| 2269 | return ret; |
| 2270 | } |
| 2271 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2272 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2273 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2274 | struct btrfs_root *root, |
| 2275 | struct btrfs_delayed_ref_node *node, |
| 2276 | struct btrfs_delayed_extent_op *extent_op, |
| 2277 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2278 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2279 | int ret = 0; |
| 2280 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2281 | if (trans->aborted) { |
| 2282 | if (insert_reserved) |
| 2283 | btrfs_pin_extent(root, node->bytenr, |
| 2284 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2285 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2286 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2287 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2288 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2289 | struct btrfs_delayed_ref_head *head; |
| 2290 | /* |
| 2291 | * we've hit the end of the chain and we were supposed |
| 2292 | * to insert this extent into the tree. But, it got |
| 2293 | * deleted before we ever needed to insert it, so all |
| 2294 | * we have to do is clean up the accounting |
| 2295 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2296 | BUG_ON(extent_op); |
| 2297 | head = btrfs_delayed_node_to_head(node); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2298 | trace_run_delayed_ref_head(node, head, node->action); |
| 2299 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2300 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2301 | btrfs_pin_extent(root, node->bytenr, |
| 2302 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2303 | if (head->is_data) { |
| 2304 | ret = btrfs_del_csums(trans, root, |
| 2305 | node->bytenr, |
| 2306 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2307 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2308 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2309 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2310 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2311 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2312 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2313 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2314 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2315 | insert_reserved); |
| 2316 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2317 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2318 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2319 | insert_reserved); |
| 2320 | else |
| 2321 | BUG(); |
| 2322 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2323 | } |
| 2324 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2325 | static noinline struct btrfs_delayed_ref_node * |
| 2326 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2327 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2328 | struct rb_node *node; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2329 | struct btrfs_delayed_ref_node *ref, *last = NULL;; |
| 2330 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2331 | /* |
| 2332 | * select delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2333 | * this prevents ref count from going down to zero when |
| 2334 | * there still are pending delayed ref. |
| 2335 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2336 | node = rb_first(&head->ref_root); |
| 2337 | while (node) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2338 | ref = rb_entry(node, struct btrfs_delayed_ref_node, |
| 2339 | rb_node); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2340 | if (ref->action == BTRFS_ADD_DELAYED_REF) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2341 | return ref; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2342 | else if (last == NULL) |
| 2343 | last = ref; |
| 2344 | node = rb_next(node); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2345 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2346 | return last; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2347 | } |
| 2348 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2349 | /* |
| 2350 | * Returns 0 on success or if called with an already aborted transaction. |
| 2351 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2352 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2353 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2354 | struct btrfs_root *root, |
| 2355 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2356 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2357 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2358 | struct btrfs_delayed_ref_node *ref; |
| 2359 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2360 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2361 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2362 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2363 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2364 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2365 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2366 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2367 | |
| 2368 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2369 | while (1) { |
| 2370 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2371 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2372 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2373 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2374 | spin_lock(&delayed_refs->lock); |
| 2375 | locked_ref = btrfs_select_ref_head(trans); |
| 2376 | if (!locked_ref) { |
| 2377 | spin_unlock(&delayed_refs->lock); |
| 2378 | break; |
| 2379 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2380 | |
| 2381 | /* grab the lock that says we are going to process |
| 2382 | * all the refs for this head */ |
| 2383 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2384 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2385 | /* |
| 2386 | * we may have dropped the spin lock to get the head |
| 2387 | * mutex lock, and that might have given someone else |
| 2388 | * time to free the head. If that's true, it has been |
| 2389 | * removed from our list and we can move on. |
| 2390 | */ |
| 2391 | if (ret == -EAGAIN) { |
| 2392 | locked_ref = NULL; |
| 2393 | count++; |
| 2394 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2395 | } |
| 2396 | } |
| 2397 | |
| 2398 | /* |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2399 | * We need to try and merge add/drops of the same ref since we |
| 2400 | * can run into issues with relocate dropping the implicit ref |
| 2401 | * and then it being added back again before the drop can |
| 2402 | * finish. If we merged anything we need to re-loop so we can |
| 2403 | * get a good ref. |
| 2404 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2405 | spin_lock(&locked_ref->lock); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2406 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2407 | locked_ref); |
| 2408 | |
| 2409 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2410 | * locked_ref is the head node, so we have to go one |
| 2411 | * node back for any delayed ref updates |
| 2412 | */ |
| 2413 | ref = select_delayed_ref(locked_ref); |
| 2414 | |
| 2415 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2416 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2417 | spin_unlock(&locked_ref->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2418 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2419 | spin_lock(&delayed_refs->lock); |
| 2420 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2421 | delayed_refs->num_heads_ready++; |
| 2422 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2423 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2424 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2425 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2426 | continue; |
| 2427 | } |
| 2428 | |
| 2429 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2430 | * record the must insert reserved flag before we |
| 2431 | * drop the spin lock. |
| 2432 | */ |
| 2433 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2434 | locked_ref->must_insert_reserved = 0; |
| 2435 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2436 | extent_op = locked_ref->extent_op; |
| 2437 | locked_ref->extent_op = NULL; |
| 2438 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2439 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2440 | |
| 2441 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2442 | /* All delayed refs have been processed, Go ahead |
| 2443 | * and send the head node to run_one_delayed_ref, |
| 2444 | * so that any accounting fixes can happen |
| 2445 | */ |
| 2446 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2447 | |
| 2448 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2449 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2450 | extent_op = NULL; |
| 2451 | } |
| 2452 | |
| 2453 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2454 | spin_unlock(&locked_ref->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2455 | ret = run_delayed_extent_op(trans, root, |
| 2456 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2457 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2458 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2459 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2460 | /* |
| 2461 | * Need to reset must_insert_reserved if |
| 2462 | * there was an error so the abort stuff |
| 2463 | * can cleanup the reserved space |
| 2464 | * properly. |
| 2465 | */ |
| 2466 | if (must_insert_reserved) |
| 2467 | locked_ref->must_insert_reserved = 1; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2468 | locked_ref->processing = 0; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2469 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2470 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2471 | return ret; |
| 2472 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2473 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2474 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2475 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2476 | /* |
| 2477 | * Need to drop our head ref lock and re-aqcuire the |
| 2478 | * delayed ref lock and then re-check to make sure |
| 2479 | * nobody got added. |
| 2480 | */ |
| 2481 | spin_unlock(&locked_ref->lock); |
| 2482 | spin_lock(&delayed_refs->lock); |
| 2483 | spin_lock(&locked_ref->lock); |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2484 | if (rb_first(&locked_ref->ref_root) || |
| 2485 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2486 | spin_unlock(&locked_ref->lock); |
| 2487 | spin_unlock(&delayed_refs->lock); |
| 2488 | continue; |
| 2489 | } |
| 2490 | ref->in_tree = 0; |
| 2491 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2492 | rb_erase(&locked_ref->href_node, |
| 2493 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2494 | spin_unlock(&delayed_refs->lock); |
| 2495 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2496 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2497 | ref->in_tree = 0; |
| 2498 | rb_erase(&ref->rb_node, &locked_ref->ref_root); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2499 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2500 | atomic_dec(&delayed_refs->num_entries); |
| 2501 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2502 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2503 | /* |
| 2504 | * when we play the delayed ref, also correct the |
| 2505 | * ref_mod on head |
| 2506 | */ |
| 2507 | switch (ref->action) { |
| 2508 | case BTRFS_ADD_DELAYED_REF: |
| 2509 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2510 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2511 | break; |
| 2512 | case BTRFS_DROP_DELAYED_REF: |
| 2513 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2514 | break; |
| 2515 | default: |
| 2516 | WARN_ON(1); |
| 2517 | } |
| 2518 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2519 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2520 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2521 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2522 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2523 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2524 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2525 | if (ret) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2526 | locked_ref->processing = 0; |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2527 | btrfs_delayed_ref_unlock(locked_ref); |
| 2528 | btrfs_put_delayed_ref(ref); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2529 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2530 | return ret; |
| 2531 | } |
| 2532 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2533 | /* |
| 2534 | * If this node is a head, that means all the refs in this head |
| 2535 | * have been dealt with, and we will pick the next head to deal |
| 2536 | * with, so we must unlock the head and drop it from the cluster |
| 2537 | * list before we release it. |
| 2538 | */ |
| 2539 | if (btrfs_delayed_ref_is_head(ref)) { |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2540 | btrfs_delayed_ref_unlock(locked_ref); |
| 2541 | locked_ref = NULL; |
| 2542 | } |
| 2543 | btrfs_put_delayed_ref(ref); |
| 2544 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2545 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2546 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2547 | |
| 2548 | /* |
| 2549 | * We don't want to include ref heads since we can have empty ref heads |
| 2550 | * and those will drastically skew our runtime down since we just do |
| 2551 | * accounting, no actual extent tree updates. |
| 2552 | */ |
| 2553 | if (actual_count > 0) { |
| 2554 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2555 | u64 avg; |
| 2556 | |
| 2557 | /* |
| 2558 | * We weigh the current average higher than our current runtime |
| 2559 | * to avoid large swings in the average. |
| 2560 | */ |
| 2561 | spin_lock(&delayed_refs->lock); |
| 2562 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
| 2563 | avg = div64_u64(avg, 4); |
| 2564 | fs_info->avg_delayed_ref_runtime = avg; |
| 2565 | spin_unlock(&delayed_refs->lock); |
| 2566 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2567 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2568 | } |
| 2569 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2570 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2571 | /* |
| 2572 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2573 | * correlates in most cases to the order added. To expose dependencies on this |
| 2574 | * order, we start to process the tree in the middle instead of the beginning |
| 2575 | */ |
| 2576 | static u64 find_middle(struct rb_root *root) |
| 2577 | { |
| 2578 | struct rb_node *n = root->rb_node; |
| 2579 | struct btrfs_delayed_ref_node *entry; |
| 2580 | int alt = 1; |
| 2581 | u64 middle; |
| 2582 | u64 first = 0, last = 0; |
| 2583 | |
| 2584 | n = rb_first(root); |
| 2585 | if (n) { |
| 2586 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2587 | first = entry->bytenr; |
| 2588 | } |
| 2589 | n = rb_last(root); |
| 2590 | if (n) { |
| 2591 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2592 | last = entry->bytenr; |
| 2593 | } |
| 2594 | n = root->rb_node; |
| 2595 | |
| 2596 | while (n) { |
| 2597 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2598 | WARN_ON(!entry->in_tree); |
| 2599 | |
| 2600 | middle = entry->bytenr; |
| 2601 | |
| 2602 | if (alt) |
| 2603 | n = n->rb_left; |
| 2604 | else |
| 2605 | n = n->rb_right; |
| 2606 | |
| 2607 | alt = 1 - alt; |
| 2608 | } |
| 2609 | return middle; |
| 2610 | } |
| 2611 | #endif |
| 2612 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2613 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2614 | { |
| 2615 | u64 num_bytes; |
| 2616 | |
| 2617 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2618 | sizeof(struct btrfs_extent_inline_ref)); |
| 2619 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2620 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2621 | |
| 2622 | /* |
| 2623 | * We don't ever fill up leaves all the way so multiply by 2 just to be |
| 2624 | * closer to what we're really going to want to ouse. |
| 2625 | */ |
| 2626 | return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root)); |
| 2627 | } |
| 2628 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2629 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2630 | struct btrfs_root *root) |
| 2631 | { |
| 2632 | struct btrfs_block_rsv *global_rsv; |
| 2633 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
| 2634 | u64 num_bytes; |
| 2635 | int ret = 0; |
| 2636 | |
| 2637 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 2638 | num_heads = heads_to_leaves(root, num_heads); |
| 2639 | if (num_heads > 1) |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 2640 | num_bytes += (num_heads - 1) * root->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2641 | num_bytes <<= 1; |
| 2642 | global_rsv = &root->fs_info->global_block_rsv; |
| 2643 | |
| 2644 | /* |
| 2645 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2646 | * wiggle room since running delayed refs can create more delayed refs. |
| 2647 | */ |
| 2648 | if (global_rsv->space_info->full) |
| 2649 | num_bytes <<= 1; |
| 2650 | |
| 2651 | spin_lock(&global_rsv->lock); |
| 2652 | if (global_rsv->reserved <= num_bytes) |
| 2653 | ret = 1; |
| 2654 | spin_unlock(&global_rsv->lock); |
| 2655 | return ret; |
| 2656 | } |
| 2657 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2658 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2659 | struct btrfs_root *root) |
| 2660 | { |
| 2661 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2662 | u64 num_entries = |
| 2663 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2664 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2665 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2666 | |
| 2667 | smp_mb(); |
| 2668 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2669 | val = num_entries * avg_runtime; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2670 | if (num_entries * avg_runtime >= NSEC_PER_SEC) |
| 2671 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2672 | if (val >= NSEC_PER_SEC / 2) |
| 2673 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2674 | |
| 2675 | return btrfs_check_space_for_delayed_refs(trans, root); |
| 2676 | } |
| 2677 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2678 | struct async_delayed_refs { |
| 2679 | struct btrfs_root *root; |
| 2680 | int count; |
| 2681 | int error; |
| 2682 | int sync; |
| 2683 | struct completion wait; |
| 2684 | struct btrfs_work work; |
| 2685 | }; |
| 2686 | |
| 2687 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2688 | { |
| 2689 | struct async_delayed_refs *async; |
| 2690 | struct btrfs_trans_handle *trans; |
| 2691 | int ret; |
| 2692 | |
| 2693 | async = container_of(work, struct async_delayed_refs, work); |
| 2694 | |
| 2695 | trans = btrfs_join_transaction(async->root); |
| 2696 | if (IS_ERR(trans)) { |
| 2697 | async->error = PTR_ERR(trans); |
| 2698 | goto done; |
| 2699 | } |
| 2700 | |
| 2701 | /* |
| 2702 | * trans->sync means that when we call end_transaciton, we won't |
| 2703 | * wait on delayed refs |
| 2704 | */ |
| 2705 | trans->sync = true; |
| 2706 | ret = btrfs_run_delayed_refs(trans, async->root, async->count); |
| 2707 | if (ret) |
| 2708 | async->error = ret; |
| 2709 | |
| 2710 | ret = btrfs_end_transaction(trans, async->root); |
| 2711 | if (ret && !async->error) |
| 2712 | async->error = ret; |
| 2713 | done: |
| 2714 | if (async->sync) |
| 2715 | complete(&async->wait); |
| 2716 | else |
| 2717 | kfree(async); |
| 2718 | } |
| 2719 | |
| 2720 | int btrfs_async_run_delayed_refs(struct btrfs_root *root, |
| 2721 | unsigned long count, int wait) |
| 2722 | { |
| 2723 | struct async_delayed_refs *async; |
| 2724 | int ret; |
| 2725 | |
| 2726 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2727 | if (!async) |
| 2728 | return -ENOMEM; |
| 2729 | |
| 2730 | async->root = root->fs_info->tree_root; |
| 2731 | async->count = count; |
| 2732 | async->error = 0; |
| 2733 | if (wait) |
| 2734 | async->sync = 1; |
| 2735 | else |
| 2736 | async->sync = 0; |
| 2737 | init_completion(&async->wait); |
| 2738 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2739 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2740 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2741 | |
| 2742 | btrfs_queue_work(root->fs_info->extent_workers, &async->work); |
| 2743 | |
| 2744 | if (wait) { |
| 2745 | wait_for_completion(&async->wait); |
| 2746 | ret = async->error; |
| 2747 | kfree(async); |
| 2748 | return ret; |
| 2749 | } |
| 2750 | return 0; |
| 2751 | } |
| 2752 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2753 | /* |
| 2754 | * this starts processing the delayed reference count updates and |
| 2755 | * extent insertions we have queued up so far. count can be |
| 2756 | * 0, which means to process everything in the tree at the start |
| 2757 | * of the run (but not newly added entries), or it can be some target |
| 2758 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2759 | * |
| 2760 | * Returns 0 on success or if called with an aborted transaction |
| 2761 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2762 | */ |
| 2763 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2764 | struct btrfs_root *root, unsigned long count) |
| 2765 | { |
| 2766 | struct rb_node *node; |
| 2767 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2768 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2769 | int ret; |
| 2770 | int run_all = count == (unsigned long)-1; |
| 2771 | int run_most = 0; |
| 2772 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2773 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2774 | if (trans->aborted) |
| 2775 | return 0; |
| 2776 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2777 | if (root == root->fs_info->extent_root) |
| 2778 | root = root->fs_info->tree_root; |
| 2779 | |
| 2780 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2781 | if (count == 0) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2782 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2783 | run_most = 1; |
| 2784 | } |
| 2785 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2786 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2787 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2788 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2789 | #endif |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2790 | ret = __btrfs_run_delayed_refs(trans, root, count); |
| 2791 | if (ret < 0) { |
| 2792 | btrfs_abort_transaction(trans, root, ret); |
| 2793 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2794 | } |
| 2795 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2796 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2797 | if (!list_empty(&trans->new_bgs)) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2798 | btrfs_create_pending_block_groups(trans, root); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2799 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2800 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2801 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2802 | if (!node) { |
| 2803 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2804 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2805 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2806 | count = (unsigned long)-1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2807 | |
| 2808 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2809 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2810 | href_node); |
| 2811 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2812 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2813 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2814 | ref = &head->node; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2815 | atomic_inc(&ref->refs); |
| 2816 | |
| 2817 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2818 | /* |
| 2819 | * Mutex was contended, block until it's |
| 2820 | * released and try again |
| 2821 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2822 | mutex_lock(&head->mutex); |
| 2823 | mutex_unlock(&head->mutex); |
| 2824 | |
| 2825 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2826 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2827 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2828 | } else { |
| 2829 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2830 | } |
| 2831 | node = rb_next(node); |
| 2832 | } |
| 2833 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2834 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2835 | goto again; |
| 2836 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2837 | out: |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2838 | ret = btrfs_delayed_qgroup_accounting(trans, root->fs_info); |
| 2839 | if (ret) |
| 2840 | return ret; |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 2841 | assert_qgroups_uptodate(trans); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2842 | return 0; |
| 2843 | } |
| 2844 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2845 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 2846 | struct btrfs_root *root, |
| 2847 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2848 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2849 | { |
| 2850 | struct btrfs_delayed_extent_op *extent_op; |
| 2851 | int ret; |
| 2852 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2853 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2854 | if (!extent_op) |
| 2855 | return -ENOMEM; |
| 2856 | |
| 2857 | extent_op->flags_to_set = flags; |
| 2858 | extent_op->update_flags = 1; |
| 2859 | extent_op->update_key = 0; |
| 2860 | extent_op->is_data = is_data ? 1 : 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2861 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2862 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2863 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 2864 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2865 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2866 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2867 | return ret; |
| 2868 | } |
| 2869 | |
| 2870 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 2871 | struct btrfs_root *root, |
| 2872 | struct btrfs_path *path, |
| 2873 | u64 objectid, u64 offset, u64 bytenr) |
| 2874 | { |
| 2875 | struct btrfs_delayed_ref_head *head; |
| 2876 | struct btrfs_delayed_ref_node *ref; |
| 2877 | struct btrfs_delayed_data_ref *data_ref; |
| 2878 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2879 | struct rb_node *node; |
| 2880 | int ret = 0; |
| 2881 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2882 | delayed_refs = &trans->transaction->delayed_refs; |
| 2883 | spin_lock(&delayed_refs->lock); |
| 2884 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2885 | if (!head) { |
| 2886 | spin_unlock(&delayed_refs->lock); |
| 2887 | return 0; |
| 2888 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2889 | |
| 2890 | if (!mutex_trylock(&head->mutex)) { |
| 2891 | atomic_inc(&head->node.refs); |
| 2892 | spin_unlock(&delayed_refs->lock); |
| 2893 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2894 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2895 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2896 | /* |
| 2897 | * Mutex was contended, block until it's released and let |
| 2898 | * caller try again |
| 2899 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2900 | mutex_lock(&head->mutex); |
| 2901 | mutex_unlock(&head->mutex); |
| 2902 | btrfs_put_delayed_ref(&head->node); |
| 2903 | return -EAGAIN; |
| 2904 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2905 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2906 | |
| 2907 | spin_lock(&head->lock); |
| 2908 | node = rb_first(&head->ref_root); |
| 2909 | while (node) { |
| 2910 | ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node); |
| 2911 | node = rb_next(node); |
| 2912 | |
| 2913 | /* If it's a shared ref we know a cross reference exists */ |
| 2914 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 2915 | ret = 1; |
| 2916 | break; |
| 2917 | } |
| 2918 | |
| 2919 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 2920 | |
| 2921 | /* |
| 2922 | * If our ref doesn't match the one we're currently looking at |
| 2923 | * then we have a cross reference. |
| 2924 | */ |
| 2925 | if (data_ref->root != root->root_key.objectid || |
| 2926 | data_ref->objectid != objectid || |
| 2927 | data_ref->offset != offset) { |
| 2928 | ret = 1; |
| 2929 | break; |
| 2930 | } |
| 2931 | } |
| 2932 | spin_unlock(&head->lock); |
| 2933 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2934 | return ret; |
| 2935 | } |
| 2936 | |
| 2937 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 2938 | struct btrfs_root *root, |
| 2939 | struct btrfs_path *path, |
| 2940 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2941 | { |
| 2942 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2943 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2944 | struct btrfs_extent_data_ref *ref; |
| 2945 | struct btrfs_extent_inline_ref *iref; |
| 2946 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2947 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2948 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2949 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2950 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2951 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2952 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2953 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2954 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2955 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 2956 | if (ret < 0) |
| 2957 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2958 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 2959 | |
| 2960 | ret = -ENOENT; |
| 2961 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2962 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2963 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2964 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 2965 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2966 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2967 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2968 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2969 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2970 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2971 | ret = 1; |
| 2972 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2973 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2974 | if (item_size < sizeof(*ei)) { |
| 2975 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 2976 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 2977 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2978 | #endif |
| 2979 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2980 | |
| 2981 | if (item_size != sizeof(*ei) + |
| 2982 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 2983 | goto out; |
| 2984 | |
| 2985 | if (btrfs_extent_generation(leaf, ei) <= |
| 2986 | btrfs_root_last_snapshot(&root->root_item)) |
| 2987 | goto out; |
| 2988 | |
| 2989 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 2990 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 2991 | BTRFS_EXTENT_DATA_REF_KEY) |
| 2992 | goto out; |
| 2993 | |
| 2994 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 2995 | if (btrfs_extent_refs(leaf, ei) != |
| 2996 | btrfs_extent_data_ref_count(leaf, ref) || |
| 2997 | btrfs_extent_data_ref_root(leaf, ref) != |
| 2998 | root->root_key.objectid || |
| 2999 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3000 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3001 | goto out; |
| 3002 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3003 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3004 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3005 | return ret; |
| 3006 | } |
| 3007 | |
| 3008 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 3009 | struct btrfs_root *root, |
| 3010 | u64 objectid, u64 offset, u64 bytenr) |
| 3011 | { |
| 3012 | struct btrfs_path *path; |
| 3013 | int ret; |
| 3014 | int ret2; |
| 3015 | |
| 3016 | path = btrfs_alloc_path(); |
| 3017 | if (!path) |
| 3018 | return -ENOENT; |
| 3019 | |
| 3020 | do { |
| 3021 | ret = check_committed_ref(trans, root, path, objectid, |
| 3022 | offset, bytenr); |
| 3023 | if (ret && ret != -ENOENT) |
| 3024 | goto out; |
| 3025 | |
| 3026 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3027 | offset, bytenr); |
| 3028 | } while (ret2 == -EAGAIN); |
| 3029 | |
| 3030 | if (ret2 && ret2 != -ENOENT) { |
| 3031 | ret = ret2; |
| 3032 | goto out; |
| 3033 | } |
| 3034 | |
| 3035 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3036 | ret = 0; |
| 3037 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3038 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3039 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3040 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3041 | return ret; |
| 3042 | } |
| 3043 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3044 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3045 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3046 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3047 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3048 | { |
| 3049 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3050 | u64 num_bytes; |
| 3051 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3052 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3053 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3054 | struct btrfs_key key; |
| 3055 | struct btrfs_file_extent_item *fi; |
| 3056 | int i; |
| 3057 | int level; |
| 3058 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3059 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3060 | u64, u64, u64, u64, u64, u64, int); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3061 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3062 | |
| 3063 | if (btrfs_test_is_dummy_root(root)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3064 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3065 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3066 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3067 | nritems = btrfs_header_nritems(buf); |
| 3068 | level = btrfs_header_level(buf); |
| 3069 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3070 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3071 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3072 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3073 | if (inc) |
| 3074 | process_func = btrfs_inc_extent_ref; |
| 3075 | else |
| 3076 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3077 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3078 | if (full_backref) |
| 3079 | parent = buf->start; |
| 3080 | else |
| 3081 | parent = 0; |
| 3082 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3083 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3084 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3085 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3086 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3087 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3088 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3089 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3090 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3091 | BTRFS_FILE_EXTENT_INLINE) |
| 3092 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3093 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3094 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3095 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3096 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3097 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3098 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3099 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3100 | parent, ref_root, key.objectid, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3101 | key.offset, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3102 | if (ret) |
| 3103 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3104 | } else { |
| 3105 | bytenr = btrfs_node_blockptr(buf, i); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 3106 | num_bytes = root->nodesize; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3107 | ret = process_func(trans, root, bytenr, num_bytes, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3108 | parent, ref_root, level - 1, 0, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3109 | 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3110 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3111 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3112 | } |
| 3113 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3114 | return 0; |
| 3115 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3116 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3117 | } |
| 3118 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3119 | int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3120 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3121 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3122 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3123 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3124 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3125 | int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3126 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3127 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3128 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3129 | } |
| 3130 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3131 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3132 | struct btrfs_root *root, |
| 3133 | struct btrfs_path *path, |
| 3134 | struct btrfs_block_group_cache *cache) |
| 3135 | { |
| 3136 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3137 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3138 | unsigned long bi; |
| 3139 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3140 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3141 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3142 | if (ret < 0) |
| 3143 | goto fail; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3144 | BUG_ON(ret); /* Corruption */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3145 | |
| 3146 | leaf = path->nodes[0]; |
| 3147 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3148 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3149 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3150 | btrfs_release_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3151 | fail: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3152 | if (ret) { |
| 3153 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3154 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3155 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3156 | return 0; |
| 3157 | |
| 3158 | } |
| 3159 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3160 | static struct btrfs_block_group_cache * |
| 3161 | next_block_group(struct btrfs_root *root, |
| 3162 | struct btrfs_block_group_cache *cache) |
| 3163 | { |
| 3164 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame^] | 3165 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3166 | spin_lock(&root->fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame^] | 3167 | |
| 3168 | /* If our block group was removed, we need a full search. */ |
| 3169 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3170 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3171 | |
| 3172 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3173 | btrfs_put_block_group(cache); |
| 3174 | cache = btrfs_lookup_first_block_group(root->fs_info, |
| 3175 | next_bytenr); |
| 3176 | return cache; |
| 3177 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3178 | node = rb_next(&cache->cache_node); |
| 3179 | btrfs_put_block_group(cache); |
| 3180 | if (node) { |
| 3181 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3182 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3183 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3184 | } else |
| 3185 | cache = NULL; |
| 3186 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3187 | return cache; |
| 3188 | } |
| 3189 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3190 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3191 | struct btrfs_trans_handle *trans, |
| 3192 | struct btrfs_path *path) |
| 3193 | { |
| 3194 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3195 | struct inode *inode = NULL; |
| 3196 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3197 | int dcs = BTRFS_DC_ERROR; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3198 | int num_pages = 0; |
| 3199 | int retries = 0; |
| 3200 | int ret = 0; |
| 3201 | |
| 3202 | /* |
| 3203 | * If this block group is smaller than 100 megs don't bother caching the |
| 3204 | * block group. |
| 3205 | */ |
| 3206 | if (block_group->key.offset < (100 * 1024 * 1024)) { |
| 3207 | spin_lock(&block_group->lock); |
| 3208 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3209 | spin_unlock(&block_group->lock); |
| 3210 | return 0; |
| 3211 | } |
| 3212 | |
| 3213 | again: |
| 3214 | inode = lookup_free_space_inode(root, block_group, path); |
| 3215 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3216 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3217 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3218 | goto out; |
| 3219 | } |
| 3220 | |
| 3221 | if (IS_ERR(inode)) { |
| 3222 | BUG_ON(retries); |
| 3223 | retries++; |
| 3224 | |
| 3225 | if (block_group->ro) |
| 3226 | goto out_free; |
| 3227 | |
| 3228 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3229 | if (ret) |
| 3230 | goto out_free; |
| 3231 | goto again; |
| 3232 | } |
| 3233 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3234 | /* We've already setup this transaction, go ahead and exit */ |
| 3235 | if (block_group->cache_generation == trans->transid && |
| 3236 | i_size_read(inode)) { |
| 3237 | dcs = BTRFS_DC_SETUP; |
| 3238 | goto out_put; |
| 3239 | } |
| 3240 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3241 | /* |
| 3242 | * We want to set the generation to 0, that way if anything goes wrong |
| 3243 | * from here on out we know not to trust this cache when we load up next |
| 3244 | * time. |
| 3245 | */ |
| 3246 | BTRFS_I(inode)->generation = 0; |
| 3247 | ret = btrfs_update_inode(trans, root, inode); |
| 3248 | WARN_ON(ret); |
| 3249 | |
| 3250 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3251 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3252 | &root->fs_info->global_block_rsv); |
| 3253 | if (ret) |
| 3254 | goto out_put; |
| 3255 | |
Filipe David Borba Manana | 7451432 | 2013-09-20 14:46:51 +0100 | [diff] [blame] | 3256 | ret = btrfs_truncate_free_space_cache(root, trans, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3257 | if (ret) |
| 3258 | goto out_put; |
| 3259 | } |
| 3260 | |
| 3261 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3262 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 3263 | !btrfs_test_opt(root, SPACE_CACHE) || |
| 3264 | block_group->delalloc_bytes) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3265 | /* |
| 3266 | * don't bother trying to write stuff out _if_ |
| 3267 | * a) we're not cached, |
| 3268 | * b) we're with nospace_cache mount option. |
| 3269 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3270 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3271 | spin_unlock(&block_group->lock); |
| 3272 | goto out_put; |
| 3273 | } |
| 3274 | spin_unlock(&block_group->lock); |
| 3275 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3276 | /* |
| 3277 | * Try to preallocate enough space based on how big the block group is. |
| 3278 | * Keep in mind this has to include any pinned space which could end up |
| 3279 | * taking up quite a bit since it's not folded into the other space |
| 3280 | * cache. |
| 3281 | */ |
| 3282 | num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3283 | if (!num_pages) |
| 3284 | num_pages = 1; |
| 3285 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3286 | num_pages *= 16; |
| 3287 | num_pages *= PAGE_CACHE_SIZE; |
| 3288 | |
| 3289 | ret = btrfs_check_data_free_space(inode, num_pages); |
| 3290 | if (ret) |
| 3291 | goto out_put; |
| 3292 | |
| 3293 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3294 | num_pages, num_pages, |
| 3295 | &alloc_hint); |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3296 | if (!ret) |
| 3297 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3298 | btrfs_free_reserved_data_space(inode, num_pages); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3299 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3300 | out_put: |
| 3301 | iput(inode); |
| 3302 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3303 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3304 | out: |
| 3305 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3306 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3307 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3308 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3309 | spin_unlock(&block_group->lock); |
| 3310 | |
| 3311 | return ret; |
| 3312 | } |
| 3313 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3314 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3315 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3316 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3317 | struct btrfs_block_group_cache *cache; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3318 | int err = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3319 | struct btrfs_path *path; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3320 | u64 last = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3321 | |
| 3322 | path = btrfs_alloc_path(); |
| 3323 | if (!path) |
| 3324 | return -ENOMEM; |
| 3325 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3326 | again: |
| 3327 | while (1) { |
| 3328 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3329 | while (cache) { |
| 3330 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3331 | break; |
| 3332 | cache = next_block_group(root, cache); |
| 3333 | } |
| 3334 | if (!cache) { |
| 3335 | if (last == 0) |
| 3336 | break; |
| 3337 | last = 0; |
| 3338 | continue; |
| 3339 | } |
| 3340 | err = cache_save_setup(cache, trans, path); |
| 3341 | last = cache->key.objectid + cache->key.offset; |
| 3342 | btrfs_put_block_group(cache); |
| 3343 | } |
| 3344 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3345 | while (1) { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3346 | if (last == 0) { |
| 3347 | err = btrfs_run_delayed_refs(trans, root, |
| 3348 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3349 | if (err) /* File system offline */ |
| 3350 | goto out; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3351 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3352 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3353 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3354 | while (cache) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3355 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) { |
| 3356 | btrfs_put_block_group(cache); |
| 3357 | goto again; |
| 3358 | } |
| 3359 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3360 | if (cache->dirty) |
| 3361 | break; |
| 3362 | cache = next_block_group(root, cache); |
| 3363 | } |
| 3364 | if (!cache) { |
| 3365 | if (last == 0) |
| 3366 | break; |
| 3367 | last = 0; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3368 | continue; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3369 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3370 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3371 | if (cache->disk_cache_state == BTRFS_DC_SETUP) |
| 3372 | cache->disk_cache_state = BTRFS_DC_NEED_WRITE; |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3373 | cache->dirty = 0; |
| 3374 | last = cache->key.objectid + cache->key.offset; |
| 3375 | |
| 3376 | err = write_one_cache_group(trans, root, path, cache); |
Filipe David Borba Manana | e84cc14 | 2013-09-09 19:49:43 +0100 | [diff] [blame] | 3377 | btrfs_put_block_group(cache); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3378 | if (err) /* File system offline */ |
| 3379 | goto out; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3380 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3381 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3382 | while (1) { |
| 3383 | /* |
| 3384 | * I don't think this is needed since we're just marking our |
| 3385 | * preallocated extent as written, but just in case it can't |
| 3386 | * hurt. |
| 3387 | */ |
| 3388 | if (last == 0) { |
| 3389 | err = btrfs_run_delayed_refs(trans, root, |
| 3390 | (unsigned long)-1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3391 | if (err) /* File system offline */ |
| 3392 | goto out; |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3393 | } |
| 3394 | |
| 3395 | cache = btrfs_lookup_first_block_group(root->fs_info, last); |
| 3396 | while (cache) { |
| 3397 | /* |
| 3398 | * Really this shouldn't happen, but it could if we |
| 3399 | * couldn't write the entire preallocated extent and |
| 3400 | * splitting the extent resulted in a new block. |
| 3401 | */ |
| 3402 | if (cache->dirty) { |
| 3403 | btrfs_put_block_group(cache); |
| 3404 | goto again; |
| 3405 | } |
| 3406 | if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
| 3407 | break; |
| 3408 | cache = next_block_group(root, cache); |
| 3409 | } |
| 3410 | if (!cache) { |
| 3411 | if (last == 0) |
| 3412 | break; |
| 3413 | last = 0; |
| 3414 | continue; |
| 3415 | } |
| 3416 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3417 | err = btrfs_write_out_cache(root, trans, cache, path); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3418 | |
| 3419 | /* |
| 3420 | * If we didn't have an error then the cache state is still |
| 3421 | * NEED_WRITE, so we can set it to WRITTEN. |
| 3422 | */ |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3423 | if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE) |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3424 | cache->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3425 | last = cache->key.objectid + cache->key.offset; |
| 3426 | btrfs_put_block_group(cache); |
| 3427 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3428 | out: |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 3429 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3430 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3431 | return err; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3432 | } |
| 3433 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3434 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3435 | { |
| 3436 | struct btrfs_block_group_cache *block_group; |
| 3437 | int readonly = 0; |
| 3438 | |
| 3439 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3440 | if (!block_group || block_group->ro) |
| 3441 | readonly = 1; |
| 3442 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3443 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3444 | return readonly; |
| 3445 | } |
| 3446 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3447 | static const char *alloc_name(u64 flags) |
| 3448 | { |
| 3449 | switch (flags) { |
| 3450 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3451 | return "mixed"; |
| 3452 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3453 | return "metadata"; |
| 3454 | case BTRFS_BLOCK_GROUP_DATA: |
| 3455 | return "data"; |
| 3456 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3457 | return "system"; |
| 3458 | default: |
| 3459 | WARN_ON(1); |
| 3460 | return "invalid-combination"; |
| 3461 | }; |
| 3462 | } |
| 3463 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3464 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3465 | u64 total_bytes, u64 bytes_used, |
| 3466 | struct btrfs_space_info **space_info) |
| 3467 | { |
| 3468 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3469 | int i; |
| 3470 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3471 | int ret; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3472 | |
| 3473 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3474 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3475 | factor = 2; |
| 3476 | else |
| 3477 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3478 | |
| 3479 | found = __find_space_info(info, flags); |
| 3480 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3481 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3482 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3483 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3484 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3485 | found->disk_used += bytes_used * factor; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 3486 | found->full = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3487 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3488 | *space_info = found; |
| 3489 | return 0; |
| 3490 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3491 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3492 | if (!found) |
| 3493 | return -ENOMEM; |
| 3494 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 3495 | ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3496 | if (ret) { |
| 3497 | kfree(found); |
| 3498 | return ret; |
| 3499 | } |
| 3500 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3501 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3502 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3503 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3504 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3505 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3506 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3507 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3508 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3509 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3510 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3511 | found->bytes_reserved = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3512 | found->bytes_readonly = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3513 | found->bytes_may_use = 0; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3514 | found->full = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3515 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3516 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3517 | found->flush = 0; |
| 3518 | init_waitqueue_head(&found->wait); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 3519 | INIT_LIST_HEAD(&found->ro_bgs); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3520 | |
| 3521 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3522 | info->space_info_kobj, "%s", |
| 3523 | alloc_name(found->flags)); |
| 3524 | if (ret) { |
| 3525 | kfree(found); |
| 3526 | return ret; |
| 3527 | } |
| 3528 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3529 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3530 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3531 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3532 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3533 | |
| 3534 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3535 | } |
| 3536 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3537 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 3538 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3539 | u64 extra_flags = chunk_to_extended(flags) & |
| 3540 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3541 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3542 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3543 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3544 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 3545 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3546 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 3547 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3548 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3549 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3550 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3551 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3552 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3553 | * returns target flags in extended format or 0 if restripe for this |
| 3554 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 3555 | * |
| 3556 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3557 | */ |
| 3558 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 3559 | { |
| 3560 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3561 | u64 target = 0; |
| 3562 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3563 | if (!bctl) |
| 3564 | return 0; |
| 3565 | |
| 3566 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 3567 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3568 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 3569 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 3570 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3571 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 3572 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 3573 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3574 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 3575 | } |
| 3576 | |
| 3577 | return target; |
| 3578 | } |
| 3579 | |
| 3580 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3581 | * @flags: available profiles in extended format (see ctree.h) |
| 3582 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3583 | * Returns reduced profile in chunk format. If profile changing is in |
| 3584 | * progress (either running or paused) picks the target profile (if it's |
| 3585 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3586 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 3587 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3588 | { |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 3589 | u64 num_devices = root->fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3590 | u64 target; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3591 | u64 tmp; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3592 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3593 | /* |
| 3594 | * see if restripe for this chunk_type is in progress, if so |
| 3595 | * try to reduce to the target profile |
| 3596 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3597 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3598 | target = get_restripe_target(root->fs_info, flags); |
| 3599 | if (target) { |
| 3600 | /* pick target profile only if it's already available */ |
| 3601 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3602 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3603 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3604 | } |
| 3605 | } |
| 3606 | spin_unlock(&root->fs_info->balance_lock); |
| 3607 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3608 | /* First, mask out the RAID levels which aren't possible */ |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3609 | if (num_devices == 1) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3610 | flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3611 | BTRFS_BLOCK_GROUP_RAID5); |
| 3612 | if (num_devices < 3) |
| 3613 | flags &= ~BTRFS_BLOCK_GROUP_RAID6; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3614 | if (num_devices < 4) |
| 3615 | flags &= ~BTRFS_BLOCK_GROUP_RAID10; |
| 3616 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3617 | tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 | |
| 3618 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3619 | BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10); |
| 3620 | flags &= ~tmp; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3621 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3622 | if (tmp & BTRFS_BLOCK_GROUP_RAID6) |
| 3623 | tmp = BTRFS_BLOCK_GROUP_RAID6; |
| 3624 | else if (tmp & BTRFS_BLOCK_GROUP_RAID5) |
| 3625 | tmp = BTRFS_BLOCK_GROUP_RAID5; |
| 3626 | else if (tmp & BTRFS_BLOCK_GROUP_RAID10) |
| 3627 | tmp = BTRFS_BLOCK_GROUP_RAID10; |
| 3628 | else if (tmp & BTRFS_BLOCK_GROUP_RAID1) |
| 3629 | tmp = BTRFS_BLOCK_GROUP_RAID1; |
| 3630 | else if (tmp & BTRFS_BLOCK_GROUP_RAID0) |
| 3631 | tmp = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3632 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3633 | return extended_to_chunk(flags | tmp); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3634 | } |
| 3635 | |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3636 | static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3637 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3638 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3639 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3640 | |
| 3641 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 3642 | flags = orig_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3643 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 3644 | |
| 3645 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3646 | flags |= root->fs_info->avail_data_alloc_bits; |
| 3647 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3648 | flags |= root->fs_info->avail_system_alloc_bits; |
| 3649 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3650 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 3651 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3652 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3653 | return btrfs_reduce_alloc_profile(root, flags); |
| 3654 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3655 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 3656 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3657 | { |
| 3658 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3659 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3660 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3661 | if (data) |
| 3662 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 3663 | else if (root == root->fs_info->chunk_root) |
| 3664 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 3665 | else |
| 3666 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 3667 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3668 | ret = get_alloc_profile(root, flags); |
| 3669 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3670 | } |
| 3671 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3672 | /* |
| 3673 | * This will check the space that the inode allocates from to make sure we have |
| 3674 | * enough space for bytes. |
| 3675 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3676 | int btrfs_check_data_free_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3677 | { |
| 3678 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3679 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3680 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3681 | u64 used; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3682 | int ret = 0, committed = 0, alloc_chunk = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3683 | |
| 3684 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3685 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3686 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3687 | if (btrfs_is_free_space_inode(inode)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3688 | committed = 1; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3689 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3690 | } |
| 3691 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3692 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3693 | if (!data_sinfo) |
| 3694 | goto alloc; |
| 3695 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3696 | again: |
| 3697 | /* make sure we have enough space to handle the data first */ |
| 3698 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3699 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 3700 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 3701 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 3702 | |
| 3703 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3704 | struct btrfs_trans_handle *trans; |
| 3705 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3706 | /* |
| 3707 | * if we don't have enough free bytes in this space then we need |
| 3708 | * to alloc a new chunk. |
| 3709 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3710 | if (!data_sinfo->full && alloc_chunk) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3711 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3712 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3713 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3714 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3715 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3716 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 3717 | /* |
| 3718 | * It is ugly that we don't call nolock join |
| 3719 | * transaction for the free space inode case here. |
| 3720 | * But it is safe because we only do the data space |
| 3721 | * reservation for the free space cache in the |
| 3722 | * transaction context, the common join transaction |
| 3723 | * just increase the counter of the current transaction |
| 3724 | * handler, doesn't try to acquire the trans_lock of |
| 3725 | * the fs. |
| 3726 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3727 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3728 | if (IS_ERR(trans)) |
| 3729 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3730 | |
| 3731 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3732 | alloc_target, |
| 3733 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3734 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3735 | if (ret < 0) { |
| 3736 | if (ret != -ENOSPC) |
| 3737 | return ret; |
| 3738 | else |
| 3739 | goto commit_trans; |
| 3740 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 3741 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3742 | if (!data_sinfo) |
| 3743 | data_sinfo = fs_info->data_sinfo; |
| 3744 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3745 | goto again; |
| 3746 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3747 | |
| 3748 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3749 | * If we don't have enough pinned space to deal with this |
| 3750 | * allocation don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3751 | */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3752 | if (percpu_counter_compare(&data_sinfo->total_bytes_pinned, |
| 3753 | bytes) < 0) |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 3754 | committed = 1; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3755 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3756 | |
| 3757 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 3758 | commit_trans: |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 3759 | if (!committed && |
| 3760 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3761 | committed = 1; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3762 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3763 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3764 | if (IS_ERR(trans)) |
| 3765 | return PTR_ERR(trans); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 3766 | ret = btrfs_commit_transaction(trans, root); |
| 3767 | if (ret) |
| 3768 | return ret; |
| 3769 | goto again; |
| 3770 | } |
| 3771 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 3772 | trace_btrfs_space_reservation(root->fs_info, |
| 3773 | "space_info:enospc", |
| 3774 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3775 | return -ENOSPC; |
| 3776 | } |
| 3777 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3778 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3779 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3780 | spin_unlock(&data_sinfo->lock); |
| 3781 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3782 | return 0; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3783 | } |
| 3784 | |
| 3785 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3786 | * Called if we need to clear a data reservation for this inode. |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3787 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3788 | void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3789 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3790 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3791 | struct btrfs_space_info *data_sinfo; |
| 3792 | |
| 3793 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 3794 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3795 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3796 | data_sinfo = root->fs_info->data_sinfo; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3797 | spin_lock(&data_sinfo->lock); |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 3798 | WARN_ON(data_sinfo->bytes_may_use < bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3799 | data_sinfo->bytes_may_use -= bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 3800 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3801 | data_sinfo->flags, bytes, 0); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3802 | spin_unlock(&data_sinfo->lock); |
| 3803 | } |
| 3804 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3805 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 3806 | { |
| 3807 | struct list_head *head = &info->space_info; |
| 3808 | struct btrfs_space_info *found; |
| 3809 | |
| 3810 | rcu_read_lock(); |
| 3811 | list_for_each_entry_rcu(found, head, list) { |
| 3812 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3813 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3814 | } |
| 3815 | rcu_read_unlock(); |
| 3816 | } |
| 3817 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3818 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 3819 | { |
| 3820 | return (global->size << 1); |
| 3821 | } |
| 3822 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3823 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3824 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3825 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3826 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3827 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3828 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 3829 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3830 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3831 | if (force == CHUNK_ALLOC_FORCE) |
| 3832 | return 1; |
| 3833 | |
| 3834 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3835 | * We need to take into account the global rsv because for all intents |
| 3836 | * and purposes it's used space. Don't worry about locking the |
| 3837 | * global_rsv, it doesn't change except when the transaction commits. |
| 3838 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 3839 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 3840 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 3841 | |
| 3842 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3843 | * in limited mode, we want to have some free space up to |
| 3844 | * about 1% of the FS size. |
| 3845 | */ |
| 3846 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 3847 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3848 | thresh = max_t(u64, 64 * 1024 * 1024, |
| 3849 | div_factor_fine(thresh, 1)); |
| 3850 | |
| 3851 | if (num_bytes - num_allocated < thresh) |
| 3852 | return 1; |
| 3853 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3854 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3855 | if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 3856 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3857 | return 1; |
| 3858 | } |
| 3859 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3860 | static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type) |
| 3861 | { |
| 3862 | u64 num_dev; |
| 3863 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3864 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 3865 | BTRFS_BLOCK_GROUP_RAID0 | |
| 3866 | BTRFS_BLOCK_GROUP_RAID5 | |
| 3867 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3868 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 3869 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 3870 | num_dev = 2; |
| 3871 | else |
| 3872 | num_dev = 1; /* DUP or single */ |
| 3873 | |
| 3874 | /* metadata for updaing devices and chunk tree */ |
| 3875 | return btrfs_calc_trans_metadata_size(root, num_dev + 1); |
| 3876 | } |
| 3877 | |
| 3878 | static void check_system_chunk(struct btrfs_trans_handle *trans, |
| 3879 | struct btrfs_root *root, u64 type) |
| 3880 | { |
| 3881 | struct btrfs_space_info *info; |
| 3882 | u64 left; |
| 3883 | u64 thresh; |
| 3884 | |
| 3885 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 3886 | spin_lock(&info->lock); |
| 3887 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 3888 | info->bytes_reserved - info->bytes_readonly; |
| 3889 | spin_unlock(&info->lock); |
| 3890 | |
| 3891 | thresh = get_system_chunk_thresh(root, type); |
| 3892 | if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3893 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 3894 | left, thresh, type); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3895 | dump_space_info(info, 0, 0); |
| 3896 | } |
| 3897 | |
| 3898 | if (left < thresh) { |
| 3899 | u64 flags; |
| 3900 | |
| 3901 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
| 3902 | btrfs_alloc_chunk(trans, root, flags); |
| 3903 | } |
| 3904 | } |
| 3905 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3906 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3907 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3908 | { |
| 3909 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3910 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3911 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3912 | int ret = 0; |
| 3913 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3914 | /* Don't re-enter if we're already allocating a chunk */ |
| 3915 | if (trans->allocating_chunk) |
| 3916 | return -ENOSPC; |
| 3917 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3918 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3919 | if (!space_info) { |
| 3920 | ret = update_space_info(extent_root->fs_info, flags, |
| 3921 | 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3922 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3923 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3924 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3925 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3926 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3927 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 3928 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3929 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3930 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3931 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 3932 | ret = -ENOSPC; |
| 3933 | else |
| 3934 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3935 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 3936 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3937 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3938 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 3939 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3940 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3941 | return 0; |
| 3942 | } else if (space_info->chunk_alloc) { |
| 3943 | wait_for_alloc = 1; |
| 3944 | } else { |
| 3945 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3946 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3947 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3948 | spin_unlock(&space_info->lock); |
| 3949 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3950 | mutex_lock(&fs_info->chunk_mutex); |
| 3951 | |
| 3952 | /* |
| 3953 | * The chunk_mutex is held throughout the entirety of a chunk |
| 3954 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 3955 | * other guy is done and we need to recheck and see if we should |
| 3956 | * allocate. |
| 3957 | */ |
| 3958 | if (wait_for_alloc) { |
| 3959 | mutex_unlock(&fs_info->chunk_mutex); |
| 3960 | wait_for_alloc = 0; |
| 3961 | goto again; |
| 3962 | } |
| 3963 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3964 | trans->allocating_chunk = true; |
| 3965 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3966 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 3967 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 3968 | * allocating mixed chunks instead of individual chunks. |
| 3969 | */ |
| 3970 | if (btrfs_mixed_space_info(space_info)) |
| 3971 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 3972 | |
| 3973 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3974 | * if we're doing a data chunk, go ahead and make sure that |
| 3975 | * we keep a reasonable number of metadata chunks allocated in the |
| 3976 | * FS as well. |
| 3977 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3978 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 3979 | fs_info->data_chunk_allocations++; |
| 3980 | if (!(fs_info->data_chunk_allocations % |
| 3981 | fs_info->metadata_ratio)) |
| 3982 | force_metadata_allocation(fs_info); |
| 3983 | } |
| 3984 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 3985 | /* |
| 3986 | * Check if we have enough space in SYSTEM chunk because we may need |
| 3987 | * to update devices. |
| 3988 | */ |
| 3989 | check_system_chunk(trans, extent_root, flags); |
| 3990 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3991 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 3992 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 3993 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3994 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 3995 | if (ret < 0 && ret != -ENOSPC) |
| 3996 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3997 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 3998 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3999 | else |
| 4000 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4001 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4002 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4003 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4004 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4005 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4006 | mutex_unlock(&fs_info->chunk_mutex); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4007 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4008 | } |
| 4009 | |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4010 | static int can_overcommit(struct btrfs_root *root, |
| 4011 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4012 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4013 | { |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4014 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4015 | u64 profile = btrfs_get_alloc_profile(root, 0); |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4016 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4017 | u64 avail; |
| 4018 | u64 used; |
| 4019 | |
| 4020 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4021 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 4022 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4023 | /* |
| 4024 | * We only want to allow over committing if we have lots of actual space |
| 4025 | * free, but if we don't have enough space to handle the global reserve |
| 4026 | * space then we could end up having a real enospc problem when trying |
| 4027 | * to allocate a chunk or some other such important allocation. |
| 4028 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4029 | spin_lock(&global_rsv->lock); |
| 4030 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4031 | spin_unlock(&global_rsv->lock); |
| 4032 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4033 | return 0; |
| 4034 | |
| 4035 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4036 | |
| 4037 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4038 | avail = root->fs_info->free_chunk_space; |
| 4039 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4040 | |
| 4041 | /* |
| 4042 | * 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] | 4043 | * space is actually useable. For raid56, the space info used |
| 4044 | * doesn't include the parity drive, so we don't have to |
| 4045 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4046 | */ |
| 4047 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4048 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4049 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4050 | avail >>= 1; |
| 4051 | |
| 4052 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4053 | * If we aren't flushing all things, let us overcommit up to |
| 4054 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4055 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4056 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4057 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4058 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4059 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4060 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4061 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4062 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4063 | return 1; |
| 4064 | return 0; |
| 4065 | } |
| 4066 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4067 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4068 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4069 | { |
| 4070 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4071 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4072 | if (down_read_trylock(&sb->s_umount)) { |
| 4073 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4074 | up_read(&sb->s_umount); |
| 4075 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4076 | /* |
| 4077 | * We needn't worry the filesystem going from r/w to r/o though |
| 4078 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4079 | * should guarantee the delalloc inodes list be empty after |
| 4080 | * the filesystem is readonly(all dirty pages are written to |
| 4081 | * the disk). |
| 4082 | */ |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4083 | btrfs_start_delalloc_roots(root->fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4084 | if (!current->journal_info) |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4085 | btrfs_wait_ordered_roots(root->fs_info, nr_items); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4086 | } |
| 4087 | } |
| 4088 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4089 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4090 | { |
| 4091 | u64 bytes; |
| 4092 | int nr; |
| 4093 | |
| 4094 | bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 4095 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4096 | if (!nr) |
| 4097 | nr = 1; |
| 4098 | return nr; |
| 4099 | } |
| 4100 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4101 | #define EXTENT_SIZE_PER_ITEM (256 * 1024) |
| 4102 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4103 | /* |
| 4104 | * shrink metadata reservation for delalloc |
| 4105 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4106 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4107 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4108 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4109 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4110 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4111 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4112 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4113 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4114 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4115 | unsigned long nr_pages; |
| 4116 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4117 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4118 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4119 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4120 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4121 | items = calc_reclaim_items_nr(root, to_reclaim); |
| 4122 | to_reclaim = items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4123 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4124 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4125 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4126 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4127 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4128 | delalloc_bytes = percpu_counter_sum_positive( |
| 4129 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4130 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4131 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4132 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4133 | if (wait_ordered) |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4134 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4135 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4136 | } |
| 4137 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4138 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4139 | while (delalloc_bytes && loops < 3) { |
| 4140 | max_reclaim = min(delalloc_bytes, to_reclaim); |
| 4141 | nr_pages = max_reclaim >> PAGE_CACHE_SHIFT; |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4142 | btrfs_writeback_inodes_sb_nr(root, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4143 | /* |
| 4144 | * We need to wait for the async pages to actually start before |
| 4145 | * we do anything. |
| 4146 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4147 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4148 | if (!max_reclaim) |
| 4149 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4150 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4151 | if (max_reclaim <= nr_pages) |
| 4152 | max_reclaim = 0; |
| 4153 | else |
| 4154 | max_reclaim -= nr_pages; |
| 4155 | |
| 4156 | wait_event(root->fs_info->async_submit_wait, |
| 4157 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4158 | (int)max_reclaim); |
| 4159 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4160 | if (!trans) |
| 4161 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4162 | else |
| 4163 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4164 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4165 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4166 | spin_unlock(&space_info->lock); |
| 4167 | break; |
| 4168 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4169 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4170 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4171 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4172 | if (wait_ordered && !trans) { |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4173 | btrfs_wait_ordered_roots(root->fs_info, items); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4174 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4175 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4176 | if (time_left) |
| 4177 | break; |
| 4178 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4179 | delalloc_bytes = percpu_counter_sum_positive( |
| 4180 | &root->fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4181 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4182 | } |
| 4183 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4184 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4185 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4186 | * @root - the root we're allocating for |
| 4187 | * @bytes - the number of bytes we want to reserve |
| 4188 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4189 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4190 | * This will check to make sure that committing the transaction will actually |
| 4191 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4192 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4193 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4194 | static int may_commit_transaction(struct btrfs_root *root, |
| 4195 | struct btrfs_space_info *space_info, |
| 4196 | u64 bytes, int force) |
| 4197 | { |
| 4198 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4199 | struct btrfs_trans_handle *trans; |
| 4200 | |
| 4201 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4202 | if (trans) |
| 4203 | return -EAGAIN; |
| 4204 | |
| 4205 | if (force) |
| 4206 | goto commit; |
| 4207 | |
| 4208 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4209 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4210 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4211 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4212 | |
| 4213 | /* |
| 4214 | * See if there is some space in the delayed insertion reservation for |
| 4215 | * this reservation. |
| 4216 | */ |
| 4217 | if (space_info != delayed_rsv->space_info) |
| 4218 | return -ENOSPC; |
| 4219 | |
| 4220 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4221 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4222 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4223 | spin_unlock(&delayed_rsv->lock); |
| 4224 | return -ENOSPC; |
| 4225 | } |
| 4226 | spin_unlock(&delayed_rsv->lock); |
| 4227 | |
| 4228 | commit: |
| 4229 | trans = btrfs_join_transaction(root); |
| 4230 | if (IS_ERR(trans)) |
| 4231 | return -ENOSPC; |
| 4232 | |
| 4233 | return btrfs_commit_transaction(trans, root); |
| 4234 | } |
| 4235 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4236 | enum flush_state { |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4237 | FLUSH_DELAYED_ITEMS_NR = 1, |
| 4238 | FLUSH_DELAYED_ITEMS = 2, |
| 4239 | FLUSH_DELALLOC = 3, |
| 4240 | FLUSH_DELALLOC_WAIT = 4, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4241 | ALLOC_CHUNK = 5, |
| 4242 | COMMIT_TRANS = 6, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4243 | }; |
| 4244 | |
| 4245 | static int flush_space(struct btrfs_root *root, |
| 4246 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4247 | u64 orig_bytes, int state) |
| 4248 | { |
| 4249 | struct btrfs_trans_handle *trans; |
| 4250 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4251 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4252 | |
| 4253 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4254 | case FLUSH_DELAYED_ITEMS_NR: |
| 4255 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4256 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4257 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4258 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4259 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4260 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4261 | trans = btrfs_join_transaction(root); |
| 4262 | if (IS_ERR(trans)) { |
| 4263 | ret = PTR_ERR(trans); |
| 4264 | break; |
| 4265 | } |
| 4266 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4267 | btrfs_end_transaction(trans, root); |
| 4268 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4269 | case FLUSH_DELALLOC: |
| 4270 | case FLUSH_DELALLOC_WAIT: |
Miao Xie | 24af7dd | 2014-03-06 13:55:00 +0800 | [diff] [blame] | 4271 | shrink_delalloc(root, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4272 | state == FLUSH_DELALLOC_WAIT); |
| 4273 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4274 | case ALLOC_CHUNK: |
| 4275 | trans = btrfs_join_transaction(root); |
| 4276 | if (IS_ERR(trans)) { |
| 4277 | ret = PTR_ERR(trans); |
| 4278 | break; |
| 4279 | } |
| 4280 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4281 | btrfs_get_alloc_profile(root, 0), |
| 4282 | CHUNK_ALLOC_NO_FORCE); |
| 4283 | btrfs_end_transaction(trans, root); |
| 4284 | if (ret == -ENOSPC) |
| 4285 | ret = 0; |
| 4286 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4287 | case COMMIT_TRANS: |
| 4288 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4289 | break; |
| 4290 | default: |
| 4291 | ret = -ENOSPC; |
| 4292 | break; |
| 4293 | } |
| 4294 | |
| 4295 | return ret; |
| 4296 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4297 | |
| 4298 | static inline u64 |
| 4299 | btrfs_calc_reclaim_metadata_size(struct btrfs_root *root, |
| 4300 | struct btrfs_space_info *space_info) |
| 4301 | { |
| 4302 | u64 used; |
| 4303 | u64 expected; |
| 4304 | u64 to_reclaim; |
| 4305 | |
| 4306 | to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024, |
| 4307 | 16 * 1024 * 1024); |
| 4308 | spin_lock(&space_info->lock); |
| 4309 | if (can_overcommit(root, space_info, to_reclaim, |
| 4310 | BTRFS_RESERVE_FLUSH_ALL)) { |
| 4311 | to_reclaim = 0; |
| 4312 | goto out; |
| 4313 | } |
| 4314 | |
| 4315 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4316 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4317 | space_info->bytes_may_use; |
| 4318 | if (can_overcommit(root, space_info, 1024 * 1024, |
| 4319 | BTRFS_RESERVE_FLUSH_ALL)) |
| 4320 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4321 | else |
| 4322 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4323 | |
| 4324 | if (used > expected) |
| 4325 | to_reclaim = used - expected; |
| 4326 | else |
| 4327 | to_reclaim = 0; |
| 4328 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4329 | space_info->bytes_reserved); |
| 4330 | out: |
| 4331 | spin_unlock(&space_info->lock); |
| 4332 | |
| 4333 | return to_reclaim; |
| 4334 | } |
| 4335 | |
| 4336 | static inline int need_do_async_reclaim(struct btrfs_space_info *space_info, |
| 4337 | struct btrfs_fs_info *fs_info, u64 used) |
| 4338 | { |
| 4339 | return (used >= div_factor_fine(space_info->total_bytes, 98) && |
| 4340 | !btrfs_fs_closing(fs_info) && |
| 4341 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
| 4342 | } |
| 4343 | |
| 4344 | static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info, |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4345 | struct btrfs_fs_info *fs_info, |
| 4346 | int flush_state) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4347 | { |
| 4348 | u64 used; |
| 4349 | |
| 4350 | spin_lock(&space_info->lock); |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4351 | /* |
| 4352 | * We run out of space and have not got any free space via flush_space, |
| 4353 | * so don't bother doing async reclaim. |
| 4354 | */ |
| 4355 | if (flush_state > COMMIT_TRANS && space_info->full) { |
| 4356 | spin_unlock(&space_info->lock); |
| 4357 | return 0; |
| 4358 | } |
| 4359 | |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4360 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4361 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4362 | space_info->bytes_may_use; |
| 4363 | if (need_do_async_reclaim(space_info, fs_info, used)) { |
| 4364 | spin_unlock(&space_info->lock); |
| 4365 | return 1; |
| 4366 | } |
| 4367 | spin_unlock(&space_info->lock); |
| 4368 | |
| 4369 | return 0; |
| 4370 | } |
| 4371 | |
| 4372 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4373 | { |
| 4374 | struct btrfs_fs_info *fs_info; |
| 4375 | struct btrfs_space_info *space_info; |
| 4376 | u64 to_reclaim; |
| 4377 | int flush_state; |
| 4378 | |
| 4379 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 4380 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4381 | |
| 4382 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 4383 | space_info); |
| 4384 | if (!to_reclaim) |
| 4385 | return; |
| 4386 | |
| 4387 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 4388 | do { |
| 4389 | flush_space(fs_info->fs_root, space_info, to_reclaim, |
| 4390 | to_reclaim, flush_state); |
| 4391 | flush_state++; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4392 | if (!btrfs_need_do_async_reclaim(space_info, fs_info, |
| 4393 | flush_state)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4394 | return; |
| 4395 | } while (flush_state <= COMMIT_TRANS); |
| 4396 | |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4397 | if (btrfs_need_do_async_reclaim(space_info, fs_info, flush_state)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4398 | queue_work(system_unbound_wq, work); |
| 4399 | } |
| 4400 | |
| 4401 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 4402 | { |
| 4403 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 4404 | } |
| 4405 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4406 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4407 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 4408 | * @root - the root we're allocating for |
| 4409 | * @block_rsv - the block_rsv we're allocating for |
| 4410 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 4411 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4412 | * |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4413 | * This will reserve orgi_bytes number of bytes from the space info associated |
| 4414 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 4415 | * flush out space to make room. It will do this by flushing delalloc if |
| 4416 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 4417 | * regain reservations will be made and this will fail if there is not enough |
| 4418 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4419 | */ |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4420 | static int reserve_metadata_bytes(struct btrfs_root *root, |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4421 | struct btrfs_block_rsv *block_rsv, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4422 | u64 orig_bytes, |
| 4423 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4424 | { |
| 4425 | struct btrfs_space_info *space_info = block_rsv->space_info; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4426 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4427 | u64 num_bytes = orig_bytes; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4428 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4429 | int ret = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4430 | bool flushing = false; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4431 | |
| 4432 | again: |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4433 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4434 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4435 | /* |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4436 | * We only want to wait if somebody other than us is flushing and we |
| 4437 | * are actually allowed to flush all things. |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4438 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4439 | while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing && |
| 4440 | space_info->flush) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4441 | spin_unlock(&space_info->lock); |
| 4442 | /* |
| 4443 | * If we have a trans handle we can't wait because the flusher |
| 4444 | * may have to commit the transaction, which would mean we would |
| 4445 | * deadlock since we are waiting for the flusher to finish, but |
| 4446 | * hold the current transaction open. |
| 4447 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4448 | if (current->journal_info) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4449 | return -EAGAIN; |
Arne Jansen | b9688bb | 2012-04-18 10:27:16 +0200 | [diff] [blame] | 4450 | ret = wait_event_killable(space_info->wait, !space_info->flush); |
| 4451 | /* Must have been killed, return */ |
| 4452 | if (ret) |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4453 | return -EINTR; |
| 4454 | |
| 4455 | spin_lock(&space_info->lock); |
| 4456 | } |
| 4457 | |
| 4458 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4459 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4460 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4461 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4462 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4463 | /* |
| 4464 | * The idea here is that we've not already over-reserved the block group |
| 4465 | * then we can go ahead and save our reservation first and then start |
| 4466 | * flushing if we need to. Otherwise if we've already overcommitted |
| 4467 | * lets start flushing stuff first and then come back and try to make |
| 4468 | * our reservation. |
| 4469 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4470 | if (used <= space_info->total_bytes) { |
| 4471 | if (used + orig_bytes <= space_info->total_bytes) { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4472 | space_info->bytes_may_use += orig_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4473 | trace_btrfs_space_reservation(root->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4474 | "space_info", space_info->flags, orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4475 | ret = 0; |
| 4476 | } else { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4477 | /* |
| 4478 | * Ok set num_bytes to orig_bytes since we aren't |
| 4479 | * overocmmitted, this way we only try and reclaim what |
| 4480 | * we need. |
| 4481 | */ |
| 4482 | num_bytes = orig_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4483 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4484 | } else { |
| 4485 | /* |
| 4486 | * Ok we're over committed, set num_bytes to the overcommitted |
| 4487 | * amount plus the amount of bytes that we need for this |
| 4488 | * reservation. |
| 4489 | */ |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4490 | num_bytes = used - space_info->total_bytes + |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4491 | (orig_bytes * 2); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4492 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4493 | |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 4494 | if (ret && can_overcommit(root, space_info, orig_bytes, flush)) { |
| 4495 | space_info->bytes_may_use += orig_bytes; |
| 4496 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4497 | space_info->flags, orig_bytes, |
| 4498 | 1); |
| 4499 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 4500 | } |
| 4501 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4502 | /* |
| 4503 | * Couldn't make our reservation, save our place so while we're trying |
| 4504 | * to reclaim space we can actually use it instead of somebody else |
| 4505 | * stealing it from us. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4506 | * |
| 4507 | * We make the other tasks wait for the flush only when we can flush |
| 4508 | * all things. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4509 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 4510 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4511 | flushing = true; |
| 4512 | space_info->flush = 1; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4513 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 4514 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 4515 | /* |
| 4516 | * We will do the space reservation dance during log replay, |
| 4517 | * which means we won't have fs_info->fs_root set, so don't do |
| 4518 | * the async reclaim as we will panic. |
| 4519 | */ |
| 4520 | if (!root->fs_info->log_root_recovering && |
| 4521 | need_do_async_reclaim(space_info, root->fs_info, used) && |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4522 | !work_busy(&root->fs_info->async_reclaim_work)) |
| 4523 | queue_work(system_unbound_wq, |
| 4524 | &root->fs_info->async_reclaim_work); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4525 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4526 | spin_unlock(&space_info->lock); |
| 4527 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4528 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4529 | goto out; |
| 4530 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4531 | ret = flush_space(root, space_info, num_bytes, orig_bytes, |
| 4532 | flush_state); |
| 4533 | flush_state++; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4534 | |
| 4535 | /* |
| 4536 | * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock |
| 4537 | * would happen. So skip delalloc flush. |
| 4538 | */ |
| 4539 | if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4540 | (flush_state == FLUSH_DELALLOC || |
| 4541 | flush_state == FLUSH_DELALLOC_WAIT)) |
| 4542 | flush_state = ALLOC_CHUNK; |
| 4543 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4544 | if (!ret) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4545 | goto again; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4546 | else if (flush == BTRFS_RESERVE_FLUSH_LIMIT && |
| 4547 | flush_state < COMMIT_TRANS) |
| 4548 | goto again; |
| 4549 | else if (flush == BTRFS_RESERVE_FLUSH_ALL && |
| 4550 | flush_state <= COMMIT_TRANS) |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4551 | goto again; |
| 4552 | |
| 4553 | out: |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 4554 | if (ret == -ENOSPC && |
| 4555 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 4556 | struct btrfs_block_rsv *global_rsv = |
| 4557 | &root->fs_info->global_block_rsv; |
| 4558 | |
| 4559 | if (block_rsv != global_rsv && |
| 4560 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 4561 | ret = 0; |
| 4562 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4563 | if (ret == -ENOSPC) |
| 4564 | trace_btrfs_space_reservation(root->fs_info, |
| 4565 | "space_info:enospc", |
| 4566 | space_info->flags, orig_bytes, 1); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4567 | if (flushing) { |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4568 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4569 | space_info->flush = 0; |
| 4570 | wake_up_all(&space_info->wait); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4571 | spin_unlock(&space_info->lock); |
| 4572 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4573 | return ret; |
| 4574 | } |
| 4575 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4576 | static struct btrfs_block_rsv *get_block_rsv( |
| 4577 | const struct btrfs_trans_handle *trans, |
| 4578 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4579 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4580 | struct btrfs_block_rsv *block_rsv = NULL; |
| 4581 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4582 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4583 | block_rsv = trans->block_rsv; |
| 4584 | |
| 4585 | if (root == root->fs_info->csum_root && trans->adding_csums) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4586 | block_rsv = trans->block_rsv; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4587 | |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 4588 | if (root == root->fs_info->uuid_root) |
| 4589 | block_rsv = trans->block_rsv; |
| 4590 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 4591 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4592 | block_rsv = root->block_rsv; |
| 4593 | |
| 4594 | if (!block_rsv) |
| 4595 | block_rsv = &root->fs_info->empty_block_rsv; |
| 4596 | |
| 4597 | return block_rsv; |
| 4598 | } |
| 4599 | |
| 4600 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 4601 | u64 num_bytes) |
| 4602 | { |
| 4603 | int ret = -ENOSPC; |
| 4604 | spin_lock(&block_rsv->lock); |
| 4605 | if (block_rsv->reserved >= num_bytes) { |
| 4606 | block_rsv->reserved -= num_bytes; |
| 4607 | if (block_rsv->reserved < block_rsv->size) |
| 4608 | block_rsv->full = 0; |
| 4609 | ret = 0; |
| 4610 | } |
| 4611 | spin_unlock(&block_rsv->lock); |
| 4612 | return ret; |
| 4613 | } |
| 4614 | |
| 4615 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 4616 | u64 num_bytes, int update_size) |
| 4617 | { |
| 4618 | spin_lock(&block_rsv->lock); |
| 4619 | block_rsv->reserved += num_bytes; |
| 4620 | if (update_size) |
| 4621 | block_rsv->size += num_bytes; |
| 4622 | else if (block_rsv->reserved >= block_rsv->size) |
| 4623 | block_rsv->full = 1; |
| 4624 | spin_unlock(&block_rsv->lock); |
| 4625 | } |
| 4626 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 4627 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 4628 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 4629 | int min_factor) |
| 4630 | { |
| 4631 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 4632 | u64 min_bytes; |
| 4633 | |
| 4634 | if (global_rsv->space_info != dest->space_info) |
| 4635 | return -ENOSPC; |
| 4636 | |
| 4637 | spin_lock(&global_rsv->lock); |
| 4638 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 4639 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 4640 | spin_unlock(&global_rsv->lock); |
| 4641 | return -ENOSPC; |
| 4642 | } |
| 4643 | global_rsv->reserved -= num_bytes; |
| 4644 | if (global_rsv->reserved < global_rsv->size) |
| 4645 | global_rsv->full = 0; |
| 4646 | spin_unlock(&global_rsv->lock); |
| 4647 | |
| 4648 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 4649 | return 0; |
| 4650 | } |
| 4651 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4652 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 4653 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 4654 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4655 | { |
| 4656 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 4657 | |
| 4658 | spin_lock(&block_rsv->lock); |
| 4659 | if (num_bytes == (u64)-1) |
| 4660 | num_bytes = block_rsv->size; |
| 4661 | block_rsv->size -= num_bytes; |
| 4662 | if (block_rsv->reserved >= block_rsv->size) { |
| 4663 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 4664 | block_rsv->reserved = block_rsv->size; |
| 4665 | block_rsv->full = 1; |
| 4666 | } else { |
| 4667 | num_bytes = 0; |
| 4668 | } |
| 4669 | spin_unlock(&block_rsv->lock); |
| 4670 | |
| 4671 | if (num_bytes > 0) { |
| 4672 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 4673 | spin_lock(&dest->lock); |
| 4674 | if (!dest->full) { |
| 4675 | u64 bytes_to_add; |
| 4676 | |
| 4677 | bytes_to_add = dest->size - dest->reserved; |
| 4678 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 4679 | dest->reserved += bytes_to_add; |
| 4680 | if (dest->reserved >= dest->size) |
| 4681 | dest->full = 1; |
| 4682 | num_bytes -= bytes_to_add; |
| 4683 | } |
| 4684 | spin_unlock(&dest->lock); |
| 4685 | } |
| 4686 | if (num_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4687 | spin_lock(&space_info->lock); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4688 | space_info->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4689 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4690 | space_info->flags, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4691 | spin_unlock(&space_info->lock); |
| 4692 | } |
| 4693 | } |
| 4694 | } |
| 4695 | |
| 4696 | static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src, |
| 4697 | struct btrfs_block_rsv *dst, u64 num_bytes) |
| 4698 | { |
| 4699 | int ret; |
| 4700 | |
| 4701 | ret = block_rsv_use_bytes(src, num_bytes); |
| 4702 | if (ret) |
| 4703 | return ret; |
| 4704 | |
| 4705 | block_rsv_add_bytes(dst, num_bytes, 1); |
| 4706 | return 0; |
| 4707 | } |
| 4708 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4709 | 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] | 4710 | { |
| 4711 | memset(rsv, 0, sizeof(*rsv)); |
| 4712 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4713 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4714 | } |
| 4715 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4716 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 4717 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4718 | { |
| 4719 | struct btrfs_block_rsv *block_rsv; |
| 4720 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4721 | |
| 4722 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 4723 | if (!block_rsv) |
| 4724 | return NULL; |
| 4725 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4726 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4727 | block_rsv->space_info = __find_space_info(fs_info, |
| 4728 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4729 | return block_rsv; |
| 4730 | } |
| 4731 | |
| 4732 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 4733 | struct btrfs_block_rsv *rsv) |
| 4734 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4735 | if (!rsv) |
| 4736 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4737 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 4738 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4739 | } |
| 4740 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4741 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 4742 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 4743 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4744 | { |
| 4745 | int ret; |
| 4746 | |
| 4747 | if (num_bytes == 0) |
| 4748 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4749 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 4750 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4751 | if (!ret) { |
| 4752 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 4753 | return 0; |
| 4754 | } |
| 4755 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4756 | return ret; |
| 4757 | } |
| 4758 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4759 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4760 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4761 | { |
| 4762 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4763 | int ret = -ENOSPC; |
| 4764 | |
| 4765 | if (!block_rsv) |
| 4766 | return 0; |
| 4767 | |
| 4768 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4769 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 4770 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4771 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4772 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4773 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4774 | return ret; |
| 4775 | } |
| 4776 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4777 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 4778 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 4779 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 4780 | { |
| 4781 | u64 num_bytes = 0; |
| 4782 | int ret = -ENOSPC; |
| 4783 | |
| 4784 | if (!block_rsv) |
| 4785 | return 0; |
| 4786 | |
| 4787 | spin_lock(&block_rsv->lock); |
| 4788 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4789 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4790 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4791 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4792 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4793 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4794 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4795 | if (!ret) |
| 4796 | return 0; |
| 4797 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 4798 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 4799 | if (!ret) { |
| 4800 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4801 | return 0; |
| 4802 | } |
| 4803 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 4804 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4805 | } |
| 4806 | |
| 4807 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv, |
| 4808 | struct btrfs_block_rsv *dst_rsv, |
| 4809 | u64 num_bytes) |
| 4810 | { |
| 4811 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4812 | } |
| 4813 | |
| 4814 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 4815 | struct btrfs_block_rsv *block_rsv, |
| 4816 | u64 num_bytes) |
| 4817 | { |
| 4818 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 4819 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4820 | block_rsv->space_info != global_rsv->space_info) |
| 4821 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4822 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 4823 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4824 | } |
| 4825 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4826 | /* |
| 4827 | * helper to calculate size of global block reservation. |
| 4828 | * the desired value is sum of space used by extent tree, |
| 4829 | * checksum tree and root tree |
| 4830 | */ |
| 4831 | static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info) |
| 4832 | { |
| 4833 | struct btrfs_space_info *sinfo; |
| 4834 | u64 num_bytes; |
| 4835 | u64 meta_used; |
| 4836 | u64 data_used; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4837 | int csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4838 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4839 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 4840 | spin_lock(&sinfo->lock); |
| 4841 | data_used = sinfo->bytes_used; |
| 4842 | spin_unlock(&sinfo->lock); |
| 4843 | |
| 4844 | sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4845 | spin_lock(&sinfo->lock); |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4846 | if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4847 | data_used = 0; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4848 | meta_used = sinfo->bytes_used; |
| 4849 | spin_unlock(&sinfo->lock); |
| 4850 | |
| 4851 | num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) * |
| 4852 | csum_size * 2; |
| 4853 | num_bytes += div64_u64(data_used + meta_used, 50); |
| 4854 | |
| 4855 | if (num_bytes * 3 > meta_used) |
Chris Mason | 8e62c2d | 2012-04-12 13:46:48 -0400 | [diff] [blame] | 4856 | num_bytes = div64_u64(meta_used, 3); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4857 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 4858 | return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4859 | } |
| 4860 | |
| 4861 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4862 | { |
| 4863 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 4864 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 4865 | u64 num_bytes; |
| 4866 | |
| 4867 | num_bytes = calc_global_metadata_size(fs_info); |
| 4868 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4869 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4870 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4871 | |
Josef Bacik | fdf30d1 | 2013-03-26 15:31:45 -0400 | [diff] [blame] | 4872 | block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4873 | |
| 4874 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
Josef Bacik | 6d48755 | 2010-10-15 15:13:32 -0400 | [diff] [blame] | 4875 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 4876 | sinfo->bytes_may_use; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4877 | |
| 4878 | if (sinfo->total_bytes > num_bytes) { |
| 4879 | num_bytes = sinfo->total_bytes - num_bytes; |
| 4880 | block_rsv->reserved += num_bytes; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4881 | sinfo->bytes_may_use += num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4882 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4883 | sinfo->flags, num_bytes, 1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4884 | } |
| 4885 | |
| 4886 | if (block_rsv->reserved >= block_rsv->size) { |
| 4887 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4888 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4889 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4890 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4891 | block_rsv->reserved = block_rsv->size; |
| 4892 | block_rsv->full = 1; |
| 4893 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 4894 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4895 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 4896 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4897 | } |
| 4898 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4899 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4900 | { |
| 4901 | struct btrfs_space_info *space_info; |
| 4902 | |
| 4903 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4904 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4905 | |
| 4906 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4907 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4908 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4909 | fs_info->trans_block_rsv.space_info = space_info; |
| 4910 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4911 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4912 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4913 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 4914 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 4915 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 4916 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 4917 | if (fs_info->quota_root) |
| 4918 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4919 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4920 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4921 | update_global_block_rsv(fs_info); |
| 4922 | } |
| 4923 | |
| 4924 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 4925 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4926 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 4927 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4928 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 4929 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 4930 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 4931 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 4932 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 4933 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4934 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 4935 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4936 | } |
| 4937 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4938 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 4939 | struct btrfs_root *root) |
| 4940 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 4941 | if (!trans->block_rsv) |
| 4942 | return; |
| 4943 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4944 | if (!trans->bytes_reserved) |
| 4945 | return; |
| 4946 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 4947 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4948 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 4949 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4950 | trans->bytes_reserved = 0; |
| 4951 | } |
| 4952 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4953 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4954 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 4955 | struct inode *inode) |
| 4956 | { |
| 4957 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4958 | struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root); |
| 4959 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 4960 | |
| 4961 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 4962 | * We need to hold space in order to delete our orphan item once we've |
| 4963 | * added it, so this takes the reservation so we can release it later |
| 4964 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4965 | */ |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4966 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4967 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4968 | btrfs_ino(inode), num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4969 | return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes); |
| 4970 | } |
| 4971 | |
| 4972 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 4973 | { |
| 4974 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4975 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4976 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 4977 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4978 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 4979 | } |
| 4980 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 4981 | /* |
| 4982 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 4983 | * root: the root of the parent directory |
| 4984 | * rsv: block reservation |
| 4985 | * items: the number of items that we need do reservation |
| 4986 | * qgroup_reserved: used to return the reserved size in qgroup |
| 4987 | * |
| 4988 | * This function is used to reserve the space for snapshot/subvolume |
| 4989 | * creation and deletion. Those operations are different with the |
| 4990 | * common file/directory operations, they change two fs/file trees |
| 4991 | * and root tree, the number of items that the qgroup reserves is |
| 4992 | * different with the free space reservation. So we can not use |
| 4993 | * the space reseravtion mechanism in start_transaction(). |
| 4994 | */ |
| 4995 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 4996 | struct btrfs_block_rsv *rsv, |
| 4997 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 4998 | u64 *qgroup_reserved, |
| 4999 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5000 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5001 | u64 num_bytes; |
| 5002 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5003 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5004 | |
| 5005 | if (root->fs_info->quota_enabled) { |
| 5006 | /* One for parent inode, two for dir entries */ |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5007 | num_bytes = 3 * root->nodesize; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5008 | ret = btrfs_qgroup_reserve(root, num_bytes); |
| 5009 | if (ret) |
| 5010 | return ret; |
| 5011 | } else { |
| 5012 | num_bytes = 0; |
| 5013 | } |
| 5014 | |
| 5015 | *qgroup_reserved = num_bytes; |
| 5016 | |
| 5017 | num_bytes = btrfs_calc_trans_metadata_size(root, items); |
| 5018 | rsv->space_info = __find_space_info(root->fs_info, |
| 5019 | BTRFS_BLOCK_GROUP_METADATA); |
| 5020 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5021 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5022 | |
| 5023 | if (ret == -ENOSPC && use_global_rsv) |
| 5024 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes); |
| 5025 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5026 | if (ret) { |
| 5027 | if (*qgroup_reserved) |
| 5028 | btrfs_qgroup_free(root, *qgroup_reserved); |
| 5029 | } |
| 5030 | |
| 5031 | return ret; |
| 5032 | } |
| 5033 | |
| 5034 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 5035 | struct btrfs_block_rsv *rsv, |
| 5036 | u64 qgroup_reserved) |
| 5037 | { |
| 5038 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 5039 | if (qgroup_reserved) |
| 5040 | btrfs_qgroup_free(root, qgroup_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5041 | } |
| 5042 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5043 | /** |
| 5044 | * drop_outstanding_extent - drop an outstanding extent |
| 5045 | * @inode: the inode we're dropping the extent for |
| 5046 | * |
| 5047 | * This is called when we are freeing up an outstanding extent, either called |
| 5048 | * after an error or after an extent is written. This will return the number of |
| 5049 | * reserved extents that need to be freed. This must be called with |
| 5050 | * BTRFS_I(inode)->lock held. |
| 5051 | */ |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5052 | static unsigned drop_outstanding_extent(struct inode *inode) |
| 5053 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5054 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5055 | unsigned dropped_extents = 0; |
| 5056 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5057 | BUG_ON(!BTRFS_I(inode)->outstanding_extents); |
| 5058 | BTRFS_I(inode)->outstanding_extents--; |
| 5059 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5060 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5061 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5062 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5063 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5064 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5065 | /* |
| 5066 | * If we have more or the same amount of outsanding extents than we have |
| 5067 | * reserved then we need to leave the reserved extents count alone. |
| 5068 | */ |
| 5069 | if (BTRFS_I(inode)->outstanding_extents >= |
| 5070 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5071 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5072 | |
| 5073 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 5074 | BTRFS_I(inode)->outstanding_extents; |
| 5075 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5076 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5077 | } |
| 5078 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5079 | /** |
| 5080 | * calc_csum_metadata_size - return the amount of metada space that must be |
| 5081 | * reserved/free'd for the given bytes. |
| 5082 | * @inode: the inode we're manipulating |
| 5083 | * @num_bytes: the number of bytes in question |
| 5084 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5085 | * |
| 5086 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5087 | * correct amount of metadata that must either be reserved or freed. We |
| 5088 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5089 | * number of bytes that will need to be checksumed by this value to figure out |
| 5090 | * how many checksums will be required. If we are adding bytes then the number |
| 5091 | * may go up and we will return the number of additional bytes that must be |
| 5092 | * reserved. If it is going down we will return the number of bytes that must |
| 5093 | * be freed. |
| 5094 | * |
| 5095 | * This must be called with BTRFS_I(inode)->lock held. |
| 5096 | */ |
| 5097 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 5098 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5099 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5100 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5101 | u64 csum_size; |
| 5102 | int num_csums_per_leaf; |
| 5103 | int num_csums; |
| 5104 | int old_csums; |
| 5105 | |
| 5106 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 5107 | BTRFS_I(inode)->csum_bytes == 0) |
| 5108 | return 0; |
| 5109 | |
| 5110 | old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 5111 | if (reserve) |
| 5112 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 5113 | else |
| 5114 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
| 5115 | csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item); |
| 5116 | num_csums_per_leaf = (int)div64_u64(csum_size, |
| 5117 | sizeof(struct btrfs_csum_item) + |
| 5118 | sizeof(struct btrfs_disk_key)); |
| 5119 | num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize); |
| 5120 | num_csums = num_csums + num_csums_per_leaf - 1; |
| 5121 | num_csums = num_csums / num_csums_per_leaf; |
| 5122 | |
| 5123 | old_csums = old_csums + num_csums_per_leaf - 1; |
| 5124 | old_csums = old_csums / num_csums_per_leaf; |
| 5125 | |
| 5126 | /* No change, no need to reserve more */ |
| 5127 | if (old_csums == num_csums) |
| 5128 | return 0; |
| 5129 | |
| 5130 | if (reserve) |
| 5131 | return btrfs_calc_trans_metadata_size(root, |
| 5132 | num_csums - old_csums); |
| 5133 | |
| 5134 | return btrfs_calc_trans_metadata_size(root, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5135 | } |
| 5136 | |
| 5137 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 5138 | { |
| 5139 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5140 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5141 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5142 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5143 | unsigned nr_extents = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5144 | int extra_reserve = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5145 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5146 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5147 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5148 | u64 to_free = 0; |
| 5149 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5150 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5151 | /* If we are a free space inode we need to not flush since we will be in |
| 5152 | * the middle of a transaction commit. We also don't need the delalloc |
| 5153 | * mutex since we won't race with anybody. We need this mostly to make |
| 5154 | * lockdep shut its filthy mouth. |
| 5155 | */ |
| 5156 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5157 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5158 | delalloc_lock = false; |
| 5159 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5160 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5161 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 5162 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5163 | schedule_timeout(1); |
| 5164 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5165 | if (delalloc_lock) |
| 5166 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 5167 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5168 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5169 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5170 | spin_lock(&BTRFS_I(inode)->lock); |
| 5171 | BTRFS_I(inode)->outstanding_extents++; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5172 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5173 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5174 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5175 | nr_extents = BTRFS_I(inode)->outstanding_extents - |
| 5176 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5177 | |
| 5178 | /* |
| 5179 | * Add an item to reserve for updating the inode when we complete the |
| 5180 | * delalloc io. |
| 5181 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5182 | if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5183 | &BTRFS_I(inode)->runtime_flags)) { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5184 | nr_extents++; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5185 | extra_reserve = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5186 | } |
| 5187 | |
| 5188 | to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5189 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5190 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5191 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5192 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5193 | if (root->fs_info->quota_enabled) { |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5194 | ret = btrfs_qgroup_reserve(root, num_bytes + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5195 | nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5196 | if (ret) |
| 5197 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5198 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5199 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5200 | ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush); |
| 5201 | if (unlikely(ret)) { |
| 5202 | if (root->fs_info->quota_enabled) |
Miao Xie | 4b5829a | 2012-12-05 10:53:25 +0000 | [diff] [blame] | 5203 | btrfs_qgroup_free(root, num_bytes + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5204 | nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5205 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5206 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5207 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5208 | spin_lock(&BTRFS_I(inode)->lock); |
| 5209 | if (extra_reserve) { |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5210 | set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5211 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5212 | nr_extents--; |
| 5213 | } |
| 5214 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 5215 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5216 | |
| 5217 | if (delalloc_lock) |
| 5218 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5219 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5220 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 5221 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5222 | btrfs_ino(inode), to_reserve, 1); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5223 | block_rsv_add_bytes(block_rsv, to_reserve, 1); |
| 5224 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5225 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5226 | |
| 5227 | out_fail: |
| 5228 | spin_lock(&BTRFS_I(inode)->lock); |
| 5229 | dropped = drop_outstanding_extent(inode); |
| 5230 | /* |
| 5231 | * If the inodes csum_bytes is the same as the original |
| 5232 | * csum_bytes then we know we haven't raced with any free()ers |
| 5233 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5234 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5235 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5236 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 5237 | } else { |
| 5238 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 5239 | u64 bytes; |
| 5240 | |
| 5241 | /* |
| 5242 | * This is tricky, but first we need to figure out how much we |
| 5243 | * free'd from any free-ers that occured during this |
| 5244 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 5245 | * before we dropped our lock, and then call the free for the |
| 5246 | * number of bytes that were freed while we were trying our |
| 5247 | * reservation. |
| 5248 | */ |
| 5249 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 5250 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 5251 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 5252 | |
| 5253 | |
| 5254 | /* |
| 5255 | * Now we need to see how much we would have freed had we not |
| 5256 | * been making this reservation and our ->csum_bytes were not |
| 5257 | * artificially inflated. |
| 5258 | */ |
| 5259 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 5260 | bytes = csum_bytes - orig_csum_bytes; |
| 5261 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 5262 | |
| 5263 | /* |
| 5264 | * Now reset ->csum_bytes to what it should be. If bytes is |
| 5265 | * more than to_free then we would have free'd more space had we |
| 5266 | * not had an artificially high ->csum_bytes, so we need to free |
| 5267 | * the remainder. If bytes is the same or less then we don't |
| 5268 | * need to do anything, the other free-ers did the correct |
| 5269 | * thing. |
| 5270 | */ |
| 5271 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 5272 | if (bytes > to_free) |
| 5273 | to_free = bytes - to_free; |
| 5274 | else |
| 5275 | to_free = 0; |
| 5276 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5277 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5278 | if (dropped) |
| 5279 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
| 5280 | |
| 5281 | if (to_free) { |
| 5282 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 5283 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5284 | btrfs_ino(inode), to_free, 0); |
| 5285 | } |
| 5286 | if (delalloc_lock) |
| 5287 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 5288 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5289 | } |
| 5290 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5291 | /** |
| 5292 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 5293 | * @inode: the inode to release the reservation for |
| 5294 | * @num_bytes: the number of bytes we're releasing |
| 5295 | * |
| 5296 | * This will release the metadata reservation for an inode. This can be called |
| 5297 | * once we complete IO for a given set of bytes to release their metadata |
| 5298 | * reservations. |
| 5299 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5300 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 5301 | { |
| 5302 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5303 | u64 to_free = 0; |
| 5304 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5305 | |
| 5306 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5307 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5308 | dropped = drop_outstanding_extent(inode); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5309 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 5310 | if (num_bytes) |
| 5311 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5312 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5313 | if (dropped > 0) |
| 5314 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5315 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5316 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5317 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5318 | if (root->fs_info->quota_enabled) { |
| 5319 | btrfs_qgroup_free(root, num_bytes + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5320 | dropped * root->nodesize); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5321 | } |
| 5322 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5323 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 5324 | to_free); |
| 5325 | } |
| 5326 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5327 | /** |
| 5328 | * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc |
| 5329 | * @inode: inode we're writing to |
| 5330 | * @num_bytes: the number of bytes we want to allocate |
| 5331 | * |
| 5332 | * This will do the following things |
| 5333 | * |
| 5334 | * o reserve space in the data space info for num_bytes |
| 5335 | * o reserve space in the metadata space info based on number of outstanding |
| 5336 | * extents and how much csums will be needed |
| 5337 | * o add to the inodes ->delalloc_bytes |
| 5338 | * o add it to the fs_info's delalloc inodes list. |
| 5339 | * |
| 5340 | * This will return 0 for success and -ENOSPC if there is no space left. |
| 5341 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5342 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes) |
| 5343 | { |
| 5344 | int ret; |
| 5345 | |
| 5346 | ret = btrfs_check_data_free_space(inode, num_bytes); |
| 5347 | if (ret) |
| 5348 | return ret; |
| 5349 | |
| 5350 | ret = btrfs_delalloc_reserve_metadata(inode, num_bytes); |
| 5351 | if (ret) { |
| 5352 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5353 | return ret; |
| 5354 | } |
| 5355 | |
| 5356 | return 0; |
| 5357 | } |
| 5358 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5359 | /** |
| 5360 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
| 5361 | * @inode: inode we're releasing space for |
| 5362 | * @num_bytes: the number of bytes we want to free up |
| 5363 | * |
| 5364 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 5365 | * called in the case that we don't need the metadata AND data reservations |
| 5366 | * anymore. So if there is an error or we insert an inline extent. |
| 5367 | * |
| 5368 | * This function will release the metadata space that was not used and will |
| 5369 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 5370 | * list if there are no delalloc bytes left. |
| 5371 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5372 | void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes) |
| 5373 | { |
| 5374 | btrfs_delalloc_release_metadata(inode, num_bytes); |
| 5375 | btrfs_free_reserved_data_space(inode, num_bytes); |
| 5376 | } |
| 5377 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 5378 | static int update_block_group(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5379 | u64 bytenr, u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5380 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5381 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5382 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5383 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5384 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5385 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5386 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 5387 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5388 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5389 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5390 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5391 | if (alloc) |
| 5392 | old_val += num_bytes; |
| 5393 | else |
| 5394 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 5395 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 5396 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5397 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5398 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5399 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5400 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5401 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5402 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 5403 | BTRFS_BLOCK_GROUP_RAID1 | |
| 5404 | BTRFS_BLOCK_GROUP_RAID10)) |
| 5405 | factor = 2; |
| 5406 | else |
| 5407 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 5408 | /* |
| 5409 | * If this block group has free space cache written out, we |
| 5410 | * need to make sure to load it if we are removing space. This |
| 5411 | * is because we need the unpinning stage to actually add the |
| 5412 | * space back to the block group, otherwise we will leak space. |
| 5413 | */ |
| 5414 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5415 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5416 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5417 | byte_in_group = bytenr - cache->key.objectid; |
| 5418 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5419 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5420 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5421 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5422 | |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 5423 | if (btrfs_test_opt(root, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5424 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 5425 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 5426 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5427 | cache->dirty = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5428 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5429 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5430 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5431 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5432 | btrfs_set_block_group_used(&cache->item, old_val); |
| 5433 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5434 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5435 | cache->space_info->bytes_used += num_bytes; |
| 5436 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5437 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5438 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5439 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5440 | old_val -= num_bytes; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 5441 | |
| 5442 | /* |
| 5443 | * No longer have used bytes in this block group, queue |
| 5444 | * it for deletion. |
| 5445 | */ |
| 5446 | if (old_val == 0) { |
| 5447 | spin_lock(&info->unused_bgs_lock); |
| 5448 | if (list_empty(&cache->bg_list)) { |
| 5449 | btrfs_get_block_group(cache); |
| 5450 | list_add_tail(&cache->bg_list, |
| 5451 | &info->unused_bgs); |
| 5452 | } |
| 5453 | spin_unlock(&info->unused_bgs_lock); |
| 5454 | } |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5455 | btrfs_set_block_group_used(&cache->item, old_val); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5456 | cache->pinned += num_bytes; |
| 5457 | cache->space_info->bytes_pinned += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5458 | cache->space_info->bytes_used -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 5459 | cache->space_info->disk_used -= num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 5460 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5461 | spin_unlock(&cache->space_info->lock); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5462 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5463 | set_extent_dirty(info->pinned_extents, |
| 5464 | bytenr, bytenr + num_bytes - 1, |
| 5465 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 5466 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5467 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5468 | total -= num_bytes; |
| 5469 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5470 | } |
| 5471 | return 0; |
| 5472 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 5473 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5474 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 5475 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5476 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5477 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5478 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 5479 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 5480 | bytenr = root->fs_info->first_logical_byte; |
| 5481 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 5482 | |
| 5483 | if (bytenr < (u64)-1) |
| 5484 | return bytenr; |
| 5485 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5486 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 5487 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5488 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 5489 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5490 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5491 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 5492 | |
| 5493 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5494 | } |
| 5495 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5496 | static int pin_down_extent(struct btrfs_root *root, |
| 5497 | struct btrfs_block_group_cache *cache, |
| 5498 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5499 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5500 | spin_lock(&cache->space_info->lock); |
| 5501 | spin_lock(&cache->lock); |
| 5502 | cache->pinned += num_bytes; |
| 5503 | cache->space_info->bytes_pinned += num_bytes; |
| 5504 | if (reserved) { |
| 5505 | cache->reserved -= num_bytes; |
| 5506 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5507 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5508 | spin_unlock(&cache->lock); |
| 5509 | spin_unlock(&cache->space_info->lock); |
| 5510 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5511 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 5512 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 5513 | if (reserved) |
| 5514 | trace_btrfs_reserved_extent_free(root, bytenr, num_bytes); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 5515 | return 0; |
| 5516 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 5517 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5518 | /* |
| 5519 | * this function must be called within transaction |
| 5520 | */ |
| 5521 | int btrfs_pin_extent(struct btrfs_root *root, |
| 5522 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5523 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5524 | struct btrfs_block_group_cache *cache; |
| 5525 | |
| 5526 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5527 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5528 | |
| 5529 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 5530 | |
| 5531 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5532 | return 0; |
| 5533 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 5534 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5535 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5536 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5537 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 5538 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5539 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5540 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5541 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5542 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5543 | |
| 5544 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5545 | if (!cache) |
| 5546 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5547 | |
| 5548 | /* |
| 5549 | * pull in the free space cache (if any) so that our pin |
| 5550 | * removes the free space from the cache. We have load_only set |
| 5551 | * to one because the slow code to read in the free extents does check |
| 5552 | * the pinned extents. |
| 5553 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 5554 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5555 | |
| 5556 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 5557 | |
| 5558 | /* 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] | 5559 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5560 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5561 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 5562 | } |
| 5563 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 5564 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 5565 | { |
| 5566 | int ret; |
| 5567 | struct btrfs_block_group_cache *block_group; |
| 5568 | struct btrfs_caching_control *caching_ctl; |
| 5569 | |
| 5570 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 5571 | if (!block_group) |
| 5572 | return -EINVAL; |
| 5573 | |
| 5574 | cache_block_group(block_group, 0); |
| 5575 | caching_ctl = get_caching_control(block_group); |
| 5576 | |
| 5577 | if (!caching_ctl) { |
| 5578 | /* Logic error */ |
| 5579 | BUG_ON(!block_group_cache_done(block_group)); |
| 5580 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 5581 | } else { |
| 5582 | mutex_lock(&caching_ctl->mutex); |
| 5583 | |
| 5584 | if (start >= caching_ctl->progress) { |
| 5585 | ret = add_excluded_extent(root, start, num_bytes); |
| 5586 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 5587 | ret = btrfs_remove_free_space(block_group, |
| 5588 | start, num_bytes); |
| 5589 | } else { |
| 5590 | num_bytes = caching_ctl->progress - start; |
| 5591 | ret = btrfs_remove_free_space(block_group, |
| 5592 | start, num_bytes); |
| 5593 | if (ret) |
| 5594 | goto out_lock; |
| 5595 | |
| 5596 | num_bytes = (start + num_bytes) - |
| 5597 | caching_ctl->progress; |
| 5598 | start = caching_ctl->progress; |
| 5599 | ret = add_excluded_extent(root, start, num_bytes); |
| 5600 | } |
| 5601 | out_lock: |
| 5602 | mutex_unlock(&caching_ctl->mutex); |
| 5603 | put_caching_control(caching_ctl); |
| 5604 | } |
| 5605 | btrfs_put_block_group(block_group); |
| 5606 | return ret; |
| 5607 | } |
| 5608 | |
| 5609 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 5610 | struct extent_buffer *eb) |
| 5611 | { |
| 5612 | struct btrfs_file_extent_item *item; |
| 5613 | struct btrfs_key key; |
| 5614 | int found_type; |
| 5615 | int i; |
| 5616 | |
| 5617 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 5618 | return 0; |
| 5619 | |
| 5620 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 5621 | btrfs_item_key_to_cpu(eb, &key, i); |
| 5622 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 5623 | continue; |
| 5624 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 5625 | found_type = btrfs_file_extent_type(eb, item); |
| 5626 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 5627 | continue; |
| 5628 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 5629 | continue; |
| 5630 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 5631 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 5632 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 5633 | } |
| 5634 | |
| 5635 | return 0; |
| 5636 | } |
| 5637 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5638 | /** |
| 5639 | * btrfs_update_reserved_bytes - update the block_group and space info counters |
| 5640 | * @cache: The cache we are manipulating |
| 5641 | * @num_bytes: The number of bytes in question |
| 5642 | * @reserve: One of the reservation enums |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5643 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5644 | * |
| 5645 | * This is called by the allocator when it reserves space, or by somebody who is |
| 5646 | * freeing space that was never actually used on disk. For example if you |
| 5647 | * reserve some space for a new leaf in transaction A and before transaction A |
| 5648 | * commits you free that leaf, you call this with reserve set to 0 in order to |
| 5649 | * clear the reservation. |
| 5650 | * |
| 5651 | * Metadata reservations should be called with RESERVE_ALLOC so we do the proper |
| 5652 | * ENOSPC accounting. For data we handle the reservation through clearing the |
| 5653 | * delalloc bits in the io_tree. We have to do this since we could end up |
| 5654 | * allocating less disk space for the amount of data we have reserved in the |
| 5655 | * case of compression. |
| 5656 | * |
| 5657 | * If this is a reservation and the block group has become read only we cannot |
| 5658 | * make the reservation and return -EAGAIN, otherwise this function always |
| 5659 | * succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5660 | */ |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5661 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5662 | u64 num_bytes, int reserve, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5663 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5664 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5665 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5666 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5667 | spin_lock(&space_info->lock); |
| 5668 | spin_lock(&cache->lock); |
| 5669 | if (reserve != RESERVE_FREE) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5670 | if (cache->ro) { |
| 5671 | ret = -EAGAIN; |
| 5672 | } else { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5673 | cache->reserved += num_bytes; |
| 5674 | space_info->bytes_reserved += num_bytes; |
| 5675 | if (reserve == RESERVE_ALLOC) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5676 | trace_btrfs_space_reservation(cache->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5677 | "space_info", space_info->flags, |
| 5678 | num_bytes, 0); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5679 | space_info->bytes_may_use -= num_bytes; |
| 5680 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5681 | |
| 5682 | if (delalloc) |
| 5683 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5684 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5685 | } else { |
| 5686 | if (cache->ro) |
| 5687 | space_info->bytes_readonly += num_bytes; |
| 5688 | cache->reserved -= num_bytes; |
| 5689 | space_info->bytes_reserved -= num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 5690 | |
| 5691 | if (delalloc) |
| 5692 | cache->delalloc_bytes -= num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5693 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5694 | spin_unlock(&cache->lock); |
| 5695 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5696 | return ret; |
| 5697 | } |
| 5698 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 5699 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5700 | struct btrfs_root *root) |
| 5701 | { |
| 5702 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5703 | struct btrfs_caching_control *next; |
| 5704 | struct btrfs_caching_control *caching_ctl; |
| 5705 | struct btrfs_block_group_cache *cache; |
| 5706 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 5707 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5708 | |
| 5709 | list_for_each_entry_safe(caching_ctl, next, |
| 5710 | &fs_info->caching_block_groups, list) { |
| 5711 | cache = caching_ctl->block_group; |
| 5712 | if (block_group_cache_done(cache)) { |
| 5713 | cache->last_byte_to_unpin = (u64)-1; |
| 5714 | list_del_init(&caching_ctl->list); |
| 5715 | put_caching_control(caching_ctl); |
| 5716 | } else { |
| 5717 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 5718 | } |
| 5719 | } |
| 5720 | |
| 5721 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5722 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 5723 | else |
| 5724 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 5725 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 5726 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5727 | |
| 5728 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5729 | } |
| 5730 | |
| 5731 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 5732 | { |
| 5733 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5734 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5735 | struct btrfs_space_info *space_info; |
| 5736 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5737 | u64 len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5738 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5739 | |
| 5740 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5741 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5742 | if (!cache || |
| 5743 | start >= cache->key.objectid + cache->key.offset) { |
| 5744 | if (cache) |
| 5745 | btrfs_put_block_group(cache); |
| 5746 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5747 | BUG_ON(!cache); /* Logic error */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5748 | } |
| 5749 | |
| 5750 | len = cache->key.objectid + cache->key.offset - start; |
| 5751 | len = min(len, end + 1 - start); |
| 5752 | |
| 5753 | if (start < cache->last_byte_to_unpin) { |
| 5754 | len = min(len, cache->last_byte_to_unpin - start); |
| 5755 | btrfs_add_free_space(cache, start, len); |
| 5756 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5757 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5758 | start += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5759 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5760 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5761 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5762 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5763 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5764 | space_info->bytes_pinned -= len; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 5765 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5766 | if (cache->ro) { |
| 5767 | space_info->bytes_readonly += len; |
| 5768 | readonly = true; |
| 5769 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 5770 | spin_unlock(&cache->lock); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 5771 | if (!readonly && global_rsv->space_info == space_info) { |
| 5772 | spin_lock(&global_rsv->lock); |
| 5773 | if (!global_rsv->full) { |
| 5774 | len = min(len, global_rsv->size - |
| 5775 | global_rsv->reserved); |
| 5776 | global_rsv->reserved += len; |
| 5777 | space_info->bytes_may_use += len; |
| 5778 | if (global_rsv->reserved >= global_rsv->size) |
| 5779 | global_rsv->full = 1; |
| 5780 | } |
| 5781 | spin_unlock(&global_rsv->lock); |
| 5782 | } |
| 5783 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5784 | } |
| 5785 | |
| 5786 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 5787 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 5788 | return 0; |
| 5789 | } |
| 5790 | |
| 5791 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5792 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5793 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5794 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5795 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5796 | u64 start; |
| 5797 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5798 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5799 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5800 | if (trans->aborted) |
| 5801 | return 0; |
| 5802 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5803 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 5804 | unpin = &fs_info->freed_extents[1]; |
| 5805 | else |
| 5806 | unpin = &fs_info->freed_extents[0]; |
| 5807 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5808 | while (1) { |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5809 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 5810 | EXTENT_DIRTY, NULL); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5811 | if (ret) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5812 | break; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5813 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 5814 | if (btrfs_test_opt(root, DISCARD)) |
| 5815 | ret = btrfs_discard_extent(root, start, |
| 5816 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 5817 | |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 5818 | clear_extent_dirty(unpin, start, end, GFP_NOFS); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 5819 | unpin_extent_range(root, start, end); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5820 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5821 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 5822 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 5823 | return 0; |
| 5824 | } |
| 5825 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 5826 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 5827 | u64 owner, u64 root_objectid) |
| 5828 | { |
| 5829 | struct btrfs_space_info *space_info; |
| 5830 | u64 flags; |
| 5831 | |
| 5832 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 5833 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 5834 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 5835 | else |
| 5836 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 5837 | } else { |
| 5838 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 5839 | } |
| 5840 | |
| 5841 | space_info = __find_space_info(fs_info, flags); |
| 5842 | BUG_ON(!space_info); /* Logic bug */ |
| 5843 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 5844 | } |
| 5845 | |
| 5846 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5847 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 5848 | struct btrfs_root *root, |
| 5849 | u64 bytenr, u64 num_bytes, u64 parent, |
| 5850 | u64 root_objectid, u64 owner_objectid, |
| 5851 | u64 owner_offset, int refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5852 | struct btrfs_delayed_extent_op *extent_op, |
| 5853 | int no_quota) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5854 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 5855 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5856 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 5857 | struct btrfs_fs_info *info = root->fs_info; |
| 5858 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5859 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5860 | struct btrfs_extent_item *ei; |
| 5861 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 5862 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5863 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5864 | int extent_slot = 0; |
| 5865 | int found_extent = 0; |
| 5866 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5867 | u32 item_size; |
| 5868 | u64 refs; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5869 | int last_ref = 0; |
| 5870 | enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_SUB_EXCL; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5871 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 5872 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 5873 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5874 | if (!info->quota_enabled || !is_fstree(root_objectid)) |
| 5875 | no_quota = 1; |
| 5876 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 5877 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 5878 | if (!path) |
| 5879 | return -ENOMEM; |
| 5880 | |
Chris Mason | 3c12ac7 | 2008-04-21 12:01:38 -0400 | [diff] [blame] | 5881 | path->reada = 1; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5882 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5883 | |
| 5884 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 5885 | BUG_ON(!is_data && refs_to_drop != 1); |
| 5886 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5887 | if (is_data) |
| 5888 | skinny_metadata = 0; |
| 5889 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5890 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 5891 | bytenr, num_bytes, parent, |
| 5892 | root_objectid, owner_objectid, |
| 5893 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5894 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5895 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5896 | while (extent_slot >= 0) { |
| 5897 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5898 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5899 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5900 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5901 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5902 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5903 | found_extent = 1; |
| 5904 | break; |
| 5905 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5906 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 5907 | key.offset == owner_objectid) { |
| 5908 | found_extent = 1; |
| 5909 | break; |
| 5910 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5911 | if (path->slots[0] - extent_slot > 5) |
| 5912 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5913 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 5914 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5915 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5916 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 5917 | if (found_extent && item_size < sizeof(*ei)) |
| 5918 | found_extent = 0; |
| 5919 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5920 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5921 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 5922 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5923 | NULL, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 5924 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5925 | if (ret) { |
| 5926 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5927 | goto out; |
| 5928 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5929 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5930 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5931 | |
| 5932 | key.objectid = bytenr; |
| 5933 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5934 | key.offset = num_bytes; |
| 5935 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5936 | if (!is_data && skinny_metadata) { |
| 5937 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 5938 | key.offset = owner_objectid; |
| 5939 | } |
| 5940 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5941 | ret = btrfs_search_slot(trans, extent_root, |
| 5942 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5943 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 5944 | /* |
| 5945 | * Couldn't find our skinny metadata item, |
| 5946 | * see if we have ye olde extent item. |
| 5947 | */ |
| 5948 | path->slots[0]--; |
| 5949 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 5950 | path->slots[0]); |
| 5951 | if (key.objectid == bytenr && |
| 5952 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 5953 | key.offset == num_bytes) |
| 5954 | ret = 0; |
| 5955 | } |
| 5956 | |
| 5957 | if (ret > 0 && skinny_metadata) { |
| 5958 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 5959 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 5960 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 5961 | key.offset = num_bytes; |
| 5962 | btrfs_release_path(path); |
| 5963 | ret = btrfs_search_slot(trans, extent_root, |
| 5964 | &key, path, -1, 1); |
| 5965 | } |
| 5966 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5967 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5968 | 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] | 5969 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 5970 | if (ret > 0) |
| 5971 | btrfs_print_leaf(extent_root, |
| 5972 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 5973 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5974 | if (ret < 0) { |
| 5975 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5976 | goto out; |
| 5977 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 5978 | extent_slot = path->slots[0]; |
| 5979 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 5980 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5981 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 5982 | btrfs_err(info, |
| 5983 | "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] | 5984 | bytenr, parent, root_objectid, owner_objectid, |
| 5985 | owner_offset); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 5986 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5987 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5988 | } else { |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 5989 | btrfs_abort_transaction(trans, extent_root, ret); |
| 5990 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 5991 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5992 | |
| 5993 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5994 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 5995 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 5996 | if (item_size < sizeof(*ei)) { |
| 5997 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 5998 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 5999 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6000 | if (ret < 0) { |
| 6001 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6002 | goto out; |
| 6003 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6004 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6005 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6006 | path->leave_spinning = 1; |
| 6007 | |
| 6008 | key.objectid = bytenr; |
| 6009 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6010 | key.offset = num_bytes; |
| 6011 | |
| 6012 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 6013 | -1, 1); |
| 6014 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6015 | 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] | 6016 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6017 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 6018 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6019 | if (ret < 0) { |
| 6020 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6021 | goto out; |
| 6022 | } |
| 6023 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6024 | extent_slot = path->slots[0]; |
| 6025 | leaf = path->nodes[0]; |
| 6026 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6027 | } |
| 6028 | #endif |
| 6029 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6030 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 6031 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6032 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 6033 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6034 | struct btrfs_tree_block_info *bi; |
| 6035 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 6036 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 6037 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6038 | } |
| 6039 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6040 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6041 | if (refs < refs_to_drop) { |
| 6042 | btrfs_err(info, "trying to drop %d refs but we only have %Lu " |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 6043 | "for bytenr %Lu", refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6044 | ret = -EINVAL; |
| 6045 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6046 | goto out; |
| 6047 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6048 | refs -= refs_to_drop; |
| 6049 | |
| 6050 | if (refs > 0) { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6051 | type = BTRFS_QGROUP_OPER_SUB_SHARED; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6052 | if (extent_op) |
| 6053 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 6054 | /* |
| 6055 | * In the case of inline back ref, reference count will |
| 6056 | * be updated by remove_extent_backref |
| 6057 | */ |
| 6058 | if (iref) { |
| 6059 | BUG_ON(!found_extent); |
| 6060 | } else { |
| 6061 | btrfs_set_extent_refs(leaf, ei, refs); |
| 6062 | btrfs_mark_buffer_dirty(leaf); |
| 6063 | } |
| 6064 | if (found_extent) { |
| 6065 | ret = remove_extent_backref(trans, extent_root, path, |
| 6066 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6067 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6068 | if (ret) { |
| 6069 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6070 | goto out; |
| 6071 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6072 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6073 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 6074 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6075 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6076 | if (found_extent) { |
| 6077 | BUG_ON(is_data && refs_to_drop != |
| 6078 | extent_data_ref_count(root, path, iref)); |
| 6079 | if (iref) { |
| 6080 | BUG_ON(path->slots[0] != extent_slot); |
| 6081 | } else { |
| 6082 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 6083 | path->slots[0] = extent_slot; |
| 6084 | num_to_del = 2; |
| 6085 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 6086 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6087 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6088 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6089 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 6090 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6091 | if (ret) { |
| 6092 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6093 | goto out; |
| 6094 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6095 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 6096 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6097 | if (is_data) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6098 | ret = btrfs_del_csums(trans, root, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6099 | if (ret) { |
| 6100 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6101 | goto out; |
| 6102 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 6103 | } |
| 6104 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 6105 | ret = update_block_group(root, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6106 | if (ret) { |
| 6107 | btrfs_abort_transaction(trans, extent_root, ret); |
| 6108 | goto out; |
| 6109 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6110 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6111 | btrfs_release_path(path); |
| 6112 | |
| 6113 | /* Deal with the quota accounting */ |
| 6114 | if (!ret && last_ref && !no_quota) { |
| 6115 | int mod_seq = 0; |
| 6116 | |
| 6117 | if (owner_objectid >= BTRFS_FIRST_FREE_OBJECTID && |
| 6118 | type == BTRFS_QGROUP_OPER_SUB_SHARED) |
| 6119 | mod_seq = 1; |
| 6120 | |
| 6121 | ret = btrfs_qgroup_record_ref(trans, info, root_objectid, |
| 6122 | bytenr, num_bytes, type, |
| 6123 | mod_seq); |
| 6124 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6125 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6126 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6127 | return ret; |
| 6128 | } |
| 6129 | |
| 6130 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6131 | * 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] | 6132 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 6133 | * a given extent, and if there are no other delayed refs to be processed, it |
| 6134 | * removes it from the tree. |
| 6135 | */ |
| 6136 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 6137 | struct btrfs_root *root, u64 bytenr) |
| 6138 | { |
| 6139 | struct btrfs_delayed_ref_head *head; |
| 6140 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6141 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6142 | |
| 6143 | delayed_refs = &trans->transaction->delayed_refs; |
| 6144 | spin_lock(&delayed_refs->lock); |
| 6145 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 6146 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6147 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6148 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6149 | spin_lock(&head->lock); |
| 6150 | if (rb_first(&head->ref_root)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6151 | goto out; |
| 6152 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6153 | if (head->extent_op) { |
| 6154 | if (!head->must_insert_reserved) |
| 6155 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 6156 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6157 | head->extent_op = NULL; |
| 6158 | } |
| 6159 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6160 | /* |
| 6161 | * waiting for the lock here would deadlock. If someone else has it |
| 6162 | * locked they are already in the process of dropping it anyway |
| 6163 | */ |
| 6164 | if (!mutex_trylock(&head->mutex)) |
| 6165 | goto out; |
| 6166 | |
| 6167 | /* |
| 6168 | * at this point we have a head with no other entries. Go |
| 6169 | * ahead and process it. |
| 6170 | */ |
| 6171 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 6172 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6173 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6174 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6175 | |
| 6176 | /* |
| 6177 | * we don't take a ref on the node because we're removing it from the |
| 6178 | * tree, so we just steal the ref the tree was holding. |
| 6179 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6180 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6181 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 6182 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6183 | head->processing = 0; |
| 6184 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6185 | spin_unlock(&delayed_refs->lock); |
| 6186 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6187 | BUG_ON(head->extent_op); |
| 6188 | if (head->must_insert_reserved) |
| 6189 | ret = 1; |
| 6190 | |
| 6191 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6192 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6193 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6194 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 6195 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 6196 | |
| 6197 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 6198 | spin_unlock(&delayed_refs->lock); |
| 6199 | return 0; |
| 6200 | } |
| 6201 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6202 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 6203 | struct btrfs_root *root, |
| 6204 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6205 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6206 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6207 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6208 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6209 | int ret; |
| 6210 | |
| 6211 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6212 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 6213 | buf->start, buf->len, |
| 6214 | parent, root->root_key.objectid, |
| 6215 | btrfs_header_level(buf), |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 6216 | BTRFS_DROP_DELAYED_REF, NULL, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6217 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6218 | } |
| 6219 | |
| 6220 | if (!last_ref) |
| 6221 | return; |
| 6222 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6223 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6224 | |
| 6225 | if (btrfs_header_generation(buf) == trans->transid) { |
| 6226 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 6227 | ret = check_ref_cleanup(trans, root, buf->start); |
| 6228 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6229 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6230 | } |
| 6231 | |
| 6232 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 6233 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 6234 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6235 | } |
| 6236 | |
| 6237 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 6238 | |
| 6239 | btrfs_add_free_space(cache, buf->start, buf->len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6240 | btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 6241 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6242 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6243 | } |
| 6244 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6245 | if (pin) |
| 6246 | add_pinned_bytes(root->fs_info, buf->len, |
| 6247 | btrfs_header_level(buf), |
| 6248 | root->root_key.objectid); |
| 6249 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 6250 | /* |
| 6251 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 6252 | * anymore. |
| 6253 | */ |
| 6254 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6255 | btrfs_put_block_group(cache); |
| 6256 | } |
| 6257 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6258 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6259 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 6260 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6261 | u64 owner, u64 offset, int no_quota) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6262 | { |
| 6263 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6264 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6265 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 6266 | if (btrfs_test_is_dummy_root(root)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 6267 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 6268 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6269 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 6270 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6271 | /* |
| 6272 | * tree log blocks never actually go into the extent allocation |
| 6273 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6274 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6275 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 6276 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6277 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6278 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6279 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6280 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6281 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 6282 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6283 | parent, root_objectid, (int)owner, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6284 | BTRFS_DROP_DELAYED_REF, NULL, no_quota); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6285 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 6286 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 6287 | num_bytes, |
| 6288 | parent, root_objectid, owner, |
| 6289 | offset, BTRFS_DROP_DELAYED_REF, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6290 | NULL, no_quota); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6291 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6292 | return ret; |
| 6293 | } |
| 6294 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6295 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6296 | * when we wait for progress in the block group caching, its because |
| 6297 | * our allocation attempt failed at least once. So, we must sleep |
| 6298 | * and let some progress happen before we try again. |
| 6299 | * |
| 6300 | * This function will sleep at least once waiting for new free space to |
| 6301 | * show up, and then it will check the block group free space numbers |
| 6302 | * for our min num_bytes. Another option is to have it go ahead |
| 6303 | * and look in the rbtree for a free extent of a given size, but this |
| 6304 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6305 | * |
| 6306 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 6307 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6308 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6309 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6310 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 6311 | u64 num_bytes) |
| 6312 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6313 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6314 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6315 | caching_ctl = get_caching_control(cache); |
| 6316 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6317 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6318 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6319 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 6320 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6321 | |
| 6322 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6323 | } |
| 6324 | |
| 6325 | static noinline int |
| 6326 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 6327 | { |
| 6328 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6329 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6330 | |
| 6331 | caching_ctl = get_caching_control(cache); |
| 6332 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6333 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6334 | |
| 6335 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6336 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 6337 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6338 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6339 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6340 | } |
| 6341 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6342 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6343 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6344 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6345 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6346 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6347 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6348 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6349 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6350 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 6351 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6352 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6353 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6354 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6355 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6356 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 6357 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6358 | } |
| 6359 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6360 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6361 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 6362 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 6363 | } |
| 6364 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6365 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 6366 | [BTRFS_RAID_RAID10] = "raid10", |
| 6367 | [BTRFS_RAID_RAID1] = "raid1", |
| 6368 | [BTRFS_RAID_DUP] = "dup", |
| 6369 | [BTRFS_RAID_RAID0] = "raid0", |
| 6370 | [BTRFS_RAID_SINGLE] = "single", |
| 6371 | [BTRFS_RAID_RAID5] = "raid5", |
| 6372 | [BTRFS_RAID_RAID6] = "raid6", |
| 6373 | }; |
| 6374 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 6375 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 6376 | { |
| 6377 | if (type >= BTRFS_NR_RAID_TYPES) |
| 6378 | return NULL; |
| 6379 | |
| 6380 | return btrfs_raid_type_names[type]; |
| 6381 | } |
| 6382 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6383 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6384 | LOOP_CACHING_NOWAIT = 0, |
| 6385 | LOOP_CACHING_WAIT = 1, |
| 6386 | LOOP_ALLOC_CHUNK = 2, |
| 6387 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6388 | }; |
| 6389 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6390 | static inline void |
| 6391 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 6392 | int delalloc) |
| 6393 | { |
| 6394 | if (delalloc) |
| 6395 | down_read(&cache->data_rwsem); |
| 6396 | } |
| 6397 | |
| 6398 | static inline void |
| 6399 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 6400 | int delalloc) |
| 6401 | { |
| 6402 | btrfs_get_block_group(cache); |
| 6403 | if (delalloc) |
| 6404 | down_read(&cache->data_rwsem); |
| 6405 | } |
| 6406 | |
| 6407 | static struct btrfs_block_group_cache * |
| 6408 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 6409 | struct btrfs_free_cluster *cluster, |
| 6410 | int delalloc) |
| 6411 | { |
| 6412 | struct btrfs_block_group_cache *used_bg; |
| 6413 | bool locked = false; |
| 6414 | again: |
| 6415 | spin_lock(&cluster->refill_lock); |
| 6416 | if (locked) { |
| 6417 | if (used_bg == cluster->block_group) |
| 6418 | return used_bg; |
| 6419 | |
| 6420 | up_read(&used_bg->data_rwsem); |
| 6421 | btrfs_put_block_group(used_bg); |
| 6422 | } |
| 6423 | |
| 6424 | used_bg = cluster->block_group; |
| 6425 | if (!used_bg) |
| 6426 | return NULL; |
| 6427 | |
| 6428 | if (used_bg == block_group) |
| 6429 | return used_bg; |
| 6430 | |
| 6431 | btrfs_get_block_group(used_bg); |
| 6432 | |
| 6433 | if (!delalloc) |
| 6434 | return used_bg; |
| 6435 | |
| 6436 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 6437 | return used_bg; |
| 6438 | |
| 6439 | spin_unlock(&cluster->refill_lock); |
| 6440 | down_read(&used_bg->data_rwsem); |
| 6441 | locked = true; |
| 6442 | goto again; |
| 6443 | } |
| 6444 | |
| 6445 | static inline void |
| 6446 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 6447 | int delalloc) |
| 6448 | { |
| 6449 | if (delalloc) |
| 6450 | up_read(&cache->data_rwsem); |
| 6451 | btrfs_put_block_group(cache); |
| 6452 | } |
| 6453 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6454 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6455 | * walks the btree of allocated extents and find a hole of a given size. |
| 6456 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6457 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 6458 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6459 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6460 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6461 | * |
| 6462 | * If there is no suitable free space, we will record the max size of |
| 6463 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6464 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6465 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6466 | u64 num_bytes, u64 empty_size, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 6467 | u64 hint_byte, struct btrfs_key *ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6468 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6469 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6470 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6471 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6472 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6473 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 6474 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6475 | u64 max_extent_size = 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6476 | int empty_cluster = 2 * 1024 * 1024; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6477 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6478 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6479 | int index = __get_raid_index(flags); |
| 6480 | int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ? |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6481 | RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC; |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6482 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6483 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6484 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6485 | bool have_caching_bg = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6486 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6487 | WARN_ON(num_bytes < root->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 6488 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6489 | ins->objectid = 0; |
| 6490 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 6491 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6492 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6493 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6494 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6495 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6496 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 6497 | return -ENOSPC; |
| 6498 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6499 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6500 | /* |
| 6501 | * If the space info is for both data and metadata it means we have a |
| 6502 | * small filesystem and we can't use the clustering stuff. |
| 6503 | */ |
| 6504 | if (btrfs_mixed_space_info(space_info)) |
| 6505 | use_cluster = false; |
| 6506 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6507 | if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6508 | last_ptr = &root->fs_info->meta_alloc_cluster; |
Chris Mason | 536ac8a | 2009-02-12 09:41:38 -0500 | [diff] [blame] | 6509 | if (!btrfs_test_opt(root, SSD)) |
| 6510 | empty_cluster = 64 * 1024; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6511 | } |
| 6512 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6513 | if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster && |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 6514 | btrfs_test_opt(root, SSD)) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6515 | last_ptr = &root->fs_info->data_alloc_cluster; |
| 6516 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6517 | |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6518 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6519 | spin_lock(&last_ptr->lock); |
| 6520 | if (last_ptr->block_group) |
| 6521 | hint_byte = last_ptr->window_start; |
| 6522 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6523 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6524 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6525 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 6526 | search_start = max(search_start, hint_byte); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 6527 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6528 | if (!last_ptr) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6529 | empty_cluster = 0; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6530 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6531 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6532 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 6533 | search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6534 | /* |
| 6535 | * we don't want to use the block group if it doesn't match our |
| 6536 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6537 | * |
| 6538 | * However if we are re-searching with an ideal block group |
| 6539 | * 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] | 6540 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6541 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6542 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6543 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6544 | if (list_empty(&block_group->list) || |
| 6545 | block_group->ro) { |
| 6546 | /* |
| 6547 | * someone is removing this block group, |
| 6548 | * we can't jump into the have_block_group |
| 6549 | * target because our list pointers are not |
| 6550 | * valid |
| 6551 | */ |
| 6552 | btrfs_put_block_group(block_group); |
| 6553 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6554 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6555 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6556 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6557 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6558 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6559 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6560 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6561 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6562 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6563 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6564 | have_caching_bg = false; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6565 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6566 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 6567 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6568 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6569 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 6570 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6571 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6572 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6573 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6574 | /* |
| 6575 | * this can happen if we end up cycling through all the |
| 6576 | * raid types, but we want to make sure we only allocate |
| 6577 | * for the proper type. |
| 6578 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6579 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6580 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 6581 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 6582 | BTRFS_BLOCK_GROUP_RAID5 | |
| 6583 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6584 | BTRFS_BLOCK_GROUP_RAID10; |
| 6585 | |
| 6586 | /* |
| 6587 | * if they asked for extra copies and this block group |
| 6588 | * doesn't provide them, bail. This does allow us to |
| 6589 | * fill raid0 from raid1. |
| 6590 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6591 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 6592 | goto loop; |
| 6593 | } |
| 6594 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6595 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 6596 | cached = block_group_cache_done(block_group); |
| 6597 | if (unlikely(!cached)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6598 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 6599 | BUG_ON(ret < 0); |
| 6600 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6601 | } |
| 6602 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 6603 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 6604 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 6605 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6606 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6607 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6608 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6609 | * Ok we want to try and use the cluster allocator, so |
| 6610 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6611 | */ |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6612 | if (last_ptr) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6613 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6614 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6615 | /* |
| 6616 | * the refill lock keeps out other |
| 6617 | * people trying to start a new cluster |
| 6618 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6619 | used_block_group = btrfs_lock_cluster(block_group, |
| 6620 | last_ptr, |
| 6621 | delalloc); |
| 6622 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6623 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 6624 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6625 | if (used_block_group != block_group && |
| 6626 | (used_block_group->ro || |
| 6627 | !block_group_bits(used_block_group, flags))) |
| 6628 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6629 | |
| 6630 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6631 | last_ptr, |
| 6632 | num_bytes, |
| 6633 | used_block_group->key.objectid, |
| 6634 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6635 | if (offset) { |
| 6636 | /* we have a block, we're done */ |
| 6637 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6638 | trace_btrfs_reserve_extent_cluster(root, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 6639 | used_block_group, |
| 6640 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6641 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6642 | btrfs_release_block_group(block_group, |
| 6643 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6644 | block_group = used_block_group; |
| 6645 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6646 | goto checks; |
| 6647 | } |
| 6648 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 6649 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6650 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6651 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 6652 | * set up a new clusters, so lets just skip it |
| 6653 | * and let the allocator find whatever block |
| 6654 | * it can find. If we reach this point, we |
| 6655 | * will have tried the cluster allocator |
| 6656 | * plenty of times and not have found |
| 6657 | * anything, so we are likely way too |
| 6658 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6659 | * anything. |
| 6660 | * |
| 6661 | * However, if the cluster is taken from the |
| 6662 | * current block group, release the cluster |
| 6663 | * first, so that we stand a better chance of |
| 6664 | * succeeding in the unclustered |
| 6665 | * allocation. */ |
| 6666 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6667 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6668 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6669 | btrfs_release_block_group(used_block_group, |
| 6670 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6671 | goto unclustered_alloc; |
| 6672 | } |
| 6673 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6674 | /* |
| 6675 | * this cluster didn't work out, free it and |
| 6676 | * start over |
| 6677 | */ |
| 6678 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 6679 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6680 | if (used_block_group != block_group) |
| 6681 | btrfs_release_block_group(used_block_group, |
| 6682 | delalloc); |
| 6683 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6684 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 6685 | spin_unlock(&last_ptr->refill_lock); |
| 6686 | goto unclustered_alloc; |
| 6687 | } |
| 6688 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 6689 | aligned_cluster = max_t(unsigned long, |
| 6690 | empty_cluster + empty_size, |
| 6691 | block_group->full_stripe_len); |
| 6692 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6693 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6694 | ret = btrfs_find_space_cluster(root, block_group, |
| 6695 | last_ptr, search_start, |
| 6696 | num_bytes, |
| 6697 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6698 | if (ret == 0) { |
| 6699 | /* |
| 6700 | * now pull our allocation out of this |
| 6701 | * cluster |
| 6702 | */ |
| 6703 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6704 | last_ptr, |
| 6705 | num_bytes, |
| 6706 | search_start, |
| 6707 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6708 | if (offset) { |
| 6709 | /* we found one, proceed */ |
| 6710 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6711 | trace_btrfs_reserve_extent_cluster(root, |
| 6712 | block_group, search_start, |
| 6713 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6714 | goto checks; |
| 6715 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6716 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 6717 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6718 | spin_unlock(&last_ptr->refill_lock); |
| 6719 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6720 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6721 | wait_block_group_cache_progress(block_group, |
| 6722 | num_bytes + empty_cluster + empty_size); |
| 6723 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6724 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6725 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6726 | /* |
| 6727 | * at this point we either didn't find a cluster |
| 6728 | * or we weren't able to allocate a block from our |
| 6729 | * cluster. Free the cluster we've been trying |
| 6730 | * to use, and go to the next block group |
| 6731 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6732 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6733 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6734 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6735 | } |
| 6736 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 6737 | unclustered_alloc: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6738 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 6739 | if (cached && |
| 6740 | block_group->free_space_ctl->free_space < |
| 6741 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6742 | if (block_group->free_space_ctl->free_space > |
| 6743 | max_extent_size) |
| 6744 | max_extent_size = |
| 6745 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 6746 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6747 | goto loop; |
| 6748 | } |
| 6749 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 6750 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6751 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6752 | num_bytes, empty_size, |
| 6753 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6754 | /* |
| 6755 | * If we didn't find a chunk, and we haven't failed on this |
| 6756 | * block group before, and this block group is in the middle of |
| 6757 | * caching and we are ok with waiting, then go ahead and wait |
| 6758 | * for progress to be made, and set failed_alloc to true. |
| 6759 | * |
| 6760 | * If failed_alloc is true then we've already waited on this |
| 6761 | * block group once and should move on to the next block group. |
| 6762 | */ |
| 6763 | if (!offset && !failed_alloc && !cached && |
| 6764 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6765 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6766 | num_bytes + empty_size); |
| 6767 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6768 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6769 | } else if (!offset) { |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6770 | if (!cached) |
| 6771 | have_caching_bg = true; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6772 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6773 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6774 | checks: |
David Sterba | 4e54b17 | 2014-06-05 01:39:19 +0200 | [diff] [blame] | 6775 | search_start = ALIGN(offset, root->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 6776 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6777 | /* move on to the next group */ |
| 6778 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6779 | block_group->key.objectid + block_group->key.offset) { |
| 6780 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6781 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6782 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6783 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6784 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6785 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 6786 | search_start - offset); |
| 6787 | BUG_ON(offset > search_start); |
| 6788 | |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6789 | ret = btrfs_update_reserved_bytes(block_group, num_bytes, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6790 | alloc_type, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6791 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 6792 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6793 | goto loop; |
| 6794 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6795 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6796 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6797 | ins->objectid = search_start; |
| 6798 | ins->offset = num_bytes; |
| 6799 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 6800 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 6801 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6802 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6803 | break; |
| 6804 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 6805 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 6806 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6807 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6808 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6809 | } |
| 6810 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 6811 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 6812 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 6813 | goto search; |
| 6814 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6815 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 6816 | goto search; |
| 6817 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 6818 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 6819 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 6820 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6821 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 6822 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 6823 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 6824 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6825 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6826 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6827 | index = 0; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6828 | loop++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6829 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6830 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 6831 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6832 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 6833 | trans = current->journal_info; |
| 6834 | if (trans) |
| 6835 | exist = 1; |
| 6836 | else |
| 6837 | trans = btrfs_join_transaction(root); |
| 6838 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6839 | if (IS_ERR(trans)) { |
| 6840 | ret = PTR_ERR(trans); |
| 6841 | goto out; |
| 6842 | } |
| 6843 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6844 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6845 | CHUNK_ALLOC_FORCE); |
| 6846 | /* |
| 6847 | * Do not bail out on ENOSPC since we |
| 6848 | * can do more things. |
| 6849 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6850 | if (ret < 0 && ret != -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6851 | btrfs_abort_transaction(trans, |
| 6852 | root, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6853 | else |
| 6854 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 6855 | if (!exist) |
| 6856 | btrfs_end_transaction(trans, root); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6857 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 6858 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6859 | } |
| 6860 | |
| 6861 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6862 | empty_size = 0; |
| 6863 | empty_cluster = 0; |
| 6864 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 6865 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 6866 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6867 | } else if (!ins->objectid) { |
| 6868 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6869 | } else if (ins->objectid) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 6870 | ret = 0; |
| 6871 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6872 | out: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6873 | if (ret == -ENOSPC) |
| 6874 | ins->offset = max_extent_size; |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 6875 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6876 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 6877 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6878 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 6879 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6880 | { |
| 6881 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6882 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6883 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6884 | spin_lock(&info->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6885 | printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6886 | info->flags, |
| 6887 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 6888 | info->bytes_reserved - info->bytes_readonly, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6889 | (info->full) ? "" : "not "); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6890 | printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, " |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6891 | "reserved=%llu, may_use=%llu, readonly=%llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6892 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 6893 | info->bytes_reserved, info->bytes_may_use, |
| 6894 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6895 | spin_unlock(&info->lock); |
| 6896 | |
| 6897 | if (!dump_block_groups) |
| 6898 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6899 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6900 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6901 | again: |
| 6902 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6903 | spin_lock(&cache->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 6904 | printk(KERN_INFO "BTRFS: " |
| 6905 | "block group %llu has %llu bytes, " |
| 6906 | "%llu used %llu pinned %llu reserved %s\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6907 | cache->key.objectid, cache->key.offset, |
| 6908 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 6909 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6910 | btrfs_dump_free_space(cache, bytes); |
| 6911 | spin_unlock(&cache->lock); |
| 6912 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6913 | if (++index < BTRFS_NR_RAID_TYPES) |
| 6914 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6915 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6916 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6917 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6918 | int btrfs_reserve_extent(struct btrfs_root *root, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6919 | u64 num_bytes, u64 min_alloc_size, |
| 6920 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6921 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6922 | { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6923 | bool final_tried = false; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6924 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 6925 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6926 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6927 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 6928 | again: |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6929 | WARN_ON(num_bytes < root->sectorsize); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6930 | ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6931 | flags, delalloc); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6932 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6933 | if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 6934 | if (!final_tried && ins->offset) { |
| 6935 | num_bytes = min(num_bytes >> 1, ins->offset); |
Zach Brown | 24542bf | 2012-11-16 00:04:43 +0000 | [diff] [blame] | 6936 | num_bytes = round_down(num_bytes, root->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6937 | num_bytes = max(num_bytes, min_alloc_size); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6938 | if (num_bytes == min_alloc_size) |
| 6939 | final_tried = true; |
| 6940 | goto again; |
| 6941 | } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 6942 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6943 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 6944 | sinfo = __find_space_info(root->fs_info, flags); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6945 | btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6946 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 6947 | if (sinfo) |
| 6948 | dump_space_info(sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 6949 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 6950 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6951 | |
| 6952 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6953 | } |
| 6954 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6955 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6956 | u64 start, u64 len, |
| 6957 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 6958 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6959 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6960 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6961 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6962 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 6963 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6964 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6965 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6966 | return -ENOSPC; |
| 6967 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6968 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6969 | if (btrfs_test_opt(root, DISCARD)) |
| 6970 | ret = btrfs_discard_extent(root, start, len, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6971 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6972 | if (pin) |
| 6973 | pin_down_extent(root, cache, start, len, 1); |
| 6974 | else { |
| 6975 | btrfs_add_free_space(cache, start, len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6976 | btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6977 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6978 | btrfs_put_block_group(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6979 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 6980 | trace_btrfs_reserved_extent_free(root, start, len); |
| 6981 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6982 | return ret; |
| 6983 | } |
| 6984 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6985 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6986 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6987 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6988 | return __btrfs_free_reserved_extent(root, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6989 | } |
| 6990 | |
| 6991 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 6992 | u64 start, u64 len) |
| 6993 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6994 | return __btrfs_free_reserved_extent(root, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6995 | } |
| 6996 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6997 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 6998 | struct btrfs_root *root, |
| 6999 | u64 parent, u64 root_objectid, |
| 7000 | u64 flags, u64 owner, u64 offset, |
| 7001 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7002 | { |
| 7003 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7004 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7005 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7006 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7007 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7008 | struct extent_buffer *leaf; |
| 7009 | int type; |
| 7010 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 7011 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7012 | if (parent > 0) |
| 7013 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 7014 | else |
| 7015 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 7016 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7017 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7018 | |
| 7019 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 7020 | if (!path) |
| 7021 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7022 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7023 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7024 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 7025 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7026 | if (ret) { |
| 7027 | btrfs_free_path(path); |
| 7028 | return ret; |
| 7029 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7030 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7031 | leaf = path->nodes[0]; |
| 7032 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7033 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7034 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 7035 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7036 | btrfs_set_extent_flags(leaf, extent_item, |
| 7037 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7038 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7039 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 7040 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 7041 | if (parent > 0) { |
| 7042 | struct btrfs_shared_data_ref *ref; |
| 7043 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 7044 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7045 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 7046 | } else { |
| 7047 | struct btrfs_extent_data_ref *ref; |
| 7048 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 7049 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 7050 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 7051 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 7052 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 7053 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 7054 | |
| 7055 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7056 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 7057 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7058 | /* Always set parent to 0 here since its exclusive anyway. */ |
| 7059 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 7060 | ins->objectid, ins->offset, |
| 7061 | BTRFS_QGROUP_OPER_ADD_EXCL, 0); |
| 7062 | if (ret) |
| 7063 | return ret; |
| 7064 | |
Liu Bo | c53d613 | 2012-12-27 09:01:19 +0000 | [diff] [blame] | 7065 | ret = update_block_group(root, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7066 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7067 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7068 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 7069 | BUG(); |
| 7070 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7071 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7072 | return ret; |
| 7073 | } |
| 7074 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7075 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 7076 | struct btrfs_root *root, |
| 7077 | u64 parent, u64 root_objectid, |
| 7078 | u64 flags, struct btrfs_disk_key *key, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7079 | int level, struct btrfs_key *ins, |
| 7080 | int no_quota) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7081 | { |
| 7082 | int ret; |
| 7083 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 7084 | struct btrfs_extent_item *extent_item; |
| 7085 | struct btrfs_tree_block_info *block_info; |
| 7086 | struct btrfs_extent_inline_ref *iref; |
| 7087 | struct btrfs_path *path; |
| 7088 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7089 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7090 | u64 num_bytes = ins->offset; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7091 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7092 | SKINNY_METADATA); |
| 7093 | |
| 7094 | if (!skinny_metadata) |
| 7095 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7096 | |
| 7097 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7098 | if (!path) { |
| 7099 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7100 | root->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 7101 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7102 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7103 | |
| 7104 | path->leave_spinning = 1; |
| 7105 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 7106 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7107 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 7108 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7109 | root->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7110 | btrfs_free_path(path); |
| 7111 | return ret; |
| 7112 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7113 | |
| 7114 | leaf = path->nodes[0]; |
| 7115 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 7116 | struct btrfs_extent_item); |
| 7117 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 7118 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 7119 | btrfs_set_extent_flags(leaf, extent_item, |
| 7120 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7121 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7122 | if (skinny_metadata) { |
| 7123 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7124 | num_bytes = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7125 | } else { |
| 7126 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 7127 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 7128 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 7129 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 7130 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7131 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7132 | if (parent > 0) { |
| 7133 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 7134 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7135 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 7136 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 7137 | } else { |
| 7138 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 7139 | BTRFS_TREE_BLOCK_REF_KEY); |
| 7140 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 7141 | } |
| 7142 | |
| 7143 | btrfs_mark_buffer_dirty(leaf); |
| 7144 | btrfs_free_path(path); |
| 7145 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7146 | if (!no_quota) { |
| 7147 | ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid, |
| 7148 | ins->objectid, num_bytes, |
| 7149 | BTRFS_QGROUP_OPER_ADD_EXCL, 0); |
| 7150 | if (ret) |
| 7151 | return ret; |
| 7152 | } |
| 7153 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7154 | ret = update_block_group(root, ins->objectid, root->nodesize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7155 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7156 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7157 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7158 | BUG(); |
| 7159 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7160 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7161 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7162 | return ret; |
| 7163 | } |
| 7164 | |
| 7165 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 7166 | struct btrfs_root *root, |
| 7167 | u64 root_objectid, u64 owner, |
| 7168 | u64 offset, struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7169 | { |
| 7170 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 7171 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7172 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7173 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7174 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 7175 | ins->offset, 0, |
| 7176 | root_objectid, owner, offset, |
| 7177 | BTRFS_ADD_DELAYED_EXTENT, NULL, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7178 | return ret; |
| 7179 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7180 | |
| 7181 | /* |
| 7182 | * this is used by the tree logging recovery code. It records that |
| 7183 | * an extent has been allocated and makes sure to clear the free |
| 7184 | * space cache bits as well |
| 7185 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7186 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 7187 | struct btrfs_root *root, |
| 7188 | u64 root_objectid, u64 owner, u64 offset, |
| 7189 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7190 | { |
| 7191 | int ret; |
| 7192 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7193 | |
| 7194 | /* |
| 7195 | * Mixed block groups will exclude before processing the log so we only |
| 7196 | * need to do the exlude dance if this fs isn't mixed. |
| 7197 | */ |
| 7198 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 7199 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 7200 | if (ret) |
| 7201 | return ret; |
| 7202 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7203 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7204 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 7205 | if (!block_group) |
| 7206 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7207 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 7208 | ret = btrfs_update_reserved_bytes(block_group, ins->offset, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7209 | RESERVE_ALLOC_NO_ACCOUNT, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7210 | BUG_ON(ret); /* logic error */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7211 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 7212 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 7213 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7214 | return ret; |
| 7215 | } |
| 7216 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7217 | static struct extent_buffer * |
| 7218 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 7219 | u64 bytenr, u32 blocksize, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7220 | { |
| 7221 | struct extent_buffer *buf; |
| 7222 | |
| 7223 | buf = btrfs_find_create_tree_block(root, bytenr, blocksize); |
| 7224 | if (!buf) |
| 7225 | return ERR_PTR(-ENOMEM); |
| 7226 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 7227 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7228 | btrfs_tree_lock(buf); |
| 7229 | clean_tree_block(trans, root, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 7230 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7231 | |
| 7232 | btrfs_set_lock_blocking(buf); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7233 | btrfs_set_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7234 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7235 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7236 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 7237 | /* |
| 7238 | * we allow two log transactions at a time, use different |
| 7239 | * EXENT bit to differentiate dirty pages. |
| 7240 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7241 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 7242 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 7243 | buf->start + buf->len - 1, GFP_NOFS); |
| 7244 | else |
| 7245 | set_extent_new(&root->dirty_log_pages, buf->start, |
| 7246 | buf->start + buf->len - 1, GFP_NOFS); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7247 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 7248 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 7249 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 7250 | buf->start + buf->len - 1, GFP_NOFS); |
| 7251 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7252 | trans->blocks_used++; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 7253 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7254 | return buf; |
| 7255 | } |
| 7256 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7257 | static struct btrfs_block_rsv * |
| 7258 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 7259 | struct btrfs_root *root, u32 blocksize) |
| 7260 | { |
| 7261 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 7262 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7263 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7264 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7265 | |
| 7266 | block_rsv = get_block_rsv(trans, root); |
| 7267 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7268 | if (unlikely(block_rsv->size == 0)) |
| 7269 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7270 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7271 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 7272 | if (!ret) |
| 7273 | return block_rsv; |
| 7274 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7275 | if (block_rsv->failfast) |
| 7276 | return ERR_PTR(ret); |
| 7277 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 7278 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 7279 | global_updated = true; |
| 7280 | update_global_block_rsv(root->fs_info); |
| 7281 | goto again; |
| 7282 | } |
| 7283 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7284 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) { |
| 7285 | static DEFINE_RATELIMIT_STATE(_rs, |
| 7286 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 7287 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 7288 | if (__ratelimit(&_rs)) |
| 7289 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7290 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7291 | } |
| 7292 | try_reserve: |
| 7293 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 7294 | BTRFS_RESERVE_NO_FLUSH); |
| 7295 | if (!ret) |
| 7296 | return block_rsv; |
| 7297 | /* |
| 7298 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7299 | * the global reserve if its space type is the same as the global |
| 7300 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7301 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 7302 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 7303 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 7304 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 7305 | if (!ret) |
| 7306 | return global_rsv; |
| 7307 | } |
| 7308 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7309 | } |
| 7310 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7311 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 7312 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7313 | { |
| 7314 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7315 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7316 | } |
| 7317 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7318 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7319 | * finds a free extent and does all the dirty work required for allocation |
| 7320 | * returns the key for the extent through ins, and a tree buffer for |
| 7321 | * the first block of the extent through buf. |
| 7322 | * |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7323 | * returns the tree buffer or NULL. |
| 7324 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 7325 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
| 7326 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7327 | u64 parent, u64 root_objectid, |
| 7328 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7329 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7330 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 7331 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7332 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7333 | struct extent_buffer *buf; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7334 | u64 flags = 0; |
| 7335 | int ret; |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 7336 | u32 blocksize = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7337 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 7338 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7339 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7340 | if (btrfs_test_is_dummy_root(root)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7341 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
| 7342 | blocksize, level); |
| 7343 | if (!IS_ERR(buf)) |
| 7344 | root->alloc_bytenr += blocksize; |
| 7345 | return buf; |
| 7346 | } |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7347 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7348 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 7349 | if (IS_ERR(block_rsv)) |
| 7350 | return ERR_CAST(block_rsv); |
| 7351 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7352 | ret = btrfs_reserve_extent(root, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7353 | empty_size, hint, &ins, 0, 0); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7354 | if (ret) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 7355 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7356 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7357 | } |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 7358 | |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 7359 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, |
| 7360 | blocksize, level); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7361 | BUG_ON(IS_ERR(buf)); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7362 | |
| 7363 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 7364 | if (parent == 0) |
| 7365 | parent = ins.objectid; |
| 7366 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7367 | } else |
| 7368 | BUG_ON(parent > 0); |
| 7369 | |
| 7370 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 7371 | struct btrfs_delayed_extent_op *extent_op; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7372 | extent_op = btrfs_alloc_delayed_extent_op(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7373 | BUG_ON(!extent_op); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7374 | if (key) |
| 7375 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 7376 | else |
| 7377 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 7378 | extent_op->flags_to_set = flags; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7379 | if (skinny_metadata) |
| 7380 | extent_op->update_key = 0; |
| 7381 | else |
| 7382 | extent_op->update_key = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7383 | extent_op->update_flags = 1; |
| 7384 | extent_op->is_data = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7385 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7386 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7387 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 7388 | ins.objectid, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7389 | ins.offset, parent, root_objectid, |
| 7390 | level, BTRFS_ADD_DELAYED_EXTENT, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7391 | extent_op, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7392 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7393 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7394 | return buf; |
| 7395 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7396 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7397 | struct walk_control { |
| 7398 | u64 refs[BTRFS_MAX_LEVEL]; |
| 7399 | u64 flags[BTRFS_MAX_LEVEL]; |
| 7400 | struct btrfs_key update_progress; |
| 7401 | int stage; |
| 7402 | int level; |
| 7403 | int shared_level; |
| 7404 | int update_ref; |
| 7405 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7406 | int reada_slot; |
| 7407 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7408 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7409 | }; |
| 7410 | |
| 7411 | #define DROP_REFERENCE 1 |
| 7412 | #define UPDATE_BACKREF 2 |
| 7413 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7414 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 7415 | struct btrfs_root *root, |
| 7416 | struct walk_control *wc, |
| 7417 | struct btrfs_path *path) |
| 7418 | { |
| 7419 | u64 bytenr; |
| 7420 | u64 generation; |
| 7421 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7422 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7423 | u32 nritems; |
| 7424 | u32 blocksize; |
| 7425 | struct btrfs_key key; |
| 7426 | struct extent_buffer *eb; |
| 7427 | int ret; |
| 7428 | int slot; |
| 7429 | int nread = 0; |
| 7430 | |
| 7431 | if (path->slots[wc->level] < wc->reada_slot) { |
| 7432 | wc->reada_count = wc->reada_count * 2 / 3; |
| 7433 | wc->reada_count = max(wc->reada_count, 2); |
| 7434 | } else { |
| 7435 | wc->reada_count = wc->reada_count * 3 / 2; |
| 7436 | wc->reada_count = min_t(int, wc->reada_count, |
| 7437 | BTRFS_NODEPTRS_PER_BLOCK(root)); |
| 7438 | } |
| 7439 | |
| 7440 | eb = path->nodes[wc->level]; |
| 7441 | nritems = btrfs_header_nritems(eb); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7442 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7443 | |
| 7444 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 7445 | if (nread >= wc->reada_count) |
| 7446 | break; |
| 7447 | |
| 7448 | cond_resched(); |
| 7449 | bytenr = btrfs_node_blockptr(eb, slot); |
| 7450 | generation = btrfs_node_ptr_generation(eb, slot); |
| 7451 | |
| 7452 | if (slot == path->slots[wc->level]) |
| 7453 | goto reada; |
| 7454 | |
| 7455 | if (wc->stage == UPDATE_BACKREF && |
| 7456 | generation <= root->root_key.offset) |
| 7457 | continue; |
| 7458 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7459 | /* 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] | 7460 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 7461 | wc->level - 1, 1, &refs, |
| 7462 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7463 | /* We don't care about errors in readahead. */ |
| 7464 | if (ret < 0) |
| 7465 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7466 | BUG_ON(refs == 0); |
| 7467 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7468 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7469 | if (refs == 1) |
| 7470 | goto reada; |
| 7471 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7472 | if (wc->level == 1 && |
| 7473 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7474 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7475 | if (!wc->update_ref || |
| 7476 | generation <= root->root_key.offset) |
| 7477 | continue; |
| 7478 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 7479 | ret = btrfs_comp_cpu_keys(&key, |
| 7480 | &wc->update_progress); |
| 7481 | if (ret < 0) |
| 7482 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7483 | } else { |
| 7484 | if (wc->level == 1 && |
| 7485 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7486 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7487 | } |
| 7488 | reada: |
David Sterba | 6197d86 | 2014-06-15 00:49:36 +0200 | [diff] [blame] | 7489 | readahead_tree_block(root, bytenr, blocksize); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7490 | nread++; |
| 7491 | } |
| 7492 | wc->reada_slot = slot; |
| 7493 | } |
| 7494 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7495 | static int account_leaf_items(struct btrfs_trans_handle *trans, |
| 7496 | struct btrfs_root *root, |
| 7497 | struct extent_buffer *eb) |
| 7498 | { |
| 7499 | int nr = btrfs_header_nritems(eb); |
| 7500 | int i, extent_type, ret; |
| 7501 | struct btrfs_key key; |
| 7502 | struct btrfs_file_extent_item *fi; |
| 7503 | u64 bytenr, num_bytes; |
| 7504 | |
| 7505 | for (i = 0; i < nr; i++) { |
| 7506 | btrfs_item_key_to_cpu(eb, &key, i); |
| 7507 | |
| 7508 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 7509 | continue; |
| 7510 | |
| 7511 | fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 7512 | /* filter out non qgroup-accountable extents */ |
| 7513 | extent_type = btrfs_file_extent_type(eb, fi); |
| 7514 | |
| 7515 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) |
| 7516 | continue; |
| 7517 | |
| 7518 | bytenr = btrfs_file_extent_disk_bytenr(eb, fi); |
| 7519 | if (!bytenr) |
| 7520 | continue; |
| 7521 | |
| 7522 | num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi); |
| 7523 | |
| 7524 | ret = btrfs_qgroup_record_ref(trans, root->fs_info, |
| 7525 | root->objectid, |
| 7526 | bytenr, num_bytes, |
| 7527 | BTRFS_QGROUP_OPER_SUB_SUBTREE, 0); |
| 7528 | if (ret) |
| 7529 | return ret; |
| 7530 | } |
| 7531 | return 0; |
| 7532 | } |
| 7533 | |
| 7534 | /* |
| 7535 | * Walk up the tree from the bottom, freeing leaves and any interior |
| 7536 | * nodes which have had all slots visited. If a node (leaf or |
| 7537 | * interior) is freed, the node above it will have it's slot |
| 7538 | * incremented. The root node will never be freed. |
| 7539 | * |
| 7540 | * At the end of this function, we should have a path which has all |
| 7541 | * slots incremented to the next position for a search. If we need to |
| 7542 | * read a new node it will be NULL and the node above it will have the |
| 7543 | * correct slot selected for a later read. |
| 7544 | * |
| 7545 | * If we increment the root nodes slot counter past the number of |
| 7546 | * elements, 1 is returned to signal completion of the search. |
| 7547 | */ |
| 7548 | static int adjust_slots_upwards(struct btrfs_root *root, |
| 7549 | struct btrfs_path *path, int root_level) |
| 7550 | { |
| 7551 | int level = 0; |
| 7552 | int nr, slot; |
| 7553 | struct extent_buffer *eb; |
| 7554 | |
| 7555 | if (root_level == 0) |
| 7556 | return 1; |
| 7557 | |
| 7558 | while (level <= root_level) { |
| 7559 | eb = path->nodes[level]; |
| 7560 | nr = btrfs_header_nritems(eb); |
| 7561 | path->slots[level]++; |
| 7562 | slot = path->slots[level]; |
| 7563 | if (slot >= nr || level == 0) { |
| 7564 | /* |
| 7565 | * Don't free the root - we will detect this |
| 7566 | * condition after our loop and return a |
| 7567 | * positive value for caller to stop walking the tree. |
| 7568 | */ |
| 7569 | if (level != root_level) { |
| 7570 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
| 7571 | path->locks[level] = 0; |
| 7572 | |
| 7573 | free_extent_buffer(eb); |
| 7574 | path->nodes[level] = NULL; |
| 7575 | path->slots[level] = 0; |
| 7576 | } |
| 7577 | } else { |
| 7578 | /* |
| 7579 | * We have a valid slot to walk back down |
| 7580 | * from. Stop here so caller can process these |
| 7581 | * new nodes. |
| 7582 | */ |
| 7583 | break; |
| 7584 | } |
| 7585 | |
| 7586 | level++; |
| 7587 | } |
| 7588 | |
| 7589 | eb = path->nodes[root_level]; |
| 7590 | if (path->slots[root_level] >= btrfs_header_nritems(eb)) |
| 7591 | return 1; |
| 7592 | |
| 7593 | return 0; |
| 7594 | } |
| 7595 | |
| 7596 | /* |
| 7597 | * root_eb is the subtree root and is locked before this function is called. |
| 7598 | */ |
| 7599 | static int account_shared_subtree(struct btrfs_trans_handle *trans, |
| 7600 | struct btrfs_root *root, |
| 7601 | struct extent_buffer *root_eb, |
| 7602 | u64 root_gen, |
| 7603 | int root_level) |
| 7604 | { |
| 7605 | int ret = 0; |
| 7606 | int level; |
| 7607 | struct extent_buffer *eb = root_eb; |
| 7608 | struct btrfs_path *path = NULL; |
| 7609 | |
| 7610 | BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL); |
| 7611 | BUG_ON(root_eb == NULL); |
| 7612 | |
| 7613 | if (!root->fs_info->quota_enabled) |
| 7614 | return 0; |
| 7615 | |
| 7616 | if (!extent_buffer_uptodate(root_eb)) { |
| 7617 | ret = btrfs_read_buffer(root_eb, root_gen); |
| 7618 | if (ret) |
| 7619 | goto out; |
| 7620 | } |
| 7621 | |
| 7622 | if (root_level == 0) { |
| 7623 | ret = account_leaf_items(trans, root, root_eb); |
| 7624 | goto out; |
| 7625 | } |
| 7626 | |
| 7627 | path = btrfs_alloc_path(); |
| 7628 | if (!path) |
| 7629 | return -ENOMEM; |
| 7630 | |
| 7631 | /* |
| 7632 | * Walk down the tree. Missing extent blocks are filled in as |
| 7633 | * we go. Metadata is accounted every time we read a new |
| 7634 | * extent block. |
| 7635 | * |
| 7636 | * When we reach a leaf, we account for file extent items in it, |
| 7637 | * walk back up the tree (adjusting slot pointers as we go) |
| 7638 | * and restart the search process. |
| 7639 | */ |
| 7640 | extent_buffer_get(root_eb); /* For path */ |
| 7641 | path->nodes[root_level] = root_eb; |
| 7642 | path->slots[root_level] = 0; |
| 7643 | path->locks[root_level] = 0; /* so release_path doesn't try to unlock */ |
| 7644 | walk_down: |
| 7645 | level = root_level; |
| 7646 | while (level >= 0) { |
| 7647 | if (path->nodes[level] == NULL) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7648 | int parent_slot; |
| 7649 | u64 child_gen; |
| 7650 | u64 child_bytenr; |
| 7651 | |
| 7652 | /* We need to get child blockptr/gen from |
| 7653 | * parent before we can read it. */ |
| 7654 | eb = path->nodes[level + 1]; |
| 7655 | parent_slot = path->slots[level + 1]; |
| 7656 | child_bytenr = btrfs_node_blockptr(eb, parent_slot); |
| 7657 | child_gen = btrfs_node_ptr_generation(eb, parent_slot); |
| 7658 | |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 7659 | eb = read_tree_block(root, child_bytenr, child_gen); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7660 | if (!eb || !extent_buffer_uptodate(eb)) { |
| 7661 | ret = -EIO; |
| 7662 | goto out; |
| 7663 | } |
| 7664 | |
| 7665 | path->nodes[level] = eb; |
| 7666 | path->slots[level] = 0; |
| 7667 | |
| 7668 | btrfs_tree_read_lock(eb); |
| 7669 | btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); |
| 7670 | path->locks[level] = BTRFS_READ_LOCK_BLOCKING; |
| 7671 | |
| 7672 | ret = btrfs_qgroup_record_ref(trans, root->fs_info, |
| 7673 | root->objectid, |
| 7674 | child_bytenr, |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 7675 | root->nodesize, |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7676 | BTRFS_QGROUP_OPER_SUB_SUBTREE, |
| 7677 | 0); |
| 7678 | if (ret) |
| 7679 | goto out; |
| 7680 | |
| 7681 | } |
| 7682 | |
| 7683 | if (level == 0) { |
| 7684 | ret = account_leaf_items(trans, root, path->nodes[level]); |
| 7685 | if (ret) |
| 7686 | goto out; |
| 7687 | |
| 7688 | /* Nonzero return here means we completed our search */ |
| 7689 | ret = adjust_slots_upwards(root, path, root_level); |
| 7690 | if (ret) |
| 7691 | break; |
| 7692 | |
| 7693 | /* Restart search with new slots */ |
| 7694 | goto walk_down; |
| 7695 | } |
| 7696 | |
| 7697 | level--; |
| 7698 | } |
| 7699 | |
| 7700 | ret = 0; |
| 7701 | out: |
| 7702 | btrfs_free_path(path); |
| 7703 | |
| 7704 | return ret; |
| 7705 | } |
| 7706 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 7707 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7708 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7709 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7710 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 7711 | * back refs for pointers in the block. |
| 7712 | * |
| 7713 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7714 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7715 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 7716 | struct btrfs_root *root, |
| 7717 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7718 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7719 | { |
| 7720 | int level = wc->level; |
| 7721 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7722 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 7723 | int ret; |
| 7724 | |
| 7725 | if (wc->stage == UPDATE_BACKREF && |
| 7726 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 7727 | return 1; |
| 7728 | |
| 7729 | /* |
| 7730 | * when reference count of tree block is 1, it won't increase |
| 7731 | * again. once full backref flag is set, we never clear it. |
| 7732 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7733 | if (lookup_info && |
| 7734 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 7735 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7736 | BUG_ON(!path->locks[level]); |
| 7737 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7738 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7739 | &wc->refs[level], |
| 7740 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7741 | BUG_ON(ret == -ENOMEM); |
| 7742 | if (ret) |
| 7743 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7744 | BUG_ON(wc->refs[level] == 0); |
| 7745 | } |
| 7746 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7747 | if (wc->stage == DROP_REFERENCE) { |
| 7748 | if (wc->refs[level] > 1) |
| 7749 | return 1; |
| 7750 | |
| 7751 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7752 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7753 | path->locks[level] = 0; |
| 7754 | } |
| 7755 | return 0; |
| 7756 | } |
| 7757 | |
| 7758 | /* wc->stage == UPDATE_BACKREF */ |
| 7759 | if (!(wc->flags[level] & flag)) { |
| 7760 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 7761 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7762 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 7763 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7764 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7765 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 7766 | eb->len, flag, |
| 7767 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7768 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7769 | wc->flags[level] |= flag; |
| 7770 | } |
| 7771 | |
| 7772 | /* |
| 7773 | * the block is shared by multiple trees, so it's not good to |
| 7774 | * keep the tree lock |
| 7775 | */ |
| 7776 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7777 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7778 | path->locks[level] = 0; |
| 7779 | } |
| 7780 | return 0; |
| 7781 | } |
| 7782 | |
| 7783 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7784 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7785 | * |
| 7786 | * when wc->stage == DROP_REFERENCE, this function checks |
| 7787 | * reference count of the block pointed to. if the block |
| 7788 | * is shared and we need update back refs for the subtree |
| 7789 | * rooted at the block, this function changes wc->stage to |
| 7790 | * UPDATE_BACKREF. if the block is shared and there is no |
| 7791 | * need to update back, this function drops the reference |
| 7792 | * to the block. |
| 7793 | * |
| 7794 | * NOTE: return value 1 means we should stop walking down. |
| 7795 | */ |
| 7796 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 7797 | struct btrfs_root *root, |
| 7798 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7799 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7800 | { |
| 7801 | u64 bytenr; |
| 7802 | u64 generation; |
| 7803 | u64 parent; |
| 7804 | u32 blocksize; |
| 7805 | struct btrfs_key key; |
| 7806 | struct extent_buffer *next; |
| 7807 | int level = wc->level; |
| 7808 | int reada = 0; |
| 7809 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7810 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7811 | |
| 7812 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 7813 | path->slots[level]); |
| 7814 | /* |
| 7815 | * if the lower level block was created before the snapshot |
| 7816 | * was created, we know there is no need to update back refs |
| 7817 | * for the subtree |
| 7818 | */ |
| 7819 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7820 | generation <= root->root_key.offset) { |
| 7821 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7822 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7823 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7824 | |
| 7825 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 7826 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7827 | |
David Sterba | 0308af4 | 2014-06-15 01:43:40 +0200 | [diff] [blame] | 7828 | next = btrfs_find_tree_block(root, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7829 | if (!next) { |
| 7830 | next = btrfs_find_create_tree_block(root, bytenr, blocksize); |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 7831 | if (!next) |
| 7832 | return -ENOMEM; |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 7833 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 7834 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7835 | reada = 1; |
| 7836 | } |
| 7837 | btrfs_tree_lock(next); |
| 7838 | btrfs_set_lock_blocking(next); |
| 7839 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7840 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7841 | &wc->refs[level - 1], |
| 7842 | &wc->flags[level - 1]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7843 | if (ret < 0) { |
| 7844 | btrfs_tree_unlock(next); |
| 7845 | return ret; |
| 7846 | } |
| 7847 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7848 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 7849 | btrfs_err(root->fs_info, "Missing references."); |
| 7850 | BUG(); |
| 7851 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7852 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7853 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7854 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7855 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7856 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7857 | if (level == 1 && |
| 7858 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7859 | goto skip; |
| 7860 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7861 | if (!wc->update_ref || |
| 7862 | generation <= root->root_key.offset) |
| 7863 | goto skip; |
| 7864 | |
| 7865 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 7866 | path->slots[level]); |
| 7867 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 7868 | if (ret < 0) |
| 7869 | goto skip; |
| 7870 | |
| 7871 | wc->stage = UPDATE_BACKREF; |
| 7872 | wc->shared_level = level - 1; |
| 7873 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7874 | } else { |
| 7875 | if (level == 1 && |
| 7876 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 7877 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7878 | } |
| 7879 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 7880 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7881 | btrfs_tree_unlock(next); |
| 7882 | free_extent_buffer(next); |
| 7883 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7884 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7885 | } |
| 7886 | |
| 7887 | if (!next) { |
| 7888 | if (reada && level == 1) |
| 7889 | reada_walk_down(trans, root, wc, path); |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 7890 | next = read_tree_block(root, bytenr, generation); |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7891 | if (!next || !extent_buffer_uptodate(next)) { |
| 7892 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 7893 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 7894 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7895 | btrfs_tree_lock(next); |
| 7896 | btrfs_set_lock_blocking(next); |
| 7897 | } |
| 7898 | |
| 7899 | level--; |
| 7900 | BUG_ON(level != btrfs_header_level(next)); |
| 7901 | path->nodes[level] = next; |
| 7902 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7903 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7904 | wc->level = level; |
| 7905 | if (wc->level == 1) |
| 7906 | wc->reada_slot = 0; |
| 7907 | return 0; |
| 7908 | skip: |
| 7909 | wc->refs[level - 1] = 0; |
| 7910 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7911 | if (wc->stage == DROP_REFERENCE) { |
| 7912 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 7913 | parent = path->nodes[level]->start; |
| 7914 | } else { |
| 7915 | BUG_ON(root->root_key.objectid != |
| 7916 | btrfs_header_owner(path->nodes[level])); |
| 7917 | parent = 0; |
| 7918 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7919 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 7920 | if (need_account) { |
| 7921 | ret = account_shared_subtree(trans, root, next, |
| 7922 | generation, level - 1); |
| 7923 | if (ret) { |
| 7924 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 7925 | "%d accounting shared subtree. Quota " |
| 7926 | "is out of sync, rescan required.\n", |
| 7927 | root->fs_info->sb->s_id, ret); |
| 7928 | } |
| 7929 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7930 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7931 | root->root_key.objectid, level - 1, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7932 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7933 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7934 | btrfs_tree_unlock(next); |
| 7935 | free_extent_buffer(next); |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 7936 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 7937 | return 1; |
| 7938 | } |
| 7939 | |
| 7940 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 7941 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7942 | * |
| 7943 | * when wc->stage == DROP_REFERENCE, this function drops |
| 7944 | * reference count on the block. |
| 7945 | * |
| 7946 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 7947 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 7948 | * to UPDATE_BACKREF previously while processing the block. |
| 7949 | * |
| 7950 | * NOTE: return value 1 means we should stop walking up. |
| 7951 | */ |
| 7952 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 7953 | struct btrfs_root *root, |
| 7954 | struct btrfs_path *path, |
| 7955 | struct walk_control *wc) |
| 7956 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7957 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7958 | int level = wc->level; |
| 7959 | struct extent_buffer *eb = path->nodes[level]; |
| 7960 | u64 parent = 0; |
| 7961 | |
| 7962 | if (wc->stage == UPDATE_BACKREF) { |
| 7963 | BUG_ON(wc->shared_level < level); |
| 7964 | if (level < wc->shared_level) |
| 7965 | goto out; |
| 7966 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7967 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 7968 | if (ret > 0) |
| 7969 | wc->update_ref = 0; |
| 7970 | |
| 7971 | wc->stage = DROP_REFERENCE; |
| 7972 | wc->shared_level = -1; |
| 7973 | path->slots[level] = 0; |
| 7974 | |
| 7975 | /* |
| 7976 | * check reference count again if the block isn't locked. |
| 7977 | * we should start walking down the tree again if reference |
| 7978 | * count is one. |
| 7979 | */ |
| 7980 | if (!path->locks[level]) { |
| 7981 | BUG_ON(level == 0); |
| 7982 | btrfs_tree_lock(eb); |
| 7983 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7984 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7985 | |
| 7986 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7987 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7988 | &wc->refs[level], |
| 7989 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7990 | if (ret < 0) { |
| 7991 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7992 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7993 | return ret; |
| 7994 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7995 | BUG_ON(wc->refs[level] == 0); |
| 7996 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 7997 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 7998 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 7999 | return 1; |
| 8000 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8001 | } |
| 8002 | } |
| 8003 | |
| 8004 | /* wc->stage == DROP_REFERENCE */ |
| 8005 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 8006 | |
| 8007 | if (wc->refs[level] == 1) { |
| 8008 | if (level == 0) { |
| 8009 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8010 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8011 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8012 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8013 | BUG_ON(ret); /* -ENOMEM */ |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8014 | ret = account_leaf_items(trans, root, eb); |
| 8015 | if (ret) { |
| 8016 | printk_ratelimited(KERN_ERR "BTRFS: %s Error " |
| 8017 | "%d accounting leaf items. Quota " |
| 8018 | "is out of sync, rescan required.\n", |
| 8019 | root->fs_info->sb->s_id, ret); |
| 8020 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8021 | } |
| 8022 | /* make block locked assertion in clean_tree_block happy */ |
| 8023 | if (!path->locks[level] && |
| 8024 | btrfs_header_generation(eb) == trans->transid) { |
| 8025 | btrfs_tree_lock(eb); |
| 8026 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8027 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8028 | } |
| 8029 | clean_tree_block(trans, root, eb); |
| 8030 | } |
| 8031 | |
| 8032 | if (eb == root->node) { |
| 8033 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8034 | parent = eb->start; |
| 8035 | else |
| 8036 | BUG_ON(root->root_key.objectid != |
| 8037 | btrfs_header_owner(eb)); |
| 8038 | } else { |
| 8039 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8040 | parent = path->nodes[level + 1]->start; |
| 8041 | else |
| 8042 | BUG_ON(root->root_key.objectid != |
| 8043 | btrfs_header_owner(path->nodes[level + 1])); |
| 8044 | } |
| 8045 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8046 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8047 | out: |
| 8048 | wc->refs[level] = 0; |
| 8049 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8050 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8051 | } |
| 8052 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8053 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8054 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8055 | struct btrfs_path *path, |
| 8056 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8057 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8058 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8059 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8060 | int ret; |
| 8061 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8062 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8063 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8064 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8065 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8066 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8067 | if (level == 0) |
| 8068 | break; |
| 8069 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8070 | if (path->slots[level] >= |
| 8071 | btrfs_header_nritems(path->nodes[level])) |
| 8072 | break; |
| 8073 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8074 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8075 | if (ret > 0) { |
| 8076 | path->slots[level]++; |
| 8077 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8078 | } else if (ret < 0) |
| 8079 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8080 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8081 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8082 | return 0; |
| 8083 | } |
| 8084 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8085 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8086 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8087 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8088 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8089 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8090 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8091 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8092 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8093 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8094 | while (level < max_level && path->nodes[level]) { |
| 8095 | wc->level = level; |
| 8096 | if (path->slots[level] + 1 < |
| 8097 | btrfs_header_nritems(path->nodes[level])) { |
| 8098 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8099 | return 0; |
| 8100 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8101 | ret = walk_up_proc(trans, root, path, wc); |
| 8102 | if (ret > 0) |
| 8103 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8104 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8105 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8106 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8107 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8108 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8109 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8110 | free_extent_buffer(path->nodes[level]); |
| 8111 | path->nodes[level] = NULL; |
| 8112 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8113 | } |
| 8114 | } |
| 8115 | return 1; |
| 8116 | } |
| 8117 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8118 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8119 | * drop a subvolume tree. |
| 8120 | * |
| 8121 | * this function traverses the tree freeing any blocks that only |
| 8122 | * referenced by the tree. |
| 8123 | * |
| 8124 | * when a shared tree block is found. this function decreases its |
| 8125 | * reference count by one. if update_ref is true, this function |
| 8126 | * also make sure backrefs for the shared block and all lower level |
| 8127 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8128 | * |
| 8129 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8130 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8131 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8132 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 8133 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8134 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8135 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8136 | struct btrfs_trans_handle *trans; |
| 8137 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8138 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8139 | struct walk_control *wc; |
| 8140 | struct btrfs_key key; |
| 8141 | int err = 0; |
| 8142 | int ret; |
| 8143 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8144 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8145 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8146 | btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid); |
| 8147 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8148 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8149 | if (!path) { |
| 8150 | err = -ENOMEM; |
| 8151 | goto out; |
| 8152 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8153 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8154 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8155 | if (!wc) { |
| 8156 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8157 | err = -ENOMEM; |
| 8158 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 8159 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8160 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8161 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8162 | if (IS_ERR(trans)) { |
| 8163 | err = PTR_ERR(trans); |
| 8164 | goto out_free; |
| 8165 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 8166 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8167 | if (block_rsv) |
| 8168 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8169 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8170 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8171 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8172 | path->nodes[level] = btrfs_lock_root_node(root); |
| 8173 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8174 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8175 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8176 | memset(&wc->update_progress, 0, |
| 8177 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8178 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8179 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8180 | memcpy(&wc->update_progress, &key, |
| 8181 | sizeof(wc->update_progress)); |
| 8182 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8183 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8184 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 8185 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8186 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 8187 | path->lowest_level = 0; |
| 8188 | if (ret < 0) { |
| 8189 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8190 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8191 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8192 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8193 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8194 | /* |
| 8195 | * unlock our path, this is safe because only this |
| 8196 | * function is allowed to delete this snapshot |
| 8197 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8198 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8199 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8200 | level = btrfs_header_level(root->node); |
| 8201 | while (1) { |
| 8202 | btrfs_tree_lock(path->nodes[level]); |
| 8203 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8204 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8205 | |
| 8206 | ret = btrfs_lookup_extent_info(trans, root, |
| 8207 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8208 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8209 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8210 | if (ret < 0) { |
| 8211 | err = ret; |
| 8212 | goto out_end_trans; |
| 8213 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8214 | BUG_ON(wc->refs[level] == 0); |
| 8215 | |
| 8216 | if (level == root_item->drop_level) |
| 8217 | break; |
| 8218 | |
| 8219 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 8220 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8221 | WARN_ON(wc->refs[level] != 1); |
| 8222 | level--; |
| 8223 | } |
| 8224 | } |
| 8225 | |
| 8226 | wc->level = level; |
| 8227 | wc->shared_level = -1; |
| 8228 | wc->stage = DROP_REFERENCE; |
| 8229 | wc->update_ref = update_ref; |
| 8230 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8231 | wc->for_reloc = for_reloc; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8232 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8233 | |
| 8234 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8235 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8236 | ret = walk_down_tree(trans, root, path, wc); |
| 8237 | if (ret < 0) { |
| 8238 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 8239 | break; |
| 8240 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8241 | |
| 8242 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 8243 | if (ret < 0) { |
| 8244 | err = ret; |
| 8245 | break; |
| 8246 | } |
| 8247 | |
| 8248 | if (ret > 0) { |
| 8249 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 8250 | break; |
| 8251 | } |
| 8252 | |
| 8253 | if (wc->stage == DROP_REFERENCE) { |
| 8254 | level = wc->level; |
| 8255 | btrfs_node_key(path->nodes[level], |
| 8256 | &root_item->drop_progress, |
| 8257 | path->slots[level]); |
| 8258 | root_item->drop_level = level; |
| 8259 | } |
| 8260 | |
| 8261 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8262 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 8263 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8264 | ret = btrfs_update_root(trans, tree_root, |
| 8265 | &root->root_key, |
| 8266 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8267 | if (ret) { |
| 8268 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8269 | err = ret; |
| 8270 | goto out_end_trans; |
| 8271 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8272 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8273 | /* |
| 8274 | * Qgroup update accounting is run from |
| 8275 | * delayed ref handling. This usually works |
| 8276 | * out because delayed refs are normally the |
| 8277 | * only way qgroup updates are added. However, |
| 8278 | * we may have added updates during our tree |
| 8279 | * walk so run qgroups here to make sure we |
| 8280 | * don't lose any updates. |
| 8281 | */ |
| 8282 | ret = btrfs_delayed_qgroup_accounting(trans, |
| 8283 | root->fs_info); |
| 8284 | if (ret) |
| 8285 | printk_ratelimited(KERN_ERR "BTRFS: Failure %d " |
| 8286 | "running qgroup updates " |
| 8287 | "during snapshot delete. " |
| 8288 | "Quota is out of sync, " |
| 8289 | "rescan required.\n", ret); |
| 8290 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8291 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8292 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8293 | pr_debug("BTRFS: drop snapshot early exit\n"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 8294 | err = -EAGAIN; |
| 8295 | goto out_free; |
| 8296 | } |
| 8297 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8298 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8299 | if (IS_ERR(trans)) { |
| 8300 | err = PTR_ERR(trans); |
| 8301 | goto out_free; |
| 8302 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8303 | if (block_rsv) |
| 8304 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 8305 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8306 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 8307 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8308 | if (err) |
| 8309 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8310 | |
| 8311 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8312 | if (ret) { |
| 8313 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8314 | goto out_end_trans; |
| 8315 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8316 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8317 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8318 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 8319 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8320 | if (ret < 0) { |
| 8321 | btrfs_abort_transaction(trans, tree_root, ret); |
| 8322 | err = ret; |
| 8323 | goto out_end_trans; |
| 8324 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 8325 | /* if we fail to delete the orphan item this time |
| 8326 | * around, it'll get picked up the next time. |
| 8327 | * |
| 8328 | * The most common failure here is just -ENOENT. |
| 8329 | */ |
| 8330 | btrfs_del_orphan_item(trans, tree_root, |
| 8331 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8332 | } |
| 8333 | } |
| 8334 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 8335 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 8336 | btrfs_drop_and_free_fs_root(tree_root->fs_info, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8337 | } else { |
| 8338 | free_extent_buffer(root->node); |
| 8339 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 8340 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8341 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8342 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8343 | out_end_trans: |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8344 | ret = btrfs_delayed_qgroup_accounting(trans, tree_root->fs_info); |
| 8345 | if (ret) |
| 8346 | printk_ratelimited(KERN_ERR "BTRFS: Failure %d " |
| 8347 | "running qgroup updates " |
| 8348 | "during snapshot delete. " |
| 8349 | "Quota is out of sync, " |
| 8350 | "rescan required.\n", ret); |
| 8351 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8352 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8353 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8354 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8355 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8356 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8357 | /* |
| 8358 | * So if we need to stop dropping the snapshot for whatever reason we |
| 8359 | * need to make sure to add it back to the dead root list so that we |
| 8360 | * keep trying to do the work later. This also cleans up roots if we |
| 8361 | * don't have it in the radix (like when we recover after a power fail |
| 8362 | * or unmount) so we don't leak memory. |
| 8363 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 8364 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 8365 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 8366 | if (err && err != -EAGAIN) |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 8367 | btrfs_std_error(root->fs_info, err); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8368 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8369 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 8370 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8371 | /* |
| 8372 | * drop subtree rooted at tree block 'node'. |
| 8373 | * |
| 8374 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8375 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8376 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8377 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 8378 | struct btrfs_root *root, |
| 8379 | struct extent_buffer *node, |
| 8380 | struct extent_buffer *parent) |
| 8381 | { |
| 8382 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8383 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8384 | int level; |
| 8385 | int parent_level; |
| 8386 | int ret = 0; |
| 8387 | int wret; |
| 8388 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8389 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 8390 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8391 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8392 | if (!path) |
| 8393 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8394 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8395 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8396 | if (!wc) { |
| 8397 | btrfs_free_path(path); |
| 8398 | return -ENOMEM; |
| 8399 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8400 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8401 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8402 | parent_level = btrfs_header_level(parent); |
| 8403 | extent_buffer_get(parent); |
| 8404 | path->nodes[parent_level] = parent; |
| 8405 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 8406 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 8407 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8408 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8409 | path->nodes[level] = node; |
| 8410 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8411 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8412 | |
| 8413 | wc->refs[parent_level] = 1; |
| 8414 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8415 | wc->level = level; |
| 8416 | wc->shared_level = -1; |
| 8417 | wc->stage = DROP_REFERENCE; |
| 8418 | wc->update_ref = 0; |
| 8419 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8420 | wc->for_reloc = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8421 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8422 | |
| 8423 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8424 | wret = walk_down_tree(trans, root, path, wc); |
| 8425 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8426 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8427 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8428 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8429 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8430 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8431 | if (wret < 0) |
| 8432 | ret = wret; |
| 8433 | if (wret != 0) |
| 8434 | break; |
| 8435 | } |
| 8436 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8437 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8438 | btrfs_free_path(path); |
| 8439 | return ret; |
| 8440 | } |
| 8441 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8442 | static u64 update_block_group_flags(struct btrfs_root *root, u64 flags) |
| 8443 | { |
| 8444 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8445 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8446 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8447 | /* |
| 8448 | * if restripe for this chunk_type is on pick target profile and |
| 8449 | * return, otherwise do the usual balance |
| 8450 | */ |
| 8451 | stripped = get_restripe_target(root->fs_info, flags); |
| 8452 | if (stripped) |
| 8453 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 8454 | |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 8455 | num_devices = root->fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 8456 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8457 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 8458 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8459 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 8460 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8461 | if (num_devices == 1) { |
| 8462 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8463 | stripped = flags & ~stripped; |
| 8464 | |
| 8465 | /* turn raid0 into single device chunks */ |
| 8466 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 8467 | return stripped; |
| 8468 | |
| 8469 | /* turn mirroring into duplication */ |
| 8470 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8471 | BTRFS_BLOCK_GROUP_RAID10)) |
| 8472 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8473 | } else { |
| 8474 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8475 | if (flags & stripped) |
| 8476 | return flags; |
| 8477 | |
| 8478 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 8479 | stripped = flags & ~stripped; |
| 8480 | |
| 8481 | /* switch duplicated blocks with raid1 */ |
| 8482 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 8483 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 8484 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8485 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8486 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 8487 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8488 | return flags; |
| 8489 | } |
| 8490 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8491 | 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] | 8492 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8493 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8494 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8495 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8496 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8497 | |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 8498 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8499 | /* |
| 8500 | * We need some metadata space and system metadata space for |
| 8501 | * allocating chunks in some corner cases until we force to set |
| 8502 | * it to be readonly. |
| 8503 | */ |
| 8504 | if ((sinfo->flags & |
| 8505 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 8506 | !force) |
| 8507 | min_allocable_bytes = 1 * 1024 * 1024; |
| 8508 | else |
| 8509 | min_allocable_bytes = 0; |
| 8510 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8511 | spin_lock(&sinfo->lock); |
| 8512 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8513 | |
| 8514 | if (cache->ro) { |
| 8515 | ret = 0; |
| 8516 | goto out; |
| 8517 | } |
| 8518 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8519 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8520 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 8521 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8522 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 8523 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 8524 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8525 | sinfo->bytes_readonly += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8526 | cache->ro = 1; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8527 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8528 | ret = 0; |
| 8529 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 8530 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8531 | spin_unlock(&cache->lock); |
| 8532 | spin_unlock(&sinfo->lock); |
| 8533 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 8534 | } |
| 8535 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8536 | int btrfs_set_block_group_ro(struct btrfs_root *root, |
| 8537 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8538 | |
| 8539 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8540 | struct btrfs_trans_handle *trans; |
| 8541 | u64 alloc_flags; |
| 8542 | int ret; |
| 8543 | |
| 8544 | BUG_ON(cache->ro); |
| 8545 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 8546 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8547 | if (IS_ERR(trans)) |
| 8548 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8549 | |
| 8550 | alloc_flags = update_block_group_flags(root, cache->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8551 | if (alloc_flags != cache->flags) { |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8552 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8553 | CHUNK_ALLOC_FORCE); |
| 8554 | if (ret < 0) |
| 8555 | goto out; |
| 8556 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8557 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8558 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8559 | if (!ret) |
| 8560 | goto out; |
| 8561 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8562 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8563 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8564 | if (ret < 0) |
| 8565 | goto out; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 8566 | ret = set_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8567 | out: |
| 8568 | btrfs_end_transaction(trans, root); |
| 8569 | return ret; |
| 8570 | } |
| 8571 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8572 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 8573 | struct btrfs_root *root, u64 type) |
| 8574 | { |
| 8575 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 8576 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 8577 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 8578 | } |
| 8579 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8580 | /* |
| 8581 | * helper to account the unused space of all the readonly block group in the |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8582 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8583 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8584 | u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo) |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8585 | { |
| 8586 | struct btrfs_block_group_cache *block_group; |
| 8587 | u64 free_bytes = 0; |
| 8588 | int factor; |
| 8589 | |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8590 | /* It's df, we don't care if it's racey */ |
| 8591 | if (list_empty(&sinfo->ro_bgs)) |
| 8592 | return 0; |
| 8593 | |
| 8594 | spin_lock(&sinfo->lock); |
| 8595 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8596 | spin_lock(&block_group->lock); |
| 8597 | |
| 8598 | if (!block_group->ro) { |
| 8599 | spin_unlock(&block_group->lock); |
| 8600 | continue; |
| 8601 | } |
| 8602 | |
| 8603 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 8604 | BTRFS_BLOCK_GROUP_RAID10 | |
| 8605 | BTRFS_BLOCK_GROUP_DUP)) |
| 8606 | factor = 2; |
| 8607 | else |
| 8608 | factor = 1; |
| 8609 | |
| 8610 | free_bytes += (block_group->key.offset - |
| 8611 | btrfs_block_group_used(&block_group->item)) * |
| 8612 | factor; |
| 8613 | |
| 8614 | spin_unlock(&block_group->lock); |
| 8615 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 8616 | spin_unlock(&sinfo->lock); |
| 8617 | |
| 8618 | return free_bytes; |
| 8619 | } |
| 8620 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 8621 | void btrfs_set_block_group_rw(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8622 | struct btrfs_block_group_cache *cache) |
| 8623 | { |
| 8624 | struct btrfs_space_info *sinfo = cache->space_info; |
| 8625 | u64 num_bytes; |
| 8626 | |
| 8627 | BUG_ON(!cache->ro); |
| 8628 | |
| 8629 | spin_lock(&sinfo->lock); |
| 8630 | spin_lock(&cache->lock); |
| 8631 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 8632 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
| 8633 | sinfo->bytes_readonly -= num_bytes; |
| 8634 | cache->ro = 0; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 8635 | list_del_init(&cache->ro_list); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8636 | spin_unlock(&cache->lock); |
| 8637 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8638 | } |
| 8639 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8640 | /* |
| 8641 | * checks to see if its even possible to relocate this block group. |
| 8642 | * |
| 8643 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 8644 | * ok to go ahead and try. |
| 8645 | */ |
| 8646 | int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8647 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8648 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8649 | struct btrfs_space_info *space_info; |
| 8650 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 8651 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8652 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8653 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8654 | u64 dev_min = 1; |
| 8655 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8656 | u64 target; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8657 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8658 | int full = 0; |
| 8659 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8660 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8661 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8662 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8663 | /* odd, couldn't find the block group, leave it alone */ |
| 8664 | if (!block_group) |
| 8665 | return -1; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8666 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8667 | min_free = btrfs_block_group_used(&block_group->item); |
| 8668 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8669 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8670 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8671 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8672 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8673 | space_info = block_group->space_info; |
| 8674 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 8675 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8676 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8677 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8678 | /* |
| 8679 | * 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] | 8680 | * relocate it unless we're able to allocate a new chunk below. |
| 8681 | * |
| 8682 | * Otherwise, we need to make sure we have room in the space to handle |
| 8683 | * 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] | 8684 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 8685 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8686 | (space_info->bytes_used + space_info->bytes_reserved + |
| 8687 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 8688 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8689 | spin_unlock(&space_info->lock); |
| 8690 | goto out; |
| 8691 | } |
| 8692 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8693 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8694 | /* |
| 8695 | * ok we don't have enough space, but maybe we have free space on our |
| 8696 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8697 | * alloc devices and guess if we have enough space. if this block |
| 8698 | * group is going to be restriped, run checks against the target |
| 8699 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8700 | */ |
| 8701 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 8702 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8703 | /* |
| 8704 | * index: |
| 8705 | * 0: raid10 |
| 8706 | * 1: raid1 |
| 8707 | * 2: dup |
| 8708 | * 3: raid0 |
| 8709 | * 4: single |
| 8710 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8711 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 8712 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 8713 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 8714 | } else { |
| 8715 | /* |
| 8716 | * this is just a balance, so if we were marked as full |
| 8717 | * we know there is no space for a new chunk |
| 8718 | */ |
| 8719 | if (full) |
| 8720 | goto out; |
| 8721 | |
| 8722 | index = get_block_group_index(block_group); |
| 8723 | } |
| 8724 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8725 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8726 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8727 | /* Divide by 2 */ |
| 8728 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8729 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8730 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8731 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8732 | /* Multiply by 2 */ |
| 8733 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 8734 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8735 | dev_min = fs_devices->rw_devices; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 8736 | do_div(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8737 | } |
| 8738 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8739 | /* We need to do this so that we can look at pending chunks */ |
| 8740 | trans = btrfs_join_transaction(root); |
| 8741 | if (IS_ERR(trans)) { |
| 8742 | ret = PTR_ERR(trans); |
| 8743 | goto out; |
| 8744 | } |
| 8745 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8746 | mutex_lock(&root->fs_info->chunk_mutex); |
| 8747 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8748 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8749 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8750 | /* |
| 8751 | * check to make sure we can actually find a chunk with enough |
| 8752 | * space to fit our block group in. |
| 8753 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 8754 | if (device->total_bytes > device->bytes_used + min_free && |
| 8755 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8756 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 8757 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8758 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8759 | dev_nr++; |
| 8760 | |
| 8761 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8762 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 8763 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8764 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 8765 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8766 | } |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8767 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 8768 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8769 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8770 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8771 | return ret; |
| 8772 | } |
| 8773 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 8774 | static int find_first_block_group(struct btrfs_root *root, |
| 8775 | struct btrfs_path *path, struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8776 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8777 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8778 | struct btrfs_key found_key; |
| 8779 | struct extent_buffer *leaf; |
| 8780 | int slot; |
| 8781 | |
| 8782 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 8783 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8784 | goto out; |
| 8785 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8786 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8787 | slot = path->slots[0]; |
| 8788 | leaf = path->nodes[0]; |
| 8789 | if (slot >= btrfs_header_nritems(leaf)) { |
| 8790 | ret = btrfs_next_leaf(root, path); |
| 8791 | if (ret == 0) |
| 8792 | continue; |
| 8793 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8794 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8795 | break; |
| 8796 | } |
| 8797 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 8798 | |
| 8799 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8800 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
| 8801 | ret = 0; |
| 8802 | goto out; |
| 8803 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8804 | path->slots[0]++; |
| 8805 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8806 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 8807 | return ret; |
| 8808 | } |
| 8809 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8810 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 8811 | { |
| 8812 | struct btrfs_block_group_cache *block_group; |
| 8813 | u64 last = 0; |
| 8814 | |
| 8815 | while (1) { |
| 8816 | struct inode *inode; |
| 8817 | |
| 8818 | block_group = btrfs_lookup_first_block_group(info, last); |
| 8819 | while (block_group) { |
| 8820 | spin_lock(&block_group->lock); |
| 8821 | if (block_group->iref) |
| 8822 | break; |
| 8823 | spin_unlock(&block_group->lock); |
| 8824 | block_group = next_block_group(info->tree_root, |
| 8825 | block_group); |
| 8826 | } |
| 8827 | if (!block_group) { |
| 8828 | if (last == 0) |
| 8829 | break; |
| 8830 | last = 0; |
| 8831 | continue; |
| 8832 | } |
| 8833 | |
| 8834 | inode = block_group->inode; |
| 8835 | block_group->iref = 0; |
| 8836 | block_group->inode = NULL; |
| 8837 | spin_unlock(&block_group->lock); |
| 8838 | iput(inode); |
| 8839 | last = block_group->key.objectid + block_group->key.offset; |
| 8840 | btrfs_put_block_group(block_group); |
| 8841 | } |
| 8842 | } |
| 8843 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8844 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 8845 | { |
| 8846 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8847 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8848 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8849 | struct rb_node *n; |
| 8850 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 8851 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8852 | while (!list_empty(&info->caching_block_groups)) { |
| 8853 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 8854 | struct btrfs_caching_control, list); |
| 8855 | list_del(&caching_ctl->list); |
| 8856 | put_caching_control(caching_ctl); |
| 8857 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 8858 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8859 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 8860 | spin_lock(&info->unused_bgs_lock); |
| 8861 | while (!list_empty(&info->unused_bgs)) { |
| 8862 | block_group = list_first_entry(&info->unused_bgs, |
| 8863 | struct btrfs_block_group_cache, |
| 8864 | bg_list); |
| 8865 | list_del_init(&block_group->bg_list); |
| 8866 | btrfs_put_block_group(block_group); |
| 8867 | } |
| 8868 | spin_unlock(&info->unused_bgs_lock); |
| 8869 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8870 | spin_lock(&info->block_group_cache_lock); |
| 8871 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 8872 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 8873 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8874 | rb_erase(&block_group->cache_node, |
| 8875 | &info->block_group_cache_tree); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8876 | spin_unlock(&info->block_group_cache_lock); |
| 8877 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8878 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8879 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8880 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8881 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8882 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8883 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8884 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8885 | /* |
| 8886 | * We haven't cached this block group, which means we could |
| 8887 | * possibly have excluded extents on this block group. |
| 8888 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 8889 | if (block_group->cached == BTRFS_CACHE_NO || |
| 8890 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 8891 | free_excluded_extents(info->extent_root, block_group); |
| 8892 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 8893 | btrfs_remove_free_space_cache(block_group); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 8894 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8895 | |
| 8896 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8897 | } |
| 8898 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8899 | |
| 8900 | /* now that all the block groups are freed, go through and |
| 8901 | * free all the space_info structs. This is only called during |
| 8902 | * the final stages of unmount, and so we know nobody is |
| 8903 | * using them. We call synchronize_rcu() once before we start, |
| 8904 | * just to be on the safe side. |
| 8905 | */ |
| 8906 | synchronize_rcu(); |
| 8907 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 8908 | release_global_block_rsv(info); |
| 8909 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8910 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8911 | int i; |
| 8912 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8913 | space_info = list_entry(info->space_info.next, |
| 8914 | struct btrfs_space_info, |
| 8915 | list); |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8916 | if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) { |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8917 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8918 | space_info->bytes_reserved > 0 || |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8919 | space_info->bytes_may_use > 0)) { |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 8920 | dump_space_info(space_info, 0, 0); |
| 8921 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8922 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8923 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8924 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 8925 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8926 | kobj = space_info->block_group_kobjs[i]; |
| 8927 | space_info->block_group_kobjs[i] = NULL; |
| 8928 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8929 | kobject_del(kobj); |
| 8930 | kobject_put(kobj); |
| 8931 | } |
| 8932 | } |
| 8933 | kobject_del(&space_info->kobj); |
| 8934 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 8935 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 8936 | return 0; |
| 8937 | } |
| 8938 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8939 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 8940 | struct btrfs_block_group_cache *cache) |
| 8941 | { |
| 8942 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 8943 | bool first = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8944 | |
| 8945 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 8946 | if (list_empty(&space_info->block_groups[index])) |
| 8947 | first = true; |
| 8948 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 8949 | up_write(&space_info->groups_sem); |
| 8950 | |
| 8951 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8952 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8953 | int ret; |
| 8954 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8955 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 8956 | if (!rkobj) |
| 8957 | goto out_err; |
| 8958 | rkobj->raid_type = index; |
| 8959 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 8960 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 8961 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8962 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8963 | kobject_put(&rkobj->kobj); |
| 8964 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8965 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8966 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 8967 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 8968 | |
| 8969 | return; |
| 8970 | out_err: |
| 8971 | pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n"); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8972 | } |
| 8973 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 8974 | static struct btrfs_block_group_cache * |
| 8975 | btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size) |
| 8976 | { |
| 8977 | struct btrfs_block_group_cache *cache; |
| 8978 | |
| 8979 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 8980 | if (!cache) |
| 8981 | return NULL; |
| 8982 | |
| 8983 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 8984 | GFP_NOFS); |
| 8985 | if (!cache->free_space_ctl) { |
| 8986 | kfree(cache); |
| 8987 | return NULL; |
| 8988 | } |
| 8989 | |
| 8990 | cache->key.objectid = start; |
| 8991 | cache->key.offset = size; |
| 8992 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 8993 | |
| 8994 | cache->sectorsize = root->sectorsize; |
| 8995 | cache->fs_info = root->fs_info; |
| 8996 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 8997 | &root->fs_info->mapping_tree, |
| 8998 | start); |
| 8999 | atomic_set(&cache->count, 1); |
| 9000 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 9001 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9002 | INIT_LIST_HEAD(&cache->list); |
| 9003 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9004 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9005 | INIT_LIST_HEAD(&cache->ro_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9006 | btrfs_init_free_space_ctl(cache); |
| 9007 | |
| 9008 | return cache; |
| 9009 | } |
| 9010 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9011 | int btrfs_read_block_groups(struct btrfs_root *root) |
| 9012 | { |
| 9013 | struct btrfs_path *path; |
| 9014 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9015 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 9016 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9017 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9018 | struct btrfs_key key; |
| 9019 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9020 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9021 | int need_clear = 0; |
| 9022 | u64 cache_gen; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9023 | |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 9024 | root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9025 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9026 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9027 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9028 | path = btrfs_alloc_path(); |
| 9029 | if (!path) |
| 9030 | return -ENOMEM; |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 9031 | path->reada = 1; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9032 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9033 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Josef Bacik | 73bc187 | 2011-10-03 14:07:49 -0400 | [diff] [blame] | 9034 | if (btrfs_test_opt(root, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9035 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9036 | need_clear = 1; |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9037 | if (btrfs_test_opt(root, CLEAR_CACHE)) |
| 9038 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9039 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9040 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9041 | ret = find_first_block_group(root, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9042 | if (ret > 0) |
| 9043 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9044 | if (ret != 0) |
| 9045 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9046 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9047 | leaf = path->nodes[0]; |
| 9048 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9049 | |
| 9050 | cache = btrfs_create_block_group_cache(root, found_key.objectid, |
| 9051 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9052 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9053 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9054 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9055 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9056 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9057 | if (need_clear) { |
| 9058 | /* |
| 9059 | * When we mount with old space cache, we need to |
| 9060 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 9061 | * |
| 9062 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 9063 | * truncate the old free space cache inode and |
| 9064 | * setup a new one. |
| 9065 | * b) Setting 'dirty flag' makes sure that we flush |
| 9066 | * the new space cache info onto disk. |
| 9067 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9068 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9069 | if (btrfs_test_opt(root, SPACE_CACHE)) |
| 9070 | cache->dirty = 1; |
| 9071 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9072 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9073 | read_extent_buffer(leaf, &cache->item, |
| 9074 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 9075 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9076 | cache->flags = btrfs_block_group_flags(&cache->item); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9077 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9078 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9079 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9080 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9081 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9082 | * We need to exclude the super stripes now so that the space |
| 9083 | * info has super bytes accounted for, otherwise we'll think |
| 9084 | * we have more space than we actually do. |
| 9085 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9086 | ret = exclude_super_stripes(root, cache); |
| 9087 | if (ret) { |
| 9088 | /* |
| 9089 | * We may have excluded something, so call this just in |
| 9090 | * case. |
| 9091 | */ |
| 9092 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9093 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9094 | goto error; |
| 9095 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9096 | |
| 9097 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9098 | * check for two cases, either we are full, and therefore |
| 9099 | * don't need to bother with the caching work since we won't |
| 9100 | * find any space, or we are empty, and we can just add all |
| 9101 | * the space in and be done with it. This saves us _alot_ of |
| 9102 | * time, particularly in the full case. |
| 9103 | */ |
| 9104 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9105 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9106 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9107 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9108 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9109 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9110 | cache->cached = BTRFS_CACHE_FINISHED; |
| 9111 | add_new_free_space(cache, root->fs_info, |
| 9112 | found_key.objectid, |
| 9113 | found_key.objectid + |
| 9114 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9115 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9116 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9117 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9118 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9119 | if (ret) { |
| 9120 | btrfs_remove_free_space_cache(cache); |
| 9121 | btrfs_put_block_group(cache); |
| 9122 | goto error; |
| 9123 | } |
| 9124 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9125 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 9126 | btrfs_block_group_used(&cache->item), |
| 9127 | &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9128 | if (ret) { |
| 9129 | btrfs_remove_free_space_cache(cache); |
| 9130 | spin_lock(&info->block_group_cache_lock); |
| 9131 | rb_erase(&cache->cache_node, |
| 9132 | &info->block_group_cache_tree); |
| 9133 | spin_unlock(&info->block_group_cache_lock); |
| 9134 | btrfs_put_block_group(cache); |
| 9135 | goto error; |
| 9136 | } |
| 9137 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9138 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9139 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9140 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9141 | spin_unlock(&cache->space_info->lock); |
| 9142 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9143 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9144 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 9145 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9146 | if (btrfs_chunk_readonly(root, cache->key.objectid)) { |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9147 | set_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9148 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
| 9149 | spin_lock(&info->unused_bgs_lock); |
| 9150 | /* Should always be true but just in case. */ |
| 9151 | if (list_empty(&cache->bg_list)) { |
| 9152 | btrfs_get_block_group(cache); |
| 9153 | list_add_tail(&cache->bg_list, |
| 9154 | &info->unused_bgs); |
| 9155 | } |
| 9156 | spin_unlock(&info->unused_bgs_lock); |
| 9157 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9158 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9159 | |
| 9160 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 9161 | if (!(get_alloc_profile(root, space_info->flags) & |
| 9162 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 9163 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9164 | BTRFS_BLOCK_GROUP_RAID5 | |
| 9165 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9166 | BTRFS_BLOCK_GROUP_DUP))) |
| 9167 | continue; |
| 9168 | /* |
| 9169 | * avoid allocating from un-mirrored block group if there are |
| 9170 | * mirrored block groups. |
| 9171 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9172 | list_for_each_entry(cache, |
| 9173 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 9174 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9175 | set_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 9176 | list_for_each_entry(cache, |
| 9177 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 9178 | list) |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9179 | set_block_group_ro(cache, 1); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9180 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9181 | |
| 9182 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9183 | ret = 0; |
| 9184 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9185 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9186 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9187 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9188 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9189 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
| 9190 | struct btrfs_root *root) |
| 9191 | { |
| 9192 | struct btrfs_block_group_cache *block_group, *tmp; |
| 9193 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 9194 | struct btrfs_block_group_item item; |
| 9195 | struct btrfs_key key; |
| 9196 | int ret = 0; |
| 9197 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9198 | list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { |
| 9199 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9200 | if (ret) |
| 9201 | continue; |
| 9202 | |
| 9203 | spin_lock(&block_group->lock); |
| 9204 | memcpy(&item, &block_group->item, sizeof(item)); |
| 9205 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9206 | spin_unlock(&block_group->lock); |
| 9207 | |
| 9208 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 9209 | sizeof(item)); |
| 9210 | if (ret) |
| 9211 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9212 | ret = btrfs_finish_chunk_alloc(trans, extent_root, |
| 9213 | key.objectid, key.offset); |
| 9214 | if (ret) |
| 9215 | btrfs_abort_transaction(trans, extent_root, ret); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 9216 | } |
| 9217 | } |
| 9218 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9219 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
| 9220 | struct btrfs_root *root, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 9221 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9222 | u64 size) |
| 9223 | { |
| 9224 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9225 | struct btrfs_root *extent_root; |
| 9226 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9227 | |
| 9228 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9229 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 9230 | btrfs_set_log_full_commit(root->fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 9231 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9232 | cache = btrfs_create_block_group_cache(root, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 9233 | if (!cache) |
| 9234 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 9235 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9236 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9237 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9238 | btrfs_set_block_group_flags(&cache->item, type); |
| 9239 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9240 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9241 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9242 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9243 | ret = exclude_super_stripes(root, cache); |
| 9244 | if (ret) { |
| 9245 | /* |
| 9246 | * We may have excluded something, so call this just in |
| 9247 | * case. |
| 9248 | */ |
| 9249 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9250 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 9251 | return ret; |
| 9252 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9253 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9254 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 9255 | chunk_offset + size); |
| 9256 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9257 | free_excluded_extents(root, cache); |
| 9258 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9259 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 9260 | if (ret) { |
| 9261 | btrfs_remove_free_space_cache(cache); |
| 9262 | btrfs_put_block_group(cache); |
| 9263 | return ret; |
| 9264 | } |
| 9265 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9266 | ret = update_space_info(root->fs_info, cache->flags, size, bytes_used, |
| 9267 | &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 9268 | if (ret) { |
| 9269 | btrfs_remove_free_space_cache(cache); |
| 9270 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 9271 | rb_erase(&cache->cache_node, |
| 9272 | &root->fs_info->block_group_cache_tree); |
| 9273 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 9274 | btrfs_put_block_group(cache); |
| 9275 | return ret; |
| 9276 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 9277 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9278 | |
| 9279 | spin_lock(&cache->space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9280 | cache->space_info->bytes_readonly += cache->bytes_super; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 9281 | spin_unlock(&cache->space_info->lock); |
| 9282 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9283 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9284 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9285 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9286 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 9287 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9288 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9289 | return 0; |
| 9290 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9291 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9292 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 9293 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9294 | u64 extra_flags = chunk_to_extended(flags) & |
| 9295 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9296 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9297 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9298 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 9299 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 9300 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 9301 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 9302 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 9303 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 9304 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9305 | } |
| 9306 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9307 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
| 9308 | struct btrfs_root *root, u64 group_start) |
| 9309 | { |
| 9310 | struct btrfs_path *path; |
| 9311 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9312 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9313 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9314 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9315 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9316 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9317 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9318 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9319 | int factor; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9320 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9321 | root = root->fs_info->extent_root; |
| 9322 | |
| 9323 | block_group = btrfs_lookup_block_group(root->fs_info, group_start); |
| 9324 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9325 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9326 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 9327 | /* |
| 9328 | * Free the reserved super bytes from this block group before |
| 9329 | * remove it. |
| 9330 | */ |
| 9331 | free_excluded_extents(root, block_group); |
| 9332 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9333 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9334 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9335 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 9336 | BTRFS_BLOCK_GROUP_RAID1 | |
| 9337 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9338 | factor = 2; |
| 9339 | else |
| 9340 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9341 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9342 | /* make sure this block group isn't part of an allocation cluster */ |
| 9343 | cluster = &root->fs_info->data_alloc_cluster; |
| 9344 | spin_lock(&cluster->refill_lock); |
| 9345 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9346 | spin_unlock(&cluster->refill_lock); |
| 9347 | |
| 9348 | /* |
| 9349 | * make sure this block group isn't part of a metadata |
| 9350 | * allocation cluster |
| 9351 | */ |
| 9352 | cluster = &root->fs_info->meta_alloc_cluster; |
| 9353 | spin_lock(&cluster->refill_lock); |
| 9354 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 9355 | spin_unlock(&cluster->refill_lock); |
| 9356 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9357 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 9358 | if (!path) { |
| 9359 | ret = -ENOMEM; |
| 9360 | goto out; |
| 9361 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9362 | |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 9363 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9364 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 9365 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9366 | if (ret) { |
| 9367 | btrfs_add_delayed_iput(inode); |
| 9368 | goto out; |
| 9369 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9370 | clear_nlink(inode); |
| 9371 | /* One for the block groups ref */ |
| 9372 | spin_lock(&block_group->lock); |
| 9373 | if (block_group->iref) { |
| 9374 | block_group->iref = 0; |
| 9375 | block_group->inode = NULL; |
| 9376 | spin_unlock(&block_group->lock); |
| 9377 | iput(inode); |
| 9378 | } else { |
| 9379 | spin_unlock(&block_group->lock); |
| 9380 | } |
| 9381 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 9382 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9383 | } |
| 9384 | |
| 9385 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 9386 | key.offset = block_group->key.objectid; |
| 9387 | key.type = 0; |
| 9388 | |
| 9389 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 9390 | if (ret < 0) |
| 9391 | goto out; |
| 9392 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9393 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9394 | if (ret == 0) { |
| 9395 | ret = btrfs_del_item(trans, tree_root, path); |
| 9396 | if (ret) |
| 9397 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9398 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9399 | } |
| 9400 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9401 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9402 | rb_erase(&block_group->cache_node, |
| 9403 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame^] | 9404 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 9405 | |
| 9406 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 9407 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 9408 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9409 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9410 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 9411 | /* |
| 9412 | * we must use list_del_init so people can check to see if they |
| 9413 | * are still on the list after taking the semaphore |
| 9414 | */ |
| 9415 | list_del_init(&block_group->list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9416 | list_del_init(&block_group->ro_list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9417 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9418 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 9419 | block_group->space_info->block_group_kobjs[index] = NULL; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 9420 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9421 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9422 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9423 | if (kobj) { |
| 9424 | kobject_del(kobj); |
| 9425 | kobject_put(kobj); |
| 9426 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9427 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9428 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9429 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9430 | |
| 9431 | btrfs_remove_free_space_cache(block_group); |
| 9432 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9433 | spin_lock(&block_group->space_info->lock); |
| 9434 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 9435 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 9436 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 9437 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 9438 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9439 | memcpy(&key, &block_group->key, sizeof(key)); |
| 9440 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 9441 | btrfs_put_block_group(block_group); |
| 9442 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9443 | |
| 9444 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 9445 | if (ret > 0) |
| 9446 | ret = -EIO; |
| 9447 | if (ret < 0) |
| 9448 | goto out; |
| 9449 | |
| 9450 | ret = btrfs_del_item(trans, root, path); |
| 9451 | out: |
| 9452 | btrfs_free_path(path); |
| 9453 | return ret; |
| 9454 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9455 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9456 | /* |
| 9457 | * Process the unused_bgs list and remove any that don't have any allocated |
| 9458 | * space inside of them. |
| 9459 | */ |
| 9460 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 9461 | { |
| 9462 | struct btrfs_block_group_cache *block_group; |
| 9463 | struct btrfs_space_info *space_info; |
| 9464 | struct btrfs_root *root = fs_info->extent_root; |
| 9465 | struct btrfs_trans_handle *trans; |
| 9466 | int ret = 0; |
| 9467 | |
| 9468 | if (!fs_info->open) |
| 9469 | return; |
| 9470 | |
| 9471 | spin_lock(&fs_info->unused_bgs_lock); |
| 9472 | while (!list_empty(&fs_info->unused_bgs)) { |
| 9473 | u64 start, end; |
| 9474 | |
| 9475 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 9476 | struct btrfs_block_group_cache, |
| 9477 | bg_list); |
| 9478 | space_info = block_group->space_info; |
| 9479 | list_del_init(&block_group->bg_list); |
| 9480 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 9481 | btrfs_put_block_group(block_group); |
| 9482 | continue; |
| 9483 | } |
| 9484 | spin_unlock(&fs_info->unused_bgs_lock); |
| 9485 | |
| 9486 | /* Don't want to race with allocators so take the groups_sem */ |
| 9487 | down_write(&space_info->groups_sem); |
| 9488 | spin_lock(&block_group->lock); |
| 9489 | if (block_group->reserved || |
| 9490 | btrfs_block_group_used(&block_group->item) || |
| 9491 | block_group->ro) { |
| 9492 | /* |
| 9493 | * We want to bail if we made new allocations or have |
| 9494 | * outstanding allocations in this block group. We do |
| 9495 | * the ro check in case balance is currently acting on |
| 9496 | * this block group. |
| 9497 | */ |
| 9498 | spin_unlock(&block_group->lock); |
| 9499 | up_write(&space_info->groups_sem); |
| 9500 | goto next; |
| 9501 | } |
| 9502 | spin_unlock(&block_group->lock); |
| 9503 | |
| 9504 | /* We don't want to force the issue, only flip if it's ok. */ |
| 9505 | ret = set_block_group_ro(block_group, 0); |
| 9506 | up_write(&space_info->groups_sem); |
| 9507 | if (ret < 0) { |
| 9508 | ret = 0; |
| 9509 | goto next; |
| 9510 | } |
| 9511 | |
| 9512 | /* |
| 9513 | * Want to do this before we do anything else so we can recover |
| 9514 | * properly if we fail to join the transaction. |
| 9515 | */ |
| 9516 | trans = btrfs_join_transaction(root); |
| 9517 | if (IS_ERR(trans)) { |
| 9518 | btrfs_set_block_group_rw(root, block_group); |
| 9519 | ret = PTR_ERR(trans); |
| 9520 | goto next; |
| 9521 | } |
| 9522 | |
| 9523 | /* |
| 9524 | * We could have pending pinned extents for this block group, |
| 9525 | * just delete them, we don't care about them anymore. |
| 9526 | */ |
| 9527 | start = block_group->key.objectid; |
| 9528 | end = start + block_group->key.offset - 1; |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 9529 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9530 | EXTENT_DIRTY, GFP_NOFS); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 9531 | if (ret) { |
| 9532 | btrfs_set_block_group_rw(root, block_group); |
| 9533 | goto end_trans; |
| 9534 | } |
| 9535 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9536 | EXTENT_DIRTY, GFP_NOFS); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 9537 | if (ret) { |
| 9538 | btrfs_set_block_group_rw(root, block_group); |
| 9539 | goto end_trans; |
| 9540 | } |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9541 | |
| 9542 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
| 9543 | block_group->pinned = 0; |
| 9544 | |
| 9545 | /* |
| 9546 | * Btrfs_remove_chunk will abort the transaction if things go |
| 9547 | * horribly wrong. |
| 9548 | */ |
| 9549 | ret = btrfs_remove_chunk(trans, root, |
| 9550 | block_group->key.objectid); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 9551 | end_trans: |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9552 | btrfs_end_transaction(trans, root); |
| 9553 | next: |
| 9554 | btrfs_put_block_group(block_group); |
| 9555 | spin_lock(&fs_info->unused_bgs_lock); |
| 9556 | } |
| 9557 | spin_unlock(&fs_info->unused_bgs_lock); |
| 9558 | } |
| 9559 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9560 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 9561 | { |
| 9562 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9563 | struct btrfs_super_block *disk_super; |
| 9564 | u64 features; |
| 9565 | u64 flags; |
| 9566 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9567 | int ret; |
| 9568 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9569 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9570 | if (!btrfs_super_root(disk_super)) |
| 9571 | return 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9572 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9573 | features = btrfs_super_incompat_flags(disk_super); |
| 9574 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 9575 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9576 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9577 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 9578 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9579 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9580 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9581 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 9582 | if (mixed) { |
| 9583 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
| 9584 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 9585 | } else { |
| 9586 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 9587 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 9588 | if (ret) |
| 9589 | goto out; |
| 9590 | |
| 9591 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 9592 | ret = update_space_info(fs_info, flags, 0, 0, &space_info); |
| 9593 | } |
| 9594 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 9595 | return ret; |
| 9596 | } |
| 9597 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9598 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 9599 | { |
| 9600 | return unpin_extent_range(root, start, end); |
| 9601 | } |
| 9602 | |
| 9603 | int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 9604 | u64 num_bytes, u64 *actual_bytes) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9605 | { |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 9606 | return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 9607 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9608 | |
| 9609 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 9610 | { |
| 9611 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 9612 | struct btrfs_block_group_cache *cache = NULL; |
| 9613 | u64 group_trimmed; |
| 9614 | u64 start; |
| 9615 | u64 end; |
| 9616 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 9617 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9618 | int ret = 0; |
| 9619 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 9620 | /* |
| 9621 | * try to trim all FS space, our block group may start from non-zero. |
| 9622 | */ |
| 9623 | if (range->len == total_bytes) |
| 9624 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 9625 | else |
| 9626 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9627 | |
| 9628 | while (cache) { |
| 9629 | if (cache->key.objectid >= (range->start + range->len)) { |
| 9630 | btrfs_put_block_group(cache); |
| 9631 | break; |
| 9632 | } |
| 9633 | |
| 9634 | start = max(range->start, cache->key.objectid); |
| 9635 | end = min(range->start + range->len, |
| 9636 | cache->key.objectid + cache->key.offset); |
| 9637 | |
| 9638 | if (end - start >= range->minlen) { |
| 9639 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 9640 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 9641 | if (ret) { |
| 9642 | btrfs_put_block_group(cache); |
| 9643 | break; |
| 9644 | } |
| 9645 | ret = wait_block_group_cache_done(cache); |
| 9646 | if (ret) { |
| 9647 | btrfs_put_block_group(cache); |
| 9648 | break; |
| 9649 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 9650 | } |
| 9651 | ret = btrfs_trim_block_group(cache, |
| 9652 | &group_trimmed, |
| 9653 | start, |
| 9654 | end, |
| 9655 | range->minlen); |
| 9656 | |
| 9657 | trimmed += group_trimmed; |
| 9658 | if (ret) { |
| 9659 | btrfs_put_block_group(cache); |
| 9660 | break; |
| 9661 | } |
| 9662 | } |
| 9663 | |
| 9664 | cache = next_block_group(fs_info->tree_root, cache); |
| 9665 | } |
| 9666 | |
| 9667 | range->len = trimmed; |
| 9668 | return ret; |
| 9669 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 9670 | |
| 9671 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 9672 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 9673 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 9674 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 9675 | * but flush the data into disk after the snapshot creation, or to prevent |
| 9676 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 9677 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 9678 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 9679 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 9680 | { |
| 9681 | percpu_counter_dec(&root->subv_writers->counter); |
| 9682 | /* |
| 9683 | * Make sure counter is updated before we wake up |
| 9684 | * waiters. |
| 9685 | */ |
| 9686 | smp_mb(); |
| 9687 | if (waitqueue_active(&root->subv_writers->wait)) |
| 9688 | wake_up(&root->subv_writers->wait); |
| 9689 | } |
| 9690 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 9691 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 9692 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 9693 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 9694 | return 0; |
| 9695 | |
| 9696 | percpu_counter_inc(&root->subv_writers->counter); |
| 9697 | /* |
| 9698 | * Make sure counter is updated before we check for snapshot creation. |
| 9699 | */ |
| 9700 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 9701 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 9702 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 9703 | return 0; |
| 9704 | } |
| 9705 | return 1; |
| 9706 | } |