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" |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 36 | #include "free-space-tree.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 37 | #include "math.h" |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 38 | #include "sysfs.h" |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 39 | #include "qgroup.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 40 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 41 | #undef SCRAMBLE_DELAYED_REFS |
| 42 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 43 | /* |
| 44 | * control flags for do_chunk_alloc's force field |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 45 | * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk |
| 46 | * if we really need one. |
| 47 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 48 | * CHUNK_ALLOC_LIMITED means to only try and allocate one |
| 49 | * if we have very few chunks already allocated. This is |
| 50 | * used as part of the clustering code to help make sure |
| 51 | * we have a good pool of storage to cluster in, without |
| 52 | * filling the FS with empty chunks |
| 53 | * |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 54 | * CHUNK_ALLOC_FORCE means it must try to allocate one |
| 55 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 56 | */ |
| 57 | enum { |
| 58 | CHUNK_ALLOC_NO_FORCE = 0, |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 59 | CHUNK_ALLOC_LIMITED = 1, |
| 60 | CHUNK_ALLOC_FORCE = 2, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 61 | }; |
| 62 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 63 | /* |
| 64 | * Control how reservations are dealt with. |
| 65 | * |
| 66 | * RESERVE_FREE - freeing a reservation. |
| 67 | * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for |
| 68 | * ENOSPC accounting |
| 69 | * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update |
| 70 | * bytes_may_use as the ENOSPC accounting is done elsewhere |
| 71 | */ |
| 72 | enum { |
| 73 | RESERVE_FREE = 0, |
| 74 | RESERVE_ALLOC = 1, |
| 75 | RESERVE_ALLOC_NO_ACCOUNT = 2, |
| 76 | }; |
| 77 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 78 | static int update_block_group(struct btrfs_trans_handle *trans, |
| 79 | struct btrfs_root *root, u64 bytenr, |
| 80 | u64 num_bytes, int alloc); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 81 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 82 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 83 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 84 | u64 root_objectid, u64 owner_objectid, |
| 85 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 86 | struct btrfs_delayed_extent_op *extra_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 87 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 88 | struct extent_buffer *leaf, |
| 89 | struct btrfs_extent_item *ei); |
| 90 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 91 | struct btrfs_root *root, |
| 92 | u64 parent, u64 root_objectid, |
| 93 | u64 flags, u64 owner, u64 offset, |
| 94 | struct btrfs_key *ins, int ref_mod); |
| 95 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 96 | struct btrfs_root *root, |
| 97 | u64 parent, u64 root_objectid, |
| 98 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 99 | int level, struct btrfs_key *ins); |
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 | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 114 | static int __reserve_metadata_bytes(struct btrfs_root *root, |
| 115 | struct btrfs_space_info *space_info, |
| 116 | u64 orig_bytes, |
| 117 | enum btrfs_reserve_flush_enum flush); |
| 118 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 119 | struct btrfs_space_info *space_info, |
| 120 | u64 num_bytes); |
| 121 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 122 | struct btrfs_space_info *space_info, |
| 123 | u64 num_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 124 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 125 | static noinline int |
| 126 | block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 127 | { |
| 128 | smp_mb(); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 129 | return cache->cached == BTRFS_CACHE_FINISHED || |
| 130 | cache->cached == BTRFS_CACHE_ERROR; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 131 | } |
| 132 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 133 | static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits) |
| 134 | { |
| 135 | return (cache->flags & bits) == bits; |
| 136 | } |
| 137 | |
Filipe Manana | 758f2df | 2015-11-19 11:45:48 +0000 | [diff] [blame] | 138 | void btrfs_get_block_group(struct btrfs_block_group_cache *cache) |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 139 | { |
| 140 | atomic_inc(&cache->count); |
| 141 | } |
| 142 | |
| 143 | void btrfs_put_block_group(struct btrfs_block_group_cache *cache) |
| 144 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 145 | if (atomic_dec_and_test(&cache->count)) { |
| 146 | WARN_ON(cache->pinned > 0); |
| 147 | WARN_ON(cache->reserved > 0); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 148 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 149 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 150 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 153 | /* |
| 154 | * this adds the block group to the fs_info rb tree for the block group |
| 155 | * cache |
| 156 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 157 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 158 | struct btrfs_block_group_cache *block_group) |
| 159 | { |
| 160 | struct rb_node **p; |
| 161 | struct rb_node *parent = NULL; |
| 162 | struct btrfs_block_group_cache *cache; |
| 163 | |
| 164 | spin_lock(&info->block_group_cache_lock); |
| 165 | p = &info->block_group_cache_tree.rb_node; |
| 166 | |
| 167 | while (*p) { |
| 168 | parent = *p; |
| 169 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 170 | cache_node); |
| 171 | if (block_group->key.objectid < cache->key.objectid) { |
| 172 | p = &(*p)->rb_left; |
| 173 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 174 | p = &(*p)->rb_right; |
| 175 | } else { |
| 176 | spin_unlock(&info->block_group_cache_lock); |
| 177 | return -EEXIST; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | rb_link_node(&block_group->cache_node, parent, p); |
| 182 | rb_insert_color(&block_group->cache_node, |
| 183 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 184 | |
| 185 | if (info->first_logical_byte > block_group->key.objectid) |
| 186 | info->first_logical_byte = block_group->key.objectid; |
| 187 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 188 | spin_unlock(&info->block_group_cache_lock); |
| 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | /* |
| 194 | * This will return the block group at or after bytenr if contains is 0, else |
| 195 | * it will return the block group that contains the bytenr |
| 196 | */ |
| 197 | static struct btrfs_block_group_cache * |
| 198 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 199 | int contains) |
| 200 | { |
| 201 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 202 | struct rb_node *n; |
| 203 | u64 end, start; |
| 204 | |
| 205 | spin_lock(&info->block_group_cache_lock); |
| 206 | n = info->block_group_cache_tree.rb_node; |
| 207 | |
| 208 | while (n) { |
| 209 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 210 | cache_node); |
| 211 | end = cache->key.objectid + cache->key.offset - 1; |
| 212 | start = cache->key.objectid; |
| 213 | |
| 214 | if (bytenr < start) { |
| 215 | if (!contains && (!ret || start < ret->key.objectid)) |
| 216 | ret = cache; |
| 217 | n = n->rb_left; |
| 218 | } else if (bytenr > start) { |
| 219 | if (contains && bytenr <= end) { |
| 220 | ret = cache; |
| 221 | break; |
| 222 | } |
| 223 | n = n->rb_right; |
| 224 | } else { |
| 225 | ret = cache; |
| 226 | break; |
| 227 | } |
| 228 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 229 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 230 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 231 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 232 | info->first_logical_byte = ret->key.objectid; |
| 233 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 234 | spin_unlock(&info->block_group_cache_lock); |
| 235 | |
| 236 | return ret; |
| 237 | } |
| 238 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 239 | static int add_excluded_extent(struct btrfs_root *root, |
| 240 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 241 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 242 | u64 end = start + num_bytes - 1; |
| 243 | set_extent_bits(&root->fs_info->freed_extents[0], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 244 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 245 | set_extent_bits(&root->fs_info->freed_extents[1], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 246 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 247 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 248 | } |
| 249 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 250 | static void free_excluded_extents(struct btrfs_root *root, |
| 251 | struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 252 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 253 | u64 start, end; |
| 254 | |
| 255 | start = cache->key.objectid; |
| 256 | end = start + cache->key.offset - 1; |
| 257 | |
| 258 | clear_extent_bits(&root->fs_info->freed_extents[0], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 259 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 260 | clear_extent_bits(&root->fs_info->freed_extents[1], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 261 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | static int exclude_super_stripes(struct btrfs_root *root, |
| 265 | struct btrfs_block_group_cache *cache) |
| 266 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 267 | u64 bytenr; |
| 268 | u64 *logical; |
| 269 | int stripe_len; |
| 270 | int i, nr, ret; |
| 271 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 272 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 273 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 274 | cache->bytes_super += stripe_len; |
| 275 | ret = add_excluded_extent(root, cache->key.objectid, |
| 276 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 277 | if (ret) |
| 278 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 281 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 282 | bytenr = btrfs_sb_offset(i); |
| 283 | ret = btrfs_rmap_block(&root->fs_info->mapping_tree, |
| 284 | cache->key.objectid, bytenr, |
| 285 | 0, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 286 | if (ret) |
| 287 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 288 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 289 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 290 | u64 start, len; |
| 291 | |
| 292 | if (logical[nr] > cache->key.objectid + |
| 293 | cache->key.offset) |
| 294 | continue; |
| 295 | |
| 296 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 297 | continue; |
| 298 | |
| 299 | start = logical[nr]; |
| 300 | if (start < cache->key.objectid) { |
| 301 | start = cache->key.objectid; |
| 302 | len = (logical[nr] + stripe_len) - start; |
| 303 | } else { |
| 304 | len = min_t(u64, stripe_len, |
| 305 | cache->key.objectid + |
| 306 | cache->key.offset - start); |
| 307 | } |
| 308 | |
| 309 | cache->bytes_super += len; |
| 310 | ret = add_excluded_extent(root, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 311 | if (ret) { |
| 312 | kfree(logical); |
| 313 | return ret; |
| 314 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 315 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 316 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 317 | kfree(logical); |
| 318 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 319 | return 0; |
| 320 | } |
| 321 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 322 | static struct btrfs_caching_control * |
| 323 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 324 | { |
| 325 | struct btrfs_caching_control *ctl; |
| 326 | |
| 327 | spin_lock(&cache->lock); |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 328 | if (!cache->caching_ctl) { |
| 329 | spin_unlock(&cache->lock); |
| 330 | return NULL; |
| 331 | } |
| 332 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 333 | ctl = cache->caching_ctl; |
| 334 | atomic_inc(&ctl->count); |
| 335 | spin_unlock(&cache->lock); |
| 336 | return ctl; |
| 337 | } |
| 338 | |
| 339 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 340 | { |
| 341 | if (atomic_dec_and_test(&ctl->count)) |
| 342 | kfree(ctl); |
| 343 | } |
| 344 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 345 | #ifdef CONFIG_BTRFS_DEBUG |
| 346 | static void fragment_free_space(struct btrfs_root *root, |
| 347 | struct btrfs_block_group_cache *block_group) |
| 348 | { |
| 349 | u64 start = block_group->key.objectid; |
| 350 | u64 len = block_group->key.offset; |
| 351 | u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ? |
| 352 | root->nodesize : root->sectorsize; |
| 353 | u64 step = chunk << 1; |
| 354 | |
| 355 | while (len > chunk) { |
| 356 | btrfs_remove_free_space(block_group, start, chunk); |
| 357 | start += step; |
| 358 | if (len < step) |
| 359 | len = 0; |
| 360 | else |
| 361 | len -= step; |
| 362 | } |
| 363 | } |
| 364 | #endif |
| 365 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 366 | /* |
| 367 | * this is only called by cache_block_group, since we could have freed extents |
| 368 | * we need to check the pinned_extents for any extents that can't be used yet |
| 369 | * since their free space will be released as soon as the transaction commits. |
| 370 | */ |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 371 | u64 add_new_free_space(struct btrfs_block_group_cache *block_group, |
| 372 | struct btrfs_fs_info *info, u64 start, u64 end) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 373 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 374 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 375 | int ret; |
| 376 | |
| 377 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 378 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 379 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 380 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 381 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 382 | if (ret) |
| 383 | break; |
| 384 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 385 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 386 | start = extent_end + 1; |
| 387 | } else if (extent_start > start && extent_start < end) { |
| 388 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 389 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 390 | ret = btrfs_add_free_space(block_group, start, |
| 391 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 392 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 393 | start = extent_end + 1; |
| 394 | } else { |
| 395 | break; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | if (start < end) { |
| 400 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 401 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 402 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 403 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 404 | } |
| 405 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 406 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 407 | } |
| 408 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 409 | static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 410 | { |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 411 | struct btrfs_block_group_cache *block_group; |
| 412 | struct btrfs_fs_info *fs_info; |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 413 | struct btrfs_root *extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 414 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 415 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 416 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 417 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 418 | u64 last = 0; |
| 419 | u32 nritems; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 420 | int ret; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 421 | bool wakeup = true; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 422 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 423 | block_group = caching_ctl->block_group; |
| 424 | fs_info = block_group->fs_info; |
| 425 | extent_root = fs_info->extent_root; |
| 426 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 427 | path = btrfs_alloc_path(); |
| 428 | if (!path) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 429 | return -ENOMEM; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 430 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 431 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 432 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 433 | #ifdef CONFIG_BTRFS_DEBUG |
| 434 | /* |
| 435 | * If we're fragmenting we don't want to make anybody think we can |
| 436 | * allocate from this block group until we've had a chance to fragment |
| 437 | * the free space. |
| 438 | */ |
| 439 | if (btrfs_should_fragment_free_space(extent_root, block_group)) |
| 440 | wakeup = false; |
| 441 | #endif |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 442 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 443 | * We don't want to deadlock with somebody trying to allocate a new |
| 444 | * extent for the extent root while also trying to search the extent |
| 445 | * root to add free space. So we skip locking and search the commit |
| 446 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 447 | */ |
| 448 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 449 | path->search_commit_root = 1; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 450 | path->reada = READA_FORWARD; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 451 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 452 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 453 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 454 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 455 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 456 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 457 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 458 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 459 | goto out; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 460 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 461 | leaf = path->nodes[0]; |
| 462 | nritems = btrfs_header_nritems(leaf); |
| 463 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 464 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 465 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 466 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 467 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 468 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 469 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 470 | if (path->slots[0] < nritems) { |
| 471 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 472 | } else { |
| 473 | ret = find_next_key(path, 0, &key); |
| 474 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 475 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 476 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 477 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 478 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 479 | if (wakeup) |
| 480 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 481 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 482 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 483 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 484 | cond_resched(); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 485 | mutex_lock(&caching_ctl->mutex); |
| 486 | down_read(&fs_info->commit_root_sem); |
| 487 | goto next; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 488 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 489 | |
| 490 | ret = btrfs_next_leaf(extent_root, path); |
| 491 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 492 | goto out; |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 493 | if (ret) |
| 494 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 495 | leaf = path->nodes[0]; |
| 496 | nritems = btrfs_header_nritems(leaf); |
| 497 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 498 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 499 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 500 | if (key.objectid < last) { |
| 501 | key.objectid = last; |
| 502 | key.offset = 0; |
| 503 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 504 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 505 | if (wakeup) |
| 506 | caching_ctl->progress = last; |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 507 | btrfs_release_path(path); |
| 508 | goto next; |
| 509 | } |
| 510 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 511 | if (key.objectid < block_group->key.objectid) { |
| 512 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 513 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 514 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 515 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 516 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 517 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 518 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 519 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 520 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 521 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 522 | total_found += add_new_free_space(block_group, |
| 523 | fs_info, last, |
| 524 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 525 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 526 | last = key.objectid + |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 527 | fs_info->tree_root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 528 | else |
| 529 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 530 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 531 | if (total_found > CACHING_CTL_WAKE_UP) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 532 | total_found = 0; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 533 | if (wakeup) |
| 534 | wake_up(&caching_ctl->wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 535 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 536 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 537 | path->slots[0]++; |
| 538 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 539 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 540 | |
| 541 | total_found += add_new_free_space(block_group, fs_info, last, |
| 542 | block_group->key.objectid + |
| 543 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 544 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 545 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 546 | out: |
| 547 | btrfs_free_path(path); |
| 548 | return ret; |
| 549 | } |
| 550 | |
| 551 | static noinline void caching_thread(struct btrfs_work *work) |
| 552 | { |
| 553 | struct btrfs_block_group_cache *block_group; |
| 554 | struct btrfs_fs_info *fs_info; |
| 555 | struct btrfs_caching_control *caching_ctl; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 556 | struct btrfs_root *extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 557 | int ret; |
| 558 | |
| 559 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 560 | block_group = caching_ctl->block_group; |
| 561 | fs_info = block_group->fs_info; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 562 | extent_root = fs_info->extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 563 | |
| 564 | mutex_lock(&caching_ctl->mutex); |
| 565 | down_read(&fs_info->commit_root_sem); |
| 566 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 567 | if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) |
| 568 | ret = load_free_space_tree(caching_ctl); |
| 569 | else |
| 570 | ret = load_extent_tree_free(caching_ctl); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 571 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 572 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 573 | block_group->caching_ctl = NULL; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 574 | block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 575 | spin_unlock(&block_group->lock); |
| 576 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 577 | #ifdef CONFIG_BTRFS_DEBUG |
| 578 | if (btrfs_should_fragment_free_space(extent_root, block_group)) { |
| 579 | u64 bytes_used; |
| 580 | |
| 581 | spin_lock(&block_group->space_info->lock); |
| 582 | spin_lock(&block_group->lock); |
| 583 | bytes_used = block_group->key.offset - |
| 584 | btrfs_block_group_used(&block_group->item); |
| 585 | block_group->space_info->bytes_used += bytes_used >> 1; |
| 586 | spin_unlock(&block_group->lock); |
| 587 | spin_unlock(&block_group->space_info->lock); |
| 588 | fragment_free_space(extent_root, block_group); |
| 589 | } |
| 590 | #endif |
| 591 | |
| 592 | caching_ctl->progress = (u64)-1; |
Chris Mason | f7d3d2f | 2015-12-18 11:11:10 -0800 | [diff] [blame] | 593 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 594 | up_read(&fs_info->commit_root_sem); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 595 | free_excluded_extents(fs_info->extent_root, block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 596 | mutex_unlock(&caching_ctl->mutex); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 597 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 598 | wake_up(&caching_ctl->wait); |
| 599 | |
| 600 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 601 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 602 | } |
| 603 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 604 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 605 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 606 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 607 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 608 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 609 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 610 | int ret = 0; |
| 611 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 612 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 613 | if (!caching_ctl) |
| 614 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 615 | |
| 616 | INIT_LIST_HEAD(&caching_ctl->list); |
| 617 | mutex_init(&caching_ctl->mutex); |
| 618 | init_waitqueue_head(&caching_ctl->wait); |
| 619 | caching_ctl->block_group = cache; |
| 620 | caching_ctl->progress = cache->key.objectid; |
| 621 | atomic_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 622 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 623 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 624 | |
| 625 | spin_lock(&cache->lock); |
| 626 | /* |
| 627 | * This should be a rare occasion, but this could happen I think in the |
| 628 | * case where one thread starts to load the space cache info, and then |
| 629 | * some other thread starts a transaction commit which tries to do an |
| 630 | * allocation while the other thread is still loading the space cache |
| 631 | * info. The previous loop should have kept us from choosing this block |
| 632 | * group, but if we've moved to the state where we will wait on caching |
| 633 | * block groups we need to first check if we're doing a fast load here, |
| 634 | * so we can wait for it to finish, otherwise we could end up allocating |
| 635 | * from a block group who's cache gets evicted for one reason or |
| 636 | * another. |
| 637 | */ |
| 638 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 639 | struct btrfs_caching_control *ctl; |
| 640 | |
| 641 | ctl = cache->caching_ctl; |
| 642 | atomic_inc(&ctl->count); |
| 643 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 644 | spin_unlock(&cache->lock); |
| 645 | |
| 646 | schedule(); |
| 647 | |
| 648 | finish_wait(&ctl->wait, &wait); |
| 649 | put_caching_control(ctl); |
| 650 | spin_lock(&cache->lock); |
| 651 | } |
| 652 | |
| 653 | if (cache->cached != BTRFS_CACHE_NO) { |
| 654 | spin_unlock(&cache->lock); |
| 655 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 656 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 657 | } |
| 658 | WARN_ON(cache->caching_ctl); |
| 659 | cache->caching_ctl = caching_ctl; |
| 660 | cache->cached = BTRFS_CACHE_FAST; |
| 661 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 662 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 663 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 664 | mutex_lock(&caching_ctl->mutex); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 665 | ret = load_free_space_cache(fs_info, cache); |
| 666 | |
| 667 | spin_lock(&cache->lock); |
| 668 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 669 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 670 | cache->cached = BTRFS_CACHE_FINISHED; |
| 671 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 672 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 673 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 674 | if (load_cache_only) { |
| 675 | cache->caching_ctl = NULL; |
| 676 | cache->cached = BTRFS_CACHE_NO; |
| 677 | } else { |
| 678 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 679 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 680 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 681 | } |
| 682 | spin_unlock(&cache->lock); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 683 | #ifdef CONFIG_BTRFS_DEBUG |
| 684 | if (ret == 1 && |
| 685 | btrfs_should_fragment_free_space(fs_info->extent_root, |
| 686 | cache)) { |
| 687 | u64 bytes_used; |
| 688 | |
| 689 | spin_lock(&cache->space_info->lock); |
| 690 | spin_lock(&cache->lock); |
| 691 | bytes_used = cache->key.offset - |
| 692 | btrfs_block_group_used(&cache->item); |
| 693 | cache->space_info->bytes_used += bytes_used >> 1; |
| 694 | spin_unlock(&cache->lock); |
| 695 | spin_unlock(&cache->space_info->lock); |
| 696 | fragment_free_space(fs_info->extent_root, cache); |
| 697 | } |
| 698 | #endif |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 699 | mutex_unlock(&caching_ctl->mutex); |
| 700 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 701 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 702 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 703 | put_caching_control(caching_ctl); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 704 | free_excluded_extents(fs_info->extent_root, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 705 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 706 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 707 | } else { |
| 708 | /* |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 709 | * We're either using the free space tree or no caching at all. |
| 710 | * Set cached to the appropriate value and wakeup any waiters. |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 711 | */ |
| 712 | spin_lock(&cache->lock); |
| 713 | if (load_cache_only) { |
| 714 | cache->caching_ctl = NULL; |
| 715 | cache->cached = BTRFS_CACHE_NO; |
| 716 | } else { |
| 717 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 718 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 719 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 720 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 721 | wake_up(&caching_ctl->wait); |
| 722 | } |
| 723 | |
| 724 | if (load_cache_only) { |
| 725 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 726 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 727 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 728 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 729 | down_write(&fs_info->commit_root_sem); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 730 | atomic_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 731 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 732 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 733 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 734 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 735 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 736 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 737 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 738 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 739 | } |
| 740 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 741 | /* |
| 742 | * return the block group that starts at or after bytenr |
| 743 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 744 | static struct btrfs_block_group_cache * |
| 745 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 746 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 747 | struct btrfs_block_group_cache *cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 748 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 749 | cache = block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 750 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 751 | return cache; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 752 | } |
| 753 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 754 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 755 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 756 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 757 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 758 | struct btrfs_fs_info *info, |
| 759 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 760 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 761 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 762 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 763 | cache = block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 764 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 765 | return cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 766 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 767 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 768 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 769 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 770 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 771 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 772 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 773 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 774 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 775 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 776 | rcu_read_lock(); |
| 777 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 778 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 779 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 780 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 781 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 782 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 783 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 784 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 785 | } |
| 786 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 787 | /* |
| 788 | * after adding space to the filesystem, we need to clear the full flags |
| 789 | * on all the space infos. |
| 790 | */ |
| 791 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 792 | { |
| 793 | struct list_head *head = &info->space_info; |
| 794 | struct btrfs_space_info *found; |
| 795 | |
| 796 | rcu_read_lock(); |
| 797 | list_for_each_entry_rcu(found, head, list) |
| 798 | found->full = 0; |
| 799 | rcu_read_unlock(); |
| 800 | } |
| 801 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 802 | /* simple helper to search for an existing data extent at a given offset */ |
| 803 | 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] | 804 | { |
| 805 | int ret; |
| 806 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 807 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 808 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 809 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 810 | if (!path) |
| 811 | return -ENOMEM; |
| 812 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 813 | key.objectid = start; |
| 814 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 815 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 816 | ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path, |
| 817 | 0, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 818 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 819 | return ret; |
| 820 | } |
| 821 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 822 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 823 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 824 | * |
| 825 | * the head node for delayed ref is used to store the sum of all the |
| 826 | * reference count modifications queued up in the rbtree. the head |
| 827 | * node may also store the extent flags to set. This way you can check |
| 828 | * to see what the reference count and extent flags would be if all of |
| 829 | * the delayed refs are not processed. |
| 830 | */ |
| 831 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
| 832 | struct btrfs_root *root, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 833 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 834 | { |
| 835 | struct btrfs_delayed_ref_head *head; |
| 836 | struct btrfs_delayed_ref_root *delayed_refs; |
| 837 | struct btrfs_path *path; |
| 838 | struct btrfs_extent_item *ei; |
| 839 | struct extent_buffer *leaf; |
| 840 | struct btrfs_key key; |
| 841 | u32 item_size; |
| 842 | u64 num_refs; |
| 843 | u64 extent_flags; |
| 844 | int ret; |
| 845 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 846 | /* |
| 847 | * If we don't have skinny metadata, don't bother doing anything |
| 848 | * different |
| 849 | */ |
| 850 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) { |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 851 | offset = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 852 | metadata = 0; |
| 853 | } |
| 854 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 855 | path = btrfs_alloc_path(); |
| 856 | if (!path) |
| 857 | return -ENOMEM; |
| 858 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 859 | if (!trans) { |
| 860 | path->skip_locking = 1; |
| 861 | path->search_commit_root = 1; |
| 862 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 863 | |
| 864 | search_again: |
| 865 | key.objectid = bytenr; |
| 866 | key.offset = offset; |
| 867 | if (metadata) |
| 868 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 869 | else |
| 870 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 871 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 872 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, |
| 873 | &key, path, 0, 0); |
| 874 | if (ret < 0) |
| 875 | goto out_free; |
| 876 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 877 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 878 | if (path->slots[0]) { |
| 879 | path->slots[0]--; |
| 880 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 881 | path->slots[0]); |
| 882 | if (key.objectid == bytenr && |
| 883 | key.type == BTRFS_EXTENT_ITEM_KEY && |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 884 | key.offset == root->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 885 | ret = 0; |
| 886 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 887 | } |
| 888 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 889 | if (ret == 0) { |
| 890 | leaf = path->nodes[0]; |
| 891 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 892 | if (item_size >= sizeof(*ei)) { |
| 893 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 894 | struct btrfs_extent_item); |
| 895 | num_refs = btrfs_extent_refs(leaf, ei); |
| 896 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 897 | } else { |
| 898 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 899 | struct btrfs_extent_item_v0 *ei0; |
| 900 | BUG_ON(item_size != sizeof(*ei0)); |
| 901 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 902 | struct btrfs_extent_item_v0); |
| 903 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 904 | /* FIXME: this isn't correct for data */ |
| 905 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 906 | #else |
| 907 | BUG(); |
| 908 | #endif |
| 909 | } |
| 910 | BUG_ON(num_refs == 0); |
| 911 | } else { |
| 912 | num_refs = 0; |
| 913 | extent_flags = 0; |
| 914 | ret = 0; |
| 915 | } |
| 916 | |
| 917 | if (!trans) |
| 918 | goto out; |
| 919 | |
| 920 | delayed_refs = &trans->transaction->delayed_refs; |
| 921 | spin_lock(&delayed_refs->lock); |
| 922 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 923 | if (head) { |
| 924 | if (!mutex_trylock(&head->mutex)) { |
| 925 | atomic_inc(&head->node.refs); |
| 926 | spin_unlock(&delayed_refs->lock); |
| 927 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 928 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 929 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 930 | /* |
| 931 | * Mutex was contended, block until it's released and try |
| 932 | * again |
| 933 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 934 | mutex_lock(&head->mutex); |
| 935 | mutex_unlock(&head->mutex); |
| 936 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 937 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 938 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 939 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 940 | if (head->extent_op && head->extent_op->update_flags) |
| 941 | extent_flags |= head->extent_op->flags_to_set; |
| 942 | else |
| 943 | BUG_ON(num_refs == 0); |
| 944 | |
| 945 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 946 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 947 | mutex_unlock(&head->mutex); |
| 948 | } |
| 949 | spin_unlock(&delayed_refs->lock); |
| 950 | out: |
| 951 | WARN_ON(num_refs == 0); |
| 952 | if (refs) |
| 953 | *refs = num_refs; |
| 954 | if (flags) |
| 955 | *flags = extent_flags; |
| 956 | out_free: |
| 957 | btrfs_free_path(path); |
| 958 | return ret; |
| 959 | } |
| 960 | |
| 961 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 962 | * Back reference rules. Back refs have three main goals: |
| 963 | * |
| 964 | * 1) differentiate between all holders of references to an extent so that |
| 965 | * when a reference is dropped we can make sure it was a valid reference |
| 966 | * before freeing the extent. |
| 967 | * |
| 968 | * 2) Provide enough information to quickly find the holders of an extent |
| 969 | * if we notice a given block is corrupted or bad. |
| 970 | * |
| 971 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 972 | * maintenance. This is actually the same as #2, but with a slightly |
| 973 | * different use case. |
| 974 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 975 | * There are two kinds of back refs. The implicit back refs is optimized |
| 976 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 977 | * back refs of this kind provide information about the block's owner tree |
| 978 | * and the pointer's key. These information allow us to find the block by |
| 979 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 980 | * referenced by their owner trees. The location of tree block is recorded |
| 981 | * in the back refs. Actually the full back refs is generic, and can be |
| 982 | * used in all cases the implicit back refs is used. The major shortcoming |
| 983 | * of the full back refs is its overhead. Every time a tree block gets |
| 984 | * COWed, we have to update back refs entry for all pointers in it. |
| 985 | * |
| 986 | * For a newly allocated tree block, we use implicit back refs for |
| 987 | * pointers in it. This means most tree related operations only involve |
| 988 | * implicit back refs. For a tree block created in old transaction, the |
| 989 | * only way to drop a reference to it is COW it. So we can detect the |
| 990 | * event that tree block loses its owner tree's reference and do the |
| 991 | * back refs conversion. |
| 992 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 993 | * When a tree block is COWed through a tree, there are four cases: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 994 | * |
| 995 | * The reference count of the block is one and the tree is the block's |
| 996 | * owner tree. Nothing to do in this case. |
| 997 | * |
| 998 | * The reference count of the block is one and the tree is not the |
| 999 | * block's owner tree. In this case, full back refs is used for pointers |
| 1000 | * in the block. Remove these full back refs, add implicit back refs for |
| 1001 | * every pointers in the new block. |
| 1002 | * |
| 1003 | * The reference count of the block is greater than one and the tree is |
| 1004 | * the block's owner tree. In this case, implicit back refs is used for |
| 1005 | * pointers in the block. Add full back refs for every pointers in the |
| 1006 | * block, increase lower level extents' reference counts. The original |
| 1007 | * implicit back refs are entailed to the new block. |
| 1008 | * |
| 1009 | * The reference count of the block is greater than one and the tree is |
| 1010 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 1011 | * the new block, increase lower level extents' reference count. |
| 1012 | * |
| 1013 | * Back Reference Key composing: |
| 1014 | * |
| 1015 | * The key objectid corresponds to the first byte in the extent, |
| 1016 | * The key type is used to differentiate between types of back refs. |
| 1017 | * There are different meanings of the key offset for different types |
| 1018 | * of back refs. |
| 1019 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1020 | * File extents can be referenced by: |
| 1021 | * |
| 1022 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1023 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1024 | * - different offsets inside a file (bookend extents in file.c) |
| 1025 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1026 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1027 | * |
| 1028 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1029 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1030 | * - original offset in the file |
| 1031 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1032 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1033 | * The key offset for the implicit back refs is hash of the first |
| 1034 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1035 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1036 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1037 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1038 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1039 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1040 | * The key offset for the implicit back refs is the first byte of |
| 1041 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1042 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1043 | * When a file extent is allocated, The implicit back refs is used. |
| 1044 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1045 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1046 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 1047 | * |
| 1048 | * When a file extent is removed file truncation, we find the |
| 1049 | * corresponding implicit back refs and check the following fields: |
| 1050 | * |
| 1051 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1052 | * |
| 1053 | * Btree extents can be referenced by: |
| 1054 | * |
| 1055 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1056 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1057 | * Both the implicit back refs and the full back refs for tree blocks |
| 1058 | * only consist of key. The key offset for the implicit back refs is |
| 1059 | * objectid of block's owner tree. The key offset for the full back refs |
| 1060 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1061 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1062 | * When implicit back refs is used, information about the lowest key and |
| 1063 | * level of the tree block are required. These information are stored in |
| 1064 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1065 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1066 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1067 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1068 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
| 1069 | struct btrfs_root *root, |
| 1070 | struct btrfs_path *path, |
| 1071 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1072 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1073 | struct btrfs_extent_item *item; |
| 1074 | struct btrfs_extent_item_v0 *ei0; |
| 1075 | struct btrfs_extent_ref_v0 *ref0; |
| 1076 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1077 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1078 | struct btrfs_key key; |
| 1079 | struct btrfs_key found_key; |
| 1080 | u32 new_size = sizeof(*item); |
| 1081 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1082 | int ret; |
| 1083 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1084 | leaf = path->nodes[0]; |
| 1085 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1086 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1087 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1088 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1089 | struct btrfs_extent_item_v0); |
| 1090 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1091 | |
| 1092 | if (owner == (u64)-1) { |
| 1093 | while (1) { |
| 1094 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1095 | ret = btrfs_next_leaf(root, path); |
| 1096 | if (ret < 0) |
| 1097 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1098 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1099 | leaf = path->nodes[0]; |
| 1100 | } |
| 1101 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1102 | path->slots[0]); |
| 1103 | BUG_ON(key.objectid != found_key.objectid); |
| 1104 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1105 | path->slots[0]++; |
| 1106 | continue; |
| 1107 | } |
| 1108 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1109 | struct btrfs_extent_ref_v0); |
| 1110 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1111 | break; |
| 1112 | } |
| 1113 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1114 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1115 | |
| 1116 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1117 | new_size += sizeof(*bi); |
| 1118 | |
| 1119 | new_size -= sizeof(*ei0); |
| 1120 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1121 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1122 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1123 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1124 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1125 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1126 | btrfs_extend_item(root, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1127 | |
| 1128 | leaf = path->nodes[0]; |
| 1129 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1130 | btrfs_set_extent_refs(leaf, item, refs); |
| 1131 | /* FIXME: get real generation */ |
| 1132 | btrfs_set_extent_generation(leaf, item, 0); |
| 1133 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1134 | btrfs_set_extent_flags(leaf, item, |
| 1135 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1136 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1137 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1138 | /* FIXME: get first key of the block */ |
| 1139 | memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi)); |
| 1140 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1141 | } else { |
| 1142 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1143 | } |
| 1144 | btrfs_mark_buffer_dirty(leaf); |
| 1145 | return 0; |
| 1146 | } |
| 1147 | #endif |
| 1148 | |
| 1149 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1150 | { |
| 1151 | u32 high_crc = ~(u32)0; |
| 1152 | u32 low_crc = ~(u32)0; |
| 1153 | __le64 lenum; |
| 1154 | |
| 1155 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1156 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1157 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1158 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1159 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1160 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1161 | |
| 1162 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1163 | } |
| 1164 | |
| 1165 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1166 | struct btrfs_extent_data_ref *ref) |
| 1167 | { |
| 1168 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1169 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1170 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1171 | } |
| 1172 | |
| 1173 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1174 | struct btrfs_extent_data_ref *ref, |
| 1175 | u64 root_objectid, u64 owner, u64 offset) |
| 1176 | { |
| 1177 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1178 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1179 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1180 | return 0; |
| 1181 | return 1; |
| 1182 | } |
| 1183 | |
| 1184 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1185 | struct btrfs_root *root, |
| 1186 | struct btrfs_path *path, |
| 1187 | u64 bytenr, u64 parent, |
| 1188 | u64 root_objectid, |
| 1189 | u64 owner, u64 offset) |
| 1190 | { |
| 1191 | struct btrfs_key key; |
| 1192 | struct btrfs_extent_data_ref *ref; |
| 1193 | struct extent_buffer *leaf; |
| 1194 | u32 nritems; |
| 1195 | int ret; |
| 1196 | int recow; |
| 1197 | int err = -ENOENT; |
| 1198 | |
| 1199 | key.objectid = bytenr; |
| 1200 | if (parent) { |
| 1201 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1202 | key.offset = parent; |
| 1203 | } else { |
| 1204 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1205 | key.offset = hash_extent_data_ref(root_objectid, |
| 1206 | owner, offset); |
| 1207 | } |
| 1208 | again: |
| 1209 | recow = 0; |
| 1210 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1211 | if (ret < 0) { |
| 1212 | err = ret; |
| 1213 | goto fail; |
| 1214 | } |
| 1215 | |
| 1216 | if (parent) { |
| 1217 | if (!ret) |
| 1218 | return 0; |
| 1219 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1220 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1221 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1222 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1223 | if (ret < 0) { |
| 1224 | err = ret; |
| 1225 | goto fail; |
| 1226 | } |
| 1227 | if (!ret) |
| 1228 | return 0; |
| 1229 | #endif |
| 1230 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1231 | } |
| 1232 | |
| 1233 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1234 | nritems = btrfs_header_nritems(leaf); |
| 1235 | while (1) { |
| 1236 | if (path->slots[0] >= nritems) { |
| 1237 | ret = btrfs_next_leaf(root, path); |
| 1238 | if (ret < 0) |
| 1239 | err = ret; |
| 1240 | if (ret) |
| 1241 | goto fail; |
| 1242 | |
| 1243 | leaf = path->nodes[0]; |
| 1244 | nritems = btrfs_header_nritems(leaf); |
| 1245 | recow = 1; |
| 1246 | } |
| 1247 | |
| 1248 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1249 | if (key.objectid != bytenr || |
| 1250 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1251 | goto fail; |
| 1252 | |
| 1253 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1254 | struct btrfs_extent_data_ref); |
| 1255 | |
| 1256 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1257 | owner, offset)) { |
| 1258 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1259 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1260 | goto again; |
| 1261 | } |
| 1262 | err = 0; |
| 1263 | break; |
| 1264 | } |
| 1265 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1266 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1267 | fail: |
| 1268 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1269 | } |
| 1270 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1271 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1272 | struct btrfs_root *root, |
| 1273 | struct btrfs_path *path, |
| 1274 | u64 bytenr, u64 parent, |
| 1275 | u64 root_objectid, u64 owner, |
| 1276 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1277 | { |
| 1278 | struct btrfs_key key; |
| 1279 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1280 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1281 | u32 num_refs; |
| 1282 | int ret; |
| 1283 | |
| 1284 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1285 | if (parent) { |
| 1286 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1287 | key.offset = parent; |
| 1288 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1289 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1290 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1291 | key.offset = hash_extent_data_ref(root_objectid, |
| 1292 | owner, offset); |
| 1293 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1294 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1295 | |
| 1296 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1297 | if (ret && ret != -EEXIST) |
| 1298 | goto fail; |
| 1299 | |
| 1300 | leaf = path->nodes[0]; |
| 1301 | if (parent) { |
| 1302 | struct btrfs_shared_data_ref *ref; |
| 1303 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1304 | struct btrfs_shared_data_ref); |
| 1305 | if (ret == 0) { |
| 1306 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1307 | } else { |
| 1308 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1309 | num_refs += refs_to_add; |
| 1310 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1311 | } |
| 1312 | } else { |
| 1313 | struct btrfs_extent_data_ref *ref; |
| 1314 | while (ret == -EEXIST) { |
| 1315 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1316 | struct btrfs_extent_data_ref); |
| 1317 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1318 | owner, offset)) |
| 1319 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1320 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1321 | key.offset++; |
| 1322 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1323 | size); |
| 1324 | if (ret && ret != -EEXIST) |
| 1325 | goto fail; |
| 1326 | |
| 1327 | leaf = path->nodes[0]; |
| 1328 | } |
| 1329 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1330 | struct btrfs_extent_data_ref); |
| 1331 | if (ret == 0) { |
| 1332 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1333 | root_objectid); |
| 1334 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1335 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1336 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1337 | } else { |
| 1338 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1339 | num_refs += refs_to_add; |
| 1340 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1341 | } |
| 1342 | } |
| 1343 | btrfs_mark_buffer_dirty(leaf); |
| 1344 | ret = 0; |
| 1345 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1346 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1347 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1348 | } |
| 1349 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1350 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1351 | struct btrfs_root *root, |
| 1352 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1353 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1354 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1355 | struct btrfs_key key; |
| 1356 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1357 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1358 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1359 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1360 | int ret = 0; |
| 1361 | |
| 1362 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1363 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1364 | |
| 1365 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1366 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1367 | struct btrfs_extent_data_ref); |
| 1368 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1369 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1370 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1371 | struct btrfs_shared_data_ref); |
| 1372 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1373 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1374 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1375 | struct btrfs_extent_ref_v0 *ref0; |
| 1376 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1377 | struct btrfs_extent_ref_v0); |
| 1378 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1379 | #endif |
| 1380 | } else { |
| 1381 | BUG(); |
| 1382 | } |
| 1383 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1384 | BUG_ON(num_refs < refs_to_drop); |
| 1385 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1386 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1387 | if (num_refs == 0) { |
| 1388 | ret = btrfs_del_item(trans, root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1389 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1390 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1391 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1392 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1393 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1394 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1395 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1396 | else { |
| 1397 | struct btrfs_extent_ref_v0 *ref0; |
| 1398 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1399 | struct btrfs_extent_ref_v0); |
| 1400 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1401 | } |
| 1402 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1403 | btrfs_mark_buffer_dirty(leaf); |
| 1404 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1405 | return ret; |
| 1406 | } |
| 1407 | |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 1408 | static noinline u32 extent_data_ref_count(struct btrfs_path *path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1409 | struct btrfs_extent_inline_ref *iref) |
| 1410 | { |
| 1411 | struct btrfs_key key; |
| 1412 | struct extent_buffer *leaf; |
| 1413 | struct btrfs_extent_data_ref *ref1; |
| 1414 | struct btrfs_shared_data_ref *ref2; |
| 1415 | u32 num_refs = 0; |
| 1416 | |
| 1417 | leaf = path->nodes[0]; |
| 1418 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1419 | if (iref) { |
| 1420 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1421 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1422 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1423 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1424 | } else { |
| 1425 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1426 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1427 | } |
| 1428 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1429 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1430 | struct btrfs_extent_data_ref); |
| 1431 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1432 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1433 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1434 | struct btrfs_shared_data_ref); |
| 1435 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1436 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1437 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1438 | struct btrfs_extent_ref_v0 *ref0; |
| 1439 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1440 | struct btrfs_extent_ref_v0); |
| 1441 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1442 | #endif |
| 1443 | } else { |
| 1444 | WARN_ON(1); |
| 1445 | } |
| 1446 | return num_refs; |
| 1447 | } |
| 1448 | |
| 1449 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1450 | struct btrfs_root *root, |
| 1451 | struct btrfs_path *path, |
| 1452 | u64 bytenr, u64 parent, |
| 1453 | u64 root_objectid) |
| 1454 | { |
| 1455 | struct btrfs_key key; |
| 1456 | int ret; |
| 1457 | |
| 1458 | key.objectid = bytenr; |
| 1459 | if (parent) { |
| 1460 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1461 | key.offset = parent; |
| 1462 | } else { |
| 1463 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1464 | key.offset = root_objectid; |
| 1465 | } |
| 1466 | |
| 1467 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1468 | if (ret > 0) |
| 1469 | ret = -ENOENT; |
| 1470 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1471 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1472 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1473 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1474 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1475 | if (ret > 0) |
| 1476 | ret = -ENOENT; |
| 1477 | } |
| 1478 | #endif |
| 1479 | return ret; |
| 1480 | } |
| 1481 | |
| 1482 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1483 | struct btrfs_root *root, |
| 1484 | struct btrfs_path *path, |
| 1485 | u64 bytenr, u64 parent, |
| 1486 | u64 root_objectid) |
| 1487 | { |
| 1488 | struct btrfs_key key; |
| 1489 | int ret; |
| 1490 | |
| 1491 | key.objectid = bytenr; |
| 1492 | if (parent) { |
| 1493 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1494 | key.offset = parent; |
| 1495 | } else { |
| 1496 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1497 | key.offset = root_objectid; |
| 1498 | } |
| 1499 | |
| 1500 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1501 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1502 | return ret; |
| 1503 | } |
| 1504 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1505 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1506 | { |
| 1507 | int type; |
| 1508 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1509 | if (parent > 0) |
| 1510 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1511 | else |
| 1512 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1513 | } else { |
| 1514 | if (parent > 0) |
| 1515 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1516 | else |
| 1517 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1518 | } |
| 1519 | return type; |
| 1520 | } |
| 1521 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1522 | static int find_next_key(struct btrfs_path *path, int level, |
| 1523 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1524 | |
| 1525 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1526 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1527 | if (!path->nodes[level]) |
| 1528 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1529 | if (path->slots[level] + 1 >= |
| 1530 | btrfs_header_nritems(path->nodes[level])) |
| 1531 | continue; |
| 1532 | if (level == 0) |
| 1533 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1534 | path->slots[level] + 1); |
| 1535 | else |
| 1536 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1537 | path->slots[level] + 1); |
| 1538 | return 0; |
| 1539 | } |
| 1540 | return 1; |
| 1541 | } |
| 1542 | |
| 1543 | /* |
| 1544 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1545 | * to the address of inline back ref, and 0 is returned. |
| 1546 | * |
| 1547 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1548 | * should be inserted, and -ENOENT is returned. |
| 1549 | * |
| 1550 | * if insert is true and there are too many inline back refs, the path |
| 1551 | * points to the extent item, and -EAGAIN is returned. |
| 1552 | * |
| 1553 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1554 | * items in the tree are ordered. |
| 1555 | */ |
| 1556 | static noinline_for_stack |
| 1557 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1558 | struct btrfs_root *root, |
| 1559 | struct btrfs_path *path, |
| 1560 | struct btrfs_extent_inline_ref **ref_ret, |
| 1561 | u64 bytenr, u64 num_bytes, |
| 1562 | u64 parent, u64 root_objectid, |
| 1563 | u64 owner, u64 offset, int insert) |
| 1564 | { |
| 1565 | struct btrfs_key key; |
| 1566 | struct extent_buffer *leaf; |
| 1567 | struct btrfs_extent_item *ei; |
| 1568 | struct btrfs_extent_inline_ref *iref; |
| 1569 | u64 flags; |
| 1570 | u64 item_size; |
| 1571 | unsigned long ptr; |
| 1572 | unsigned long end; |
| 1573 | int extra_size; |
| 1574 | int type; |
| 1575 | int want; |
| 1576 | int ret; |
| 1577 | int err = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1578 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 1579 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1580 | |
| 1581 | key.objectid = bytenr; |
| 1582 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1583 | key.offset = num_bytes; |
| 1584 | |
| 1585 | want = extent_ref_type(parent, owner); |
| 1586 | if (insert) { |
| 1587 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1588 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1589 | } else |
| 1590 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1591 | |
| 1592 | /* |
| 1593 | * Owner is our parent level, so we can just add one to get the level |
| 1594 | * for the block we are interested in. |
| 1595 | */ |
| 1596 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1597 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1598 | key.offset = owner; |
| 1599 | } |
| 1600 | |
| 1601 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1602 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1603 | if (ret < 0) { |
| 1604 | err = ret; |
| 1605 | goto out; |
| 1606 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1607 | |
| 1608 | /* |
| 1609 | * We may be a newly converted file system which still has the old fat |
| 1610 | * extent entries for metadata, so try and see if we have one of those. |
| 1611 | */ |
| 1612 | if (ret > 0 && skinny_metadata) { |
| 1613 | skinny_metadata = false; |
| 1614 | if (path->slots[0]) { |
| 1615 | path->slots[0]--; |
| 1616 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1617 | path->slots[0]); |
| 1618 | if (key.objectid == bytenr && |
| 1619 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1620 | key.offset == num_bytes) |
| 1621 | ret = 0; |
| 1622 | } |
| 1623 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1624 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1625 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1626 | key.offset = num_bytes; |
| 1627 | btrfs_release_path(path); |
| 1628 | goto again; |
| 1629 | } |
| 1630 | } |
| 1631 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1632 | if (ret && !insert) { |
| 1633 | err = -ENOENT; |
| 1634 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1635 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1636 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1637 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1638 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1639 | |
| 1640 | leaf = path->nodes[0]; |
| 1641 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1642 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1643 | if (item_size < sizeof(*ei)) { |
| 1644 | if (!insert) { |
| 1645 | err = -ENOENT; |
| 1646 | goto out; |
| 1647 | } |
| 1648 | ret = convert_extent_item_v0(trans, root, path, owner, |
| 1649 | extra_size); |
| 1650 | if (ret < 0) { |
| 1651 | err = ret; |
| 1652 | goto out; |
| 1653 | } |
| 1654 | leaf = path->nodes[0]; |
| 1655 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1656 | } |
| 1657 | #endif |
| 1658 | BUG_ON(item_size < sizeof(*ei)); |
| 1659 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1660 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1661 | flags = btrfs_extent_flags(leaf, ei); |
| 1662 | |
| 1663 | ptr = (unsigned long)(ei + 1); |
| 1664 | end = (unsigned long)ei + item_size; |
| 1665 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1666 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1667 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1668 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1669 | } |
| 1670 | |
| 1671 | err = -ENOENT; |
| 1672 | while (1) { |
| 1673 | if (ptr >= end) { |
| 1674 | WARN_ON(ptr > end); |
| 1675 | break; |
| 1676 | } |
| 1677 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1678 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1679 | if (want < type) |
| 1680 | break; |
| 1681 | if (want > type) { |
| 1682 | ptr += btrfs_extent_inline_ref_size(type); |
| 1683 | continue; |
| 1684 | } |
| 1685 | |
| 1686 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1687 | struct btrfs_extent_data_ref *dref; |
| 1688 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1689 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1690 | owner, offset)) { |
| 1691 | err = 0; |
| 1692 | break; |
| 1693 | } |
| 1694 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1695 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1696 | break; |
| 1697 | } else { |
| 1698 | u64 ref_offset; |
| 1699 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1700 | if (parent > 0) { |
| 1701 | if (parent == ref_offset) { |
| 1702 | err = 0; |
| 1703 | break; |
| 1704 | } |
| 1705 | if (ref_offset < parent) |
| 1706 | break; |
| 1707 | } else { |
| 1708 | if (root_objectid == ref_offset) { |
| 1709 | err = 0; |
| 1710 | break; |
| 1711 | } |
| 1712 | if (ref_offset < root_objectid) |
| 1713 | break; |
| 1714 | } |
| 1715 | } |
| 1716 | ptr += btrfs_extent_inline_ref_size(type); |
| 1717 | } |
| 1718 | if (err == -ENOENT && insert) { |
| 1719 | if (item_size + extra_size >= |
| 1720 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1721 | err = -EAGAIN; |
| 1722 | goto out; |
| 1723 | } |
| 1724 | /* |
| 1725 | * To add new inline back ref, we have to make sure |
| 1726 | * there is no corresponding back ref item. |
| 1727 | * For simplicity, we just do not add new inline back |
| 1728 | * ref if there is any kind of item for this block |
| 1729 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1730 | if (find_next_key(path, 0, &key) == 0 && |
| 1731 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1732 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1733 | err = -EAGAIN; |
| 1734 | goto out; |
| 1735 | } |
| 1736 | } |
| 1737 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1738 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1739 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1740 | path->keep_locks = 0; |
| 1741 | btrfs_unlock_up_safe(path, 1); |
| 1742 | } |
| 1743 | return err; |
| 1744 | } |
| 1745 | |
| 1746 | /* |
| 1747 | * helper to add new inline back ref |
| 1748 | */ |
| 1749 | static noinline_for_stack |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1750 | void setup_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1751 | struct btrfs_path *path, |
| 1752 | struct btrfs_extent_inline_ref *iref, |
| 1753 | u64 parent, u64 root_objectid, |
| 1754 | u64 owner, u64 offset, int refs_to_add, |
| 1755 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1756 | { |
| 1757 | struct extent_buffer *leaf; |
| 1758 | struct btrfs_extent_item *ei; |
| 1759 | unsigned long ptr; |
| 1760 | unsigned long end; |
| 1761 | unsigned long item_offset; |
| 1762 | u64 refs; |
| 1763 | int size; |
| 1764 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1765 | |
| 1766 | leaf = path->nodes[0]; |
| 1767 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1768 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1769 | |
| 1770 | type = extent_ref_type(parent, owner); |
| 1771 | size = btrfs_extent_inline_ref_size(type); |
| 1772 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1773 | btrfs_extend_item(root, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1774 | |
| 1775 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1776 | refs = btrfs_extent_refs(leaf, ei); |
| 1777 | refs += refs_to_add; |
| 1778 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1779 | if (extent_op) |
| 1780 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1781 | |
| 1782 | ptr = (unsigned long)ei + item_offset; |
| 1783 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1784 | if (ptr < end - size) |
| 1785 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1786 | end - size - ptr); |
| 1787 | |
| 1788 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1789 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1790 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1791 | struct btrfs_extent_data_ref *dref; |
| 1792 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1793 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1794 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1795 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1796 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1797 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1798 | struct btrfs_shared_data_ref *sref; |
| 1799 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1800 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1801 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1802 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1803 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1804 | } else { |
| 1805 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1806 | } |
| 1807 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
| 1811 | struct btrfs_root *root, |
| 1812 | struct btrfs_path *path, |
| 1813 | struct btrfs_extent_inline_ref **ref_ret, |
| 1814 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1815 | u64 root_objectid, u64 owner, u64 offset) |
| 1816 | { |
| 1817 | int ret; |
| 1818 | |
| 1819 | ret = lookup_inline_extent_backref(trans, root, path, ref_ret, |
| 1820 | bytenr, num_bytes, parent, |
| 1821 | root_objectid, owner, offset, 0); |
| 1822 | if (ret != -ENOENT) |
| 1823 | return ret; |
| 1824 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1825 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1826 | *ref_ret = NULL; |
| 1827 | |
| 1828 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1829 | ret = lookup_tree_block_ref(trans, root, path, bytenr, parent, |
| 1830 | root_objectid); |
| 1831 | } else { |
| 1832 | ret = lookup_extent_data_ref(trans, root, path, bytenr, parent, |
| 1833 | root_objectid, owner, offset); |
| 1834 | } |
| 1835 | return ret; |
| 1836 | } |
| 1837 | |
| 1838 | /* |
| 1839 | * helper to update/remove inline back ref |
| 1840 | */ |
| 1841 | static noinline_for_stack |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1842 | void update_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1843 | struct btrfs_path *path, |
| 1844 | struct btrfs_extent_inline_ref *iref, |
| 1845 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1846 | struct btrfs_delayed_extent_op *extent_op, |
| 1847 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1848 | { |
| 1849 | struct extent_buffer *leaf; |
| 1850 | struct btrfs_extent_item *ei; |
| 1851 | struct btrfs_extent_data_ref *dref = NULL; |
| 1852 | struct btrfs_shared_data_ref *sref = NULL; |
| 1853 | unsigned long ptr; |
| 1854 | unsigned long end; |
| 1855 | u32 item_size; |
| 1856 | int size; |
| 1857 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1858 | u64 refs; |
| 1859 | |
| 1860 | leaf = path->nodes[0]; |
| 1861 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1862 | refs = btrfs_extent_refs(leaf, ei); |
| 1863 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1864 | refs += refs_to_mod; |
| 1865 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1866 | if (extent_op) |
| 1867 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1868 | |
| 1869 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1870 | |
| 1871 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1872 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1873 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1874 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1875 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1876 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1877 | } else { |
| 1878 | refs = 1; |
| 1879 | BUG_ON(refs_to_mod != -1); |
| 1880 | } |
| 1881 | |
| 1882 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1883 | refs += refs_to_mod; |
| 1884 | |
| 1885 | if (refs > 0) { |
| 1886 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1887 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1888 | else |
| 1889 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1890 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1891 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1892 | size = btrfs_extent_inline_ref_size(type); |
| 1893 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1894 | ptr = (unsigned long)iref; |
| 1895 | end = (unsigned long)ei + item_size; |
| 1896 | if (ptr + size < end) |
| 1897 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1898 | end - ptr - size); |
| 1899 | item_size -= size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1900 | btrfs_truncate_item(root, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1901 | } |
| 1902 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1903 | } |
| 1904 | |
| 1905 | static noinline_for_stack |
| 1906 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1907 | struct btrfs_root *root, |
| 1908 | struct btrfs_path *path, |
| 1909 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1910 | u64 root_objectid, u64 owner, |
| 1911 | u64 offset, int refs_to_add, |
| 1912 | struct btrfs_delayed_extent_op *extent_op) |
| 1913 | { |
| 1914 | struct btrfs_extent_inline_ref *iref; |
| 1915 | int ret; |
| 1916 | |
| 1917 | ret = lookup_inline_extent_backref(trans, root, path, &iref, |
| 1918 | bytenr, num_bytes, parent, |
| 1919 | root_objectid, owner, offset, 1); |
| 1920 | if (ret == 0) { |
| 1921 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1922 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1923 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1924 | } else if (ret == -ENOENT) { |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1925 | setup_inline_extent_backref(root, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1926 | root_objectid, owner, offset, |
| 1927 | refs_to_add, extent_op); |
| 1928 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1929 | } |
| 1930 | return ret; |
| 1931 | } |
| 1932 | |
| 1933 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
| 1934 | struct btrfs_root *root, |
| 1935 | struct btrfs_path *path, |
| 1936 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1937 | u64 owner, u64 offset, int refs_to_add) |
| 1938 | { |
| 1939 | int ret; |
| 1940 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1941 | BUG_ON(refs_to_add != 1); |
| 1942 | ret = insert_tree_block_ref(trans, root, path, bytenr, |
| 1943 | parent, root_objectid); |
| 1944 | } else { |
| 1945 | ret = insert_extent_data_ref(trans, root, path, bytenr, |
| 1946 | parent, root_objectid, |
| 1947 | owner, offset, refs_to_add); |
| 1948 | } |
| 1949 | return ret; |
| 1950 | } |
| 1951 | |
| 1952 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
| 1953 | struct btrfs_root *root, |
| 1954 | struct btrfs_path *path, |
| 1955 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1956 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1957 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1958 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1959 | |
| 1960 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1961 | if (iref) { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1962 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1963 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1964 | } else if (is_data) { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1965 | ret = remove_extent_data_ref(trans, root, path, refs_to_drop, |
| 1966 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1967 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1968 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1969 | ret = btrfs_del_item(trans, root, path); |
| 1970 | } |
| 1971 | return ret; |
| 1972 | } |
| 1973 | |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1974 | #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1975 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1976 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1977 | { |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1978 | int j, ret = 0; |
| 1979 | u64 bytes_left, end; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1980 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1981 | |
| 1982 | if (WARN_ON(start != aligned_start)) { |
| 1983 | len -= aligned_start - start; |
| 1984 | len = round_down(len, 1 << 9); |
| 1985 | start = aligned_start; |
| 1986 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1987 | |
| 1988 | *discarded_bytes = 0; |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1989 | |
| 1990 | if (!len) |
| 1991 | return 0; |
| 1992 | |
| 1993 | end = start + len; |
| 1994 | bytes_left = len; |
| 1995 | |
| 1996 | /* Skip any superblocks on this device. */ |
| 1997 | for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) { |
| 1998 | u64 sb_start = btrfs_sb_offset(j); |
| 1999 | u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE; |
| 2000 | u64 size = sb_start - start; |
| 2001 | |
| 2002 | if (!in_range(sb_start, start, bytes_left) && |
| 2003 | !in_range(sb_end, start, bytes_left) && |
| 2004 | !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE)) |
| 2005 | continue; |
| 2006 | |
| 2007 | /* |
| 2008 | * Superblock spans beginning of range. Adjust start and |
| 2009 | * try again. |
| 2010 | */ |
| 2011 | if (sb_start <= start) { |
| 2012 | start += sb_end - start; |
| 2013 | if (start > end) { |
| 2014 | bytes_left = 0; |
| 2015 | break; |
| 2016 | } |
| 2017 | bytes_left = end - start; |
| 2018 | continue; |
| 2019 | } |
| 2020 | |
| 2021 | if (size) { |
| 2022 | ret = blkdev_issue_discard(bdev, start >> 9, size >> 9, |
| 2023 | GFP_NOFS, 0); |
| 2024 | if (!ret) |
| 2025 | *discarded_bytes += size; |
| 2026 | else if (ret != -EOPNOTSUPP) |
| 2027 | return ret; |
| 2028 | } |
| 2029 | |
| 2030 | start = sb_end; |
| 2031 | if (start > end) { |
| 2032 | bytes_left = 0; |
| 2033 | break; |
| 2034 | } |
| 2035 | bytes_left = end - start; |
| 2036 | } |
| 2037 | |
| 2038 | if (bytes_left) { |
| 2039 | ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9, |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2040 | GFP_NOFS, 0); |
| 2041 | if (!ret) |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 2042 | *discarded_bytes += bytes_left; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2043 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2044 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2045 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2046 | |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 2047 | int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
| 2048 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2049 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2050 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2051 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2052 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2053 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2054 | |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 2055 | /* |
| 2056 | * Avoid races with device replace and make sure our bbio has devices |
| 2057 | * associated to its stripes that don't go away while we are discarding. |
| 2058 | */ |
| 2059 | btrfs_bio_counter_inc_blocked(root->fs_info); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2060 | /* Tell the block device(s) that the sectors can be discarded */ |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 2061 | ret = btrfs_map_block(root->fs_info, REQ_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2062 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2063 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2064 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2065 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2066 | int i; |
| 2067 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2068 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2069 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2070 | u64 bytes; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2071 | if (!stripe->dev->can_discard) |
| 2072 | continue; |
| 2073 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2074 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 2075 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2076 | stripe->length, |
| 2077 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2078 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2079 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2080 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2081 | 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] | 2082 | |
| 2083 | /* |
| 2084 | * Just in case we get back EOPNOTSUPP for some reason, |
| 2085 | * just ignore the return value so we don't screw up |
| 2086 | * people calling discard_extent. |
| 2087 | */ |
| 2088 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2089 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2090 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2091 | } |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 2092 | btrfs_bio_counter_dec(root->fs_info); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2093 | |
| 2094 | if (actual_bytes) |
| 2095 | *actual_bytes = discarded_bytes; |
| 2096 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2097 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2098 | if (ret == -EOPNOTSUPP) |
| 2099 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2100 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2101 | } |
| 2102 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2103 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2104 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 2105 | struct btrfs_root *root, |
| 2106 | u64 bytenr, u64 num_bytes, u64 parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2107 | u64 root_objectid, u64 owner, u64 offset) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2108 | { |
| 2109 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2110 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2111 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2112 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 2113 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2114 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2115 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2116 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 2117 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2118 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2119 | BTRFS_ADD_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2120 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2121 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 2122 | num_bytes, parent, root_objectid, |
| 2123 | owner, offset, 0, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2124 | BTRFS_ADD_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2125 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2126 | return ret; |
| 2127 | } |
| 2128 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2129 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2130 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2131 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2132 | u64 parent, u64 root_objectid, |
| 2133 | u64 owner, u64 offset, int refs_to_add, |
| 2134 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2135 | { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2136 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2137 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2138 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2139 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2140 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2141 | u64 bytenr = node->bytenr; |
| 2142 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2143 | u64 refs; |
| 2144 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2145 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2146 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2147 | if (!path) |
| 2148 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2149 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2150 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2151 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2152 | /* 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] | 2153 | ret = insert_inline_extent_backref(trans, fs_info->extent_root, path, |
| 2154 | bytenr, num_bytes, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2155 | root_objectid, owner, offset, |
| 2156 | refs_to_add, extent_op); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 2157 | if ((ret < 0 && ret != -EAGAIN) || !ret) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2158 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2159 | |
| 2160 | /* |
| 2161 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2162 | * inline extent ref, so just update the reference count and add a |
| 2163 | * normal backref. |
| 2164 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2165 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2166 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2167 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2168 | refs = btrfs_extent_refs(leaf, item); |
| 2169 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2170 | if (extent_op) |
| 2171 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2172 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2173 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2174 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2175 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2176 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2177 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2178 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2179 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2180 | path, bytenr, parent, root_objectid, |
| 2181 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2182 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2183 | btrfs_abort_transaction(trans, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2184 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2185 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2186 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2187 | } |
| 2188 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2189 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2190 | struct btrfs_root *root, |
| 2191 | struct btrfs_delayed_ref_node *node, |
| 2192 | struct btrfs_delayed_extent_op *extent_op, |
| 2193 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2194 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2195 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2196 | struct btrfs_delayed_data_ref *ref; |
| 2197 | struct btrfs_key ins; |
| 2198 | u64 parent = 0; |
| 2199 | u64 ref_root = 0; |
| 2200 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2201 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2202 | ins.objectid = node->bytenr; |
| 2203 | ins.offset = node->num_bytes; |
| 2204 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2205 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2206 | ref = btrfs_delayed_node_to_data_ref(node); |
Jeff Mahoney | bc07452 | 2016-06-09 17:27:55 -0400 | [diff] [blame] | 2207 | trace_run_delayed_data_ref(root->fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2208 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2209 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2210 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2211 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2212 | |
| 2213 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2214 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2215 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2216 | ret = alloc_reserved_file_extent(trans, root, |
| 2217 | parent, ref_root, flags, |
| 2218 | ref->objectid, ref->offset, |
| 2219 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2220 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2221 | ret = __btrfs_inc_extent_ref(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2222 | ref_root, ref->objectid, |
| 2223 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2224 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2225 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2226 | ret = __btrfs_free_extent(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2227 | ref_root, ref->objectid, |
| 2228 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2229 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2230 | } else { |
| 2231 | BUG(); |
| 2232 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2233 | return ret; |
| 2234 | } |
| 2235 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2236 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2237 | struct extent_buffer *leaf, |
| 2238 | struct btrfs_extent_item *ei) |
| 2239 | { |
| 2240 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2241 | if (extent_op->update_flags) { |
| 2242 | flags |= extent_op->flags_to_set; |
| 2243 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2244 | } |
| 2245 | |
| 2246 | if (extent_op->update_key) { |
| 2247 | struct btrfs_tree_block_info *bi; |
| 2248 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2249 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2250 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2251 | } |
| 2252 | } |
| 2253 | |
| 2254 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2255 | struct btrfs_root *root, |
| 2256 | struct btrfs_delayed_ref_node *node, |
| 2257 | struct btrfs_delayed_extent_op *extent_op) |
| 2258 | { |
| 2259 | struct btrfs_key key; |
| 2260 | struct btrfs_path *path; |
| 2261 | struct btrfs_extent_item *ei; |
| 2262 | struct extent_buffer *leaf; |
| 2263 | u32 item_size; |
| 2264 | int ret; |
| 2265 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2266 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2267 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2268 | if (trans->aborted) |
| 2269 | return 0; |
| 2270 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2271 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2272 | metadata = 0; |
| 2273 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2274 | path = btrfs_alloc_path(); |
| 2275 | if (!path) |
| 2276 | return -ENOMEM; |
| 2277 | |
| 2278 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2279 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2280 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2281 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2282 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2283 | } else { |
| 2284 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2285 | key.offset = node->num_bytes; |
| 2286 | } |
| 2287 | |
| 2288 | again: |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2289 | path->reada = READA_FORWARD; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2290 | path->leave_spinning = 1; |
| 2291 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2292 | path, 0, 1); |
| 2293 | if (ret < 0) { |
| 2294 | err = ret; |
| 2295 | goto out; |
| 2296 | } |
| 2297 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2298 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2299 | if (path->slots[0] > 0) { |
| 2300 | path->slots[0]--; |
| 2301 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2302 | path->slots[0]); |
| 2303 | if (key.objectid == node->bytenr && |
| 2304 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2305 | key.offset == node->num_bytes) |
| 2306 | ret = 0; |
| 2307 | } |
| 2308 | if (ret > 0) { |
| 2309 | btrfs_release_path(path); |
| 2310 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2311 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2312 | key.objectid = node->bytenr; |
| 2313 | key.offset = node->num_bytes; |
| 2314 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2315 | goto again; |
| 2316 | } |
| 2317 | } else { |
| 2318 | err = -EIO; |
| 2319 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2320 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2321 | } |
| 2322 | |
| 2323 | leaf = path->nodes[0]; |
| 2324 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2325 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2326 | if (item_size < sizeof(*ei)) { |
| 2327 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2328 | path, (u64)-1, 0); |
| 2329 | if (ret < 0) { |
| 2330 | err = ret; |
| 2331 | goto out; |
| 2332 | } |
| 2333 | leaf = path->nodes[0]; |
| 2334 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2335 | } |
| 2336 | #endif |
| 2337 | BUG_ON(item_size < sizeof(*ei)); |
| 2338 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2339 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2340 | |
| 2341 | btrfs_mark_buffer_dirty(leaf); |
| 2342 | out: |
| 2343 | btrfs_free_path(path); |
| 2344 | return err; |
| 2345 | } |
| 2346 | |
| 2347 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2348 | struct btrfs_root *root, |
| 2349 | struct btrfs_delayed_ref_node *node, |
| 2350 | struct btrfs_delayed_extent_op *extent_op, |
| 2351 | int insert_reserved) |
| 2352 | { |
| 2353 | int ret = 0; |
| 2354 | struct btrfs_delayed_tree_ref *ref; |
| 2355 | struct btrfs_key ins; |
| 2356 | u64 parent = 0; |
| 2357 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2358 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2359 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2360 | |
| 2361 | ref = btrfs_delayed_node_to_tree_ref(node); |
Jeff Mahoney | bc07452 | 2016-06-09 17:27:55 -0400 | [diff] [blame] | 2362 | trace_run_delayed_tree_ref(root->fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2363 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2364 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2365 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2366 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2367 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2368 | ins.objectid = node->bytenr; |
| 2369 | if (skinny_metadata) { |
| 2370 | ins.offset = ref->level; |
| 2371 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2372 | } else { |
| 2373 | ins.offset = node->num_bytes; |
| 2374 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2375 | } |
| 2376 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2377 | BUG_ON(node->ref_mod != 1); |
| 2378 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2379 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2380 | ret = alloc_reserved_tree_block(trans, root, |
| 2381 | parent, ref_root, |
| 2382 | extent_op->flags_to_set, |
| 2383 | &extent_op->key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2384 | ref->level, &ins); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2385 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2386 | ret = __btrfs_inc_extent_ref(trans, root, node, |
| 2387 | parent, ref_root, |
| 2388 | ref->level, 0, 1, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2389 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2390 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2391 | ret = __btrfs_free_extent(trans, root, node, |
| 2392 | parent, ref_root, |
| 2393 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2394 | } else { |
| 2395 | BUG(); |
| 2396 | } |
| 2397 | return ret; |
| 2398 | } |
| 2399 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2400 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2401 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2402 | struct btrfs_root *root, |
| 2403 | struct btrfs_delayed_ref_node *node, |
| 2404 | struct btrfs_delayed_extent_op *extent_op, |
| 2405 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2406 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2407 | int ret = 0; |
| 2408 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2409 | if (trans->aborted) { |
| 2410 | if (insert_reserved) |
| 2411 | btrfs_pin_extent(root, node->bytenr, |
| 2412 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2413 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2414 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2415 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2416 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2417 | struct btrfs_delayed_ref_head *head; |
| 2418 | /* |
| 2419 | * we've hit the end of the chain and we were supposed |
| 2420 | * to insert this extent into the tree. But, it got |
| 2421 | * deleted before we ever needed to insert it, so all |
| 2422 | * we have to do is clean up the accounting |
| 2423 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2424 | BUG_ON(extent_op); |
| 2425 | head = btrfs_delayed_node_to_head(node); |
Jeff Mahoney | bc07452 | 2016-06-09 17:27:55 -0400 | [diff] [blame] | 2426 | trace_run_delayed_ref_head(root->fs_info, node, head, |
| 2427 | node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2428 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2429 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2430 | btrfs_pin_extent(root, node->bytenr, |
| 2431 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2432 | if (head->is_data) { |
| 2433 | ret = btrfs_del_csums(trans, root, |
| 2434 | node->bytenr, |
| 2435 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2436 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2437 | } |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2438 | |
| 2439 | /* Also free its reserved qgroup space */ |
| 2440 | btrfs_qgroup_free_delayed_ref(root->fs_info, |
| 2441 | head->qgroup_ref_root, |
| 2442 | head->qgroup_reserved); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2443 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2444 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2445 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2446 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2447 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2448 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2449 | insert_reserved); |
| 2450 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2451 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2452 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2453 | insert_reserved); |
| 2454 | else |
| 2455 | BUG(); |
| 2456 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2457 | } |
| 2458 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2459 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2460 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2461 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2462 | struct btrfs_delayed_ref_node *ref; |
| 2463 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2464 | if (list_empty(&head->ref_list)) |
| 2465 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2466 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2467 | /* |
| 2468 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2469 | * This is to prevent a ref count from going down to zero, which deletes |
| 2470 | * the extent item from the extent tree, when there still are references |
| 2471 | * to add, which would fail because they would not find the extent item. |
| 2472 | */ |
| 2473 | list_for_each_entry(ref, &head->ref_list, list) { |
| 2474 | if (ref->action == BTRFS_ADD_DELAYED_REF) |
| 2475 | return ref; |
| 2476 | } |
| 2477 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2478 | return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node, |
| 2479 | list); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2480 | } |
| 2481 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2482 | /* |
| 2483 | * Returns 0 on success or if called with an already aborted transaction. |
| 2484 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2485 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2486 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2487 | struct btrfs_root *root, |
| 2488 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2489 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2490 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2491 | struct btrfs_delayed_ref_node *ref; |
| 2492 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2493 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2494 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2495 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2496 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2497 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2498 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2499 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2500 | |
| 2501 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2502 | while (1) { |
| 2503 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2504 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2505 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2506 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2507 | spin_lock(&delayed_refs->lock); |
| 2508 | locked_ref = btrfs_select_ref_head(trans); |
| 2509 | if (!locked_ref) { |
| 2510 | spin_unlock(&delayed_refs->lock); |
| 2511 | break; |
| 2512 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2513 | |
| 2514 | /* grab the lock that says we are going to process |
| 2515 | * all the refs for this head */ |
| 2516 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2517 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2518 | /* |
| 2519 | * we may have dropped the spin lock to get the head |
| 2520 | * mutex lock, and that might have given someone else |
| 2521 | * time to free the head. If that's true, it has been |
| 2522 | * removed from our list and we can move on. |
| 2523 | */ |
| 2524 | if (ret == -EAGAIN) { |
| 2525 | locked_ref = NULL; |
| 2526 | count++; |
| 2527 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2528 | } |
| 2529 | } |
| 2530 | |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2531 | /* |
| 2532 | * We need to try and merge add/drops of the same ref since we |
| 2533 | * can run into issues with relocate dropping the implicit ref |
| 2534 | * and then it being added back again before the drop can |
| 2535 | * finish. If we merged anything we need to re-loop so we can |
| 2536 | * get a good ref. |
| 2537 | * Or we can get node references of the same type that weren't |
| 2538 | * merged when created due to bumps in the tree mod seq, and |
| 2539 | * we need to merge them to prevent adding an inline extent |
| 2540 | * backref before dropping it (triggering a BUG_ON at |
| 2541 | * insert_inline_extent_backref()). |
| 2542 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2543 | spin_lock(&locked_ref->lock); |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2544 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2545 | locked_ref); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2546 | |
| 2547 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2548 | * locked_ref is the head node, so we have to go one |
| 2549 | * node back for any delayed ref updates |
| 2550 | */ |
| 2551 | ref = select_delayed_ref(locked_ref); |
| 2552 | |
| 2553 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2554 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2555 | spin_unlock(&locked_ref->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2556 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2557 | spin_lock(&delayed_refs->lock); |
| 2558 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2559 | delayed_refs->num_heads_ready++; |
| 2560 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2561 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2562 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2563 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2564 | continue; |
| 2565 | } |
| 2566 | |
| 2567 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2568 | * record the must insert reserved flag before we |
| 2569 | * drop the spin lock. |
| 2570 | */ |
| 2571 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2572 | locked_ref->must_insert_reserved = 0; |
| 2573 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2574 | extent_op = locked_ref->extent_op; |
| 2575 | locked_ref->extent_op = NULL; |
| 2576 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2577 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2578 | |
| 2579 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2580 | /* All delayed refs have been processed, Go ahead |
| 2581 | * and send the head node to run_one_delayed_ref, |
| 2582 | * so that any accounting fixes can happen |
| 2583 | */ |
| 2584 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2585 | |
| 2586 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2587 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2588 | extent_op = NULL; |
| 2589 | } |
| 2590 | |
| 2591 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2592 | spin_unlock(&locked_ref->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2593 | ret = run_delayed_extent_op(trans, root, |
| 2594 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2595 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2596 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2597 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2598 | /* |
| 2599 | * Need to reset must_insert_reserved if |
| 2600 | * there was an error so the abort stuff |
| 2601 | * can cleanup the reserved space |
| 2602 | * properly. |
| 2603 | */ |
| 2604 | if (must_insert_reserved) |
| 2605 | locked_ref->must_insert_reserved = 1; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2606 | locked_ref->processing = 0; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2607 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2608 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2609 | return ret; |
| 2610 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2611 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2612 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2613 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2614 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2615 | * Need to drop our head ref lock and re-acquire the |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2616 | * delayed ref lock and then re-check to make sure |
| 2617 | * nobody got added. |
| 2618 | */ |
| 2619 | spin_unlock(&locked_ref->lock); |
| 2620 | spin_lock(&delayed_refs->lock); |
| 2621 | spin_lock(&locked_ref->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2622 | if (!list_empty(&locked_ref->ref_list) || |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2623 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2624 | spin_unlock(&locked_ref->lock); |
| 2625 | spin_unlock(&delayed_refs->lock); |
| 2626 | continue; |
| 2627 | } |
| 2628 | ref->in_tree = 0; |
| 2629 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2630 | rb_erase(&locked_ref->href_node, |
| 2631 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2632 | spin_unlock(&delayed_refs->lock); |
| 2633 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2634 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2635 | ref->in_tree = 0; |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2636 | list_del(&ref->list); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2637 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2638 | atomic_dec(&delayed_refs->num_entries); |
| 2639 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2640 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2641 | /* |
| 2642 | * when we play the delayed ref, also correct the |
| 2643 | * ref_mod on head |
| 2644 | */ |
| 2645 | switch (ref->action) { |
| 2646 | case BTRFS_ADD_DELAYED_REF: |
| 2647 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2648 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2649 | break; |
| 2650 | case BTRFS_DROP_DELAYED_REF: |
| 2651 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2652 | break; |
| 2653 | default: |
| 2654 | WARN_ON(1); |
| 2655 | } |
| 2656 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2657 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2658 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2659 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2660 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2661 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2662 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2663 | if (ret) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2664 | locked_ref->processing = 0; |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2665 | btrfs_delayed_ref_unlock(locked_ref); |
| 2666 | btrfs_put_delayed_ref(ref); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2667 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2668 | return ret; |
| 2669 | } |
| 2670 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2671 | /* |
| 2672 | * If this node is a head, that means all the refs in this head |
| 2673 | * have been dealt with, and we will pick the next head to deal |
| 2674 | * with, so we must unlock the head and drop it from the cluster |
| 2675 | * list before we release it. |
| 2676 | */ |
| 2677 | if (btrfs_delayed_ref_is_head(ref)) { |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2678 | if (locked_ref->is_data && |
| 2679 | locked_ref->total_ref_mod < 0) { |
| 2680 | spin_lock(&delayed_refs->lock); |
| 2681 | delayed_refs->pending_csums -= ref->num_bytes; |
| 2682 | spin_unlock(&delayed_refs->lock); |
| 2683 | } |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2684 | btrfs_delayed_ref_unlock(locked_ref); |
| 2685 | locked_ref = NULL; |
| 2686 | } |
| 2687 | btrfs_put_delayed_ref(ref); |
| 2688 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2689 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2690 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2691 | |
| 2692 | /* |
| 2693 | * We don't want to include ref heads since we can have empty ref heads |
| 2694 | * and those will drastically skew our runtime down since we just do |
| 2695 | * accounting, no actual extent tree updates. |
| 2696 | */ |
| 2697 | if (actual_count > 0) { |
| 2698 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2699 | u64 avg; |
| 2700 | |
| 2701 | /* |
| 2702 | * We weigh the current average higher than our current runtime |
| 2703 | * to avoid large swings in the average. |
| 2704 | */ |
| 2705 | spin_lock(&delayed_refs->lock); |
| 2706 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2707 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2708 | spin_unlock(&delayed_refs->lock); |
| 2709 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2710 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2711 | } |
| 2712 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2713 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2714 | /* |
| 2715 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2716 | * correlates in most cases to the order added. To expose dependencies on this |
| 2717 | * order, we start to process the tree in the middle instead of the beginning |
| 2718 | */ |
| 2719 | static u64 find_middle(struct rb_root *root) |
| 2720 | { |
| 2721 | struct rb_node *n = root->rb_node; |
| 2722 | struct btrfs_delayed_ref_node *entry; |
| 2723 | int alt = 1; |
| 2724 | u64 middle; |
| 2725 | u64 first = 0, last = 0; |
| 2726 | |
| 2727 | n = rb_first(root); |
| 2728 | if (n) { |
| 2729 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2730 | first = entry->bytenr; |
| 2731 | } |
| 2732 | n = rb_last(root); |
| 2733 | if (n) { |
| 2734 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2735 | last = entry->bytenr; |
| 2736 | } |
| 2737 | n = root->rb_node; |
| 2738 | |
| 2739 | while (n) { |
| 2740 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2741 | WARN_ON(!entry->in_tree); |
| 2742 | |
| 2743 | middle = entry->bytenr; |
| 2744 | |
| 2745 | if (alt) |
| 2746 | n = n->rb_left; |
| 2747 | else |
| 2748 | n = n->rb_right; |
| 2749 | |
| 2750 | alt = 1 - alt; |
| 2751 | } |
| 2752 | return middle; |
| 2753 | } |
| 2754 | #endif |
| 2755 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2756 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2757 | { |
| 2758 | u64 num_bytes; |
| 2759 | |
| 2760 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2761 | sizeof(struct btrfs_extent_inline_ref)); |
| 2762 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2763 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2764 | |
| 2765 | /* |
| 2766 | * We don't ever fill up leaves all the way so multiply by 2 just to be |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2767 | * closer to what we're really going to want to use. |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2768 | */ |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2769 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2770 | } |
| 2771 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2772 | /* |
| 2773 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2774 | * would require to store the csums for that many bytes. |
| 2775 | */ |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 2776 | u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes) |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2777 | { |
| 2778 | u64 csum_size; |
| 2779 | u64 num_csums_per_leaf; |
| 2780 | u64 num_csums; |
| 2781 | |
Jeff Mahoney | 14a1e06 | 2016-06-15 10:25:38 -0400 | [diff] [blame] | 2782 | csum_size = BTRFS_MAX_ITEM_SIZE(root); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2783 | num_csums_per_leaf = div64_u64(csum_size, |
| 2784 | (u64)btrfs_super_csum_size(root->fs_info->super_copy)); |
| 2785 | num_csums = div64_u64(csum_bytes, root->sectorsize); |
| 2786 | num_csums += num_csums_per_leaf - 1; |
| 2787 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2788 | return num_csums; |
| 2789 | } |
| 2790 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2791 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2792 | struct btrfs_root *root) |
| 2793 | { |
| 2794 | struct btrfs_block_rsv *global_rsv; |
| 2795 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2796 | u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2797 | u64 num_dirty_bgs = trans->transaction->num_dirty_bgs; |
| 2798 | u64 num_bytes, num_dirty_bgs_bytes; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2799 | int ret = 0; |
| 2800 | |
| 2801 | num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 2802 | num_heads = heads_to_leaves(root, num_heads); |
| 2803 | if (num_heads > 1) |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 2804 | num_bytes += (num_heads - 1) * root->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2805 | num_bytes <<= 1; |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 2806 | num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2807 | num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root, |
| 2808 | num_dirty_bgs); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2809 | global_rsv = &root->fs_info->global_block_rsv; |
| 2810 | |
| 2811 | /* |
| 2812 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2813 | * wiggle room since running delayed refs can create more delayed refs. |
| 2814 | */ |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2815 | if (global_rsv->space_info->full) { |
| 2816 | num_dirty_bgs_bytes <<= 1; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2817 | num_bytes <<= 1; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2818 | } |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2819 | |
| 2820 | spin_lock(&global_rsv->lock); |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2821 | if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2822 | ret = 1; |
| 2823 | spin_unlock(&global_rsv->lock); |
| 2824 | return ret; |
| 2825 | } |
| 2826 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2827 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2828 | struct btrfs_root *root) |
| 2829 | { |
| 2830 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2831 | u64 num_entries = |
| 2832 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2833 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2834 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2835 | |
| 2836 | smp_mb(); |
| 2837 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2838 | val = num_entries * avg_runtime; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2839 | if (num_entries * avg_runtime >= NSEC_PER_SEC) |
| 2840 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2841 | if (val >= NSEC_PER_SEC / 2) |
| 2842 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2843 | |
| 2844 | return btrfs_check_space_for_delayed_refs(trans, root); |
| 2845 | } |
| 2846 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2847 | struct async_delayed_refs { |
| 2848 | struct btrfs_root *root; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2849 | u64 transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2850 | int count; |
| 2851 | int error; |
| 2852 | int sync; |
| 2853 | struct completion wait; |
| 2854 | struct btrfs_work work; |
| 2855 | }; |
| 2856 | |
| 2857 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2858 | { |
| 2859 | struct async_delayed_refs *async; |
| 2860 | struct btrfs_trans_handle *trans; |
| 2861 | int ret; |
| 2862 | |
| 2863 | async = container_of(work, struct async_delayed_refs, work); |
| 2864 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2865 | /* if the commit is already started, we don't need to wait here */ |
| 2866 | if (btrfs_transaction_blocked(async->root->fs_info)) |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2867 | goto done; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2868 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2869 | trans = btrfs_join_transaction(async->root); |
| 2870 | if (IS_ERR(trans)) { |
| 2871 | async->error = PTR_ERR(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2872 | goto done; |
| 2873 | } |
| 2874 | |
| 2875 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2876 | * trans->sync means that when we call end_transaction, we won't |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2877 | * wait on delayed refs |
| 2878 | */ |
| 2879 | trans->sync = true; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2880 | |
| 2881 | /* Don't bother flushing if we got into a different transaction */ |
| 2882 | if (trans->transid > async->transid) |
| 2883 | goto end; |
| 2884 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2885 | ret = btrfs_run_delayed_refs(trans, async->root, async->count); |
| 2886 | if (ret) |
| 2887 | async->error = ret; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2888 | end: |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2889 | ret = btrfs_end_transaction(trans, async->root); |
| 2890 | if (ret && !async->error) |
| 2891 | async->error = ret; |
| 2892 | done: |
| 2893 | if (async->sync) |
| 2894 | complete(&async->wait); |
| 2895 | else |
| 2896 | kfree(async); |
| 2897 | } |
| 2898 | |
| 2899 | int btrfs_async_run_delayed_refs(struct btrfs_root *root, |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2900 | unsigned long count, u64 transid, int wait) |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2901 | { |
| 2902 | struct async_delayed_refs *async; |
| 2903 | int ret; |
| 2904 | |
| 2905 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2906 | if (!async) |
| 2907 | return -ENOMEM; |
| 2908 | |
| 2909 | async->root = root->fs_info->tree_root; |
| 2910 | async->count = count; |
| 2911 | async->error = 0; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2912 | async->transid = transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2913 | if (wait) |
| 2914 | async->sync = 1; |
| 2915 | else |
| 2916 | async->sync = 0; |
| 2917 | init_completion(&async->wait); |
| 2918 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2919 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2920 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2921 | |
| 2922 | btrfs_queue_work(root->fs_info->extent_workers, &async->work); |
| 2923 | |
| 2924 | if (wait) { |
| 2925 | wait_for_completion(&async->wait); |
| 2926 | ret = async->error; |
| 2927 | kfree(async); |
| 2928 | return ret; |
| 2929 | } |
| 2930 | return 0; |
| 2931 | } |
| 2932 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2933 | /* |
| 2934 | * this starts processing the delayed reference count updates and |
| 2935 | * extent insertions we have queued up so far. count can be |
| 2936 | * 0, which means to process everything in the tree at the start |
| 2937 | * of the run (but not newly added entries), or it can be some target |
| 2938 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2939 | * |
| 2940 | * Returns 0 on success or if called with an aborted transaction |
| 2941 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2942 | */ |
| 2943 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2944 | struct btrfs_root *root, unsigned long count) |
| 2945 | { |
| 2946 | struct rb_node *node; |
| 2947 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2948 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2949 | int ret; |
| 2950 | int run_all = count == (unsigned long)-1; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2951 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2952 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2953 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2954 | if (trans->aborted) |
| 2955 | return 0; |
| 2956 | |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 2957 | if (root->fs_info->creating_free_space_tree) |
| 2958 | return 0; |
| 2959 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2960 | if (root == root->fs_info->extent_root) |
| 2961 | root = root->fs_info->tree_root; |
| 2962 | |
| 2963 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2964 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2965 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2966 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2967 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2968 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2969 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2970 | #endif |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2971 | trans->can_flush_pending_bgs = false; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2972 | ret = __btrfs_run_delayed_refs(trans, root, count); |
| 2973 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2974 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2975 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2976 | } |
| 2977 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2978 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2979 | if (!list_empty(&trans->new_bgs)) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2980 | btrfs_create_pending_block_groups(trans, root); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2981 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2982 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2983 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2984 | if (!node) { |
| 2985 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2986 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2987 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2988 | count = (unsigned long)-1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2989 | |
| 2990 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2991 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2992 | href_node); |
| 2993 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2994 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2995 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2996 | ref = &head->node; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2997 | atomic_inc(&ref->refs); |
| 2998 | |
| 2999 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3000 | /* |
| 3001 | * Mutex was contended, block until it's |
| 3002 | * released and try again |
| 3003 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3004 | mutex_lock(&head->mutex); |
| 3005 | mutex_unlock(&head->mutex); |
| 3006 | |
| 3007 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 3008 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3009 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3010 | } else { |
| 3011 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3012 | } |
| 3013 | node = rb_next(node); |
| 3014 | } |
| 3015 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3016 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3017 | goto again; |
| 3018 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3019 | out: |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 3020 | assert_qgroups_uptodate(trans); |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 3021 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 3022 | return 0; |
| 3023 | } |
| 3024 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3025 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 3026 | struct btrfs_root *root, |
| 3027 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3028 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3029 | { |
| 3030 | struct btrfs_delayed_extent_op *extent_op; |
| 3031 | int ret; |
| 3032 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3033 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3034 | if (!extent_op) |
| 3035 | return -ENOMEM; |
| 3036 | |
| 3037 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 3038 | extent_op->update_flags = true; |
| 3039 | extent_op->update_key = false; |
| 3040 | extent_op->is_data = is_data ? true : false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3041 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3042 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3043 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 3044 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3045 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3046 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3047 | return ret; |
| 3048 | } |
| 3049 | |
| 3050 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 3051 | struct btrfs_root *root, |
| 3052 | struct btrfs_path *path, |
| 3053 | u64 objectid, u64 offset, u64 bytenr) |
| 3054 | { |
| 3055 | struct btrfs_delayed_ref_head *head; |
| 3056 | struct btrfs_delayed_ref_node *ref; |
| 3057 | struct btrfs_delayed_data_ref *data_ref; |
| 3058 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3059 | int ret = 0; |
| 3060 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3061 | delayed_refs = &trans->transaction->delayed_refs; |
| 3062 | spin_lock(&delayed_refs->lock); |
| 3063 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3064 | if (!head) { |
| 3065 | spin_unlock(&delayed_refs->lock); |
| 3066 | return 0; |
| 3067 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3068 | |
| 3069 | if (!mutex_trylock(&head->mutex)) { |
| 3070 | atomic_inc(&head->node.refs); |
| 3071 | spin_unlock(&delayed_refs->lock); |
| 3072 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3073 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3074 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3075 | /* |
| 3076 | * Mutex was contended, block until it's released and let |
| 3077 | * caller try again |
| 3078 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3079 | mutex_lock(&head->mutex); |
| 3080 | mutex_unlock(&head->mutex); |
| 3081 | btrfs_put_delayed_ref(&head->node); |
| 3082 | return -EAGAIN; |
| 3083 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3084 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3085 | |
| 3086 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 3087 | list_for_each_entry(ref, &head->ref_list, list) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3088 | /* If it's a shared ref we know a cross reference exists */ |
| 3089 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 3090 | ret = 1; |
| 3091 | break; |
| 3092 | } |
| 3093 | |
| 3094 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 3095 | |
| 3096 | /* |
| 3097 | * If our ref doesn't match the one we're currently looking at |
| 3098 | * then we have a cross reference. |
| 3099 | */ |
| 3100 | if (data_ref->root != root->root_key.objectid || |
| 3101 | data_ref->objectid != objectid || |
| 3102 | data_ref->offset != offset) { |
| 3103 | ret = 1; |
| 3104 | break; |
| 3105 | } |
| 3106 | } |
| 3107 | spin_unlock(&head->lock); |
| 3108 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3109 | return ret; |
| 3110 | } |
| 3111 | |
| 3112 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 3113 | struct btrfs_root *root, |
| 3114 | struct btrfs_path *path, |
| 3115 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3116 | { |
| 3117 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3118 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3119 | struct btrfs_extent_data_ref *ref; |
| 3120 | struct btrfs_extent_inline_ref *iref; |
| 3121 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3122 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3123 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3124 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3125 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3126 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3127 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3128 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3129 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3130 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 3131 | if (ret < 0) |
| 3132 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3133 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 3134 | |
| 3135 | ret = -ENOENT; |
| 3136 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3137 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3138 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3139 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3140 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3141 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3142 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3143 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3144 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3145 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3146 | ret = 1; |
| 3147 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 3148 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 3149 | if (item_size < sizeof(*ei)) { |
| 3150 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 3151 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3152 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3153 | #endif |
| 3154 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 3155 | |
| 3156 | if (item_size != sizeof(*ei) + |
| 3157 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 3158 | goto out; |
| 3159 | |
| 3160 | if (btrfs_extent_generation(leaf, ei) <= |
| 3161 | btrfs_root_last_snapshot(&root->root_item)) |
| 3162 | goto out; |
| 3163 | |
| 3164 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 3165 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 3166 | BTRFS_EXTENT_DATA_REF_KEY) |
| 3167 | goto out; |
| 3168 | |
| 3169 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3170 | if (btrfs_extent_refs(leaf, ei) != |
| 3171 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3172 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3173 | root->root_key.objectid || |
| 3174 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3175 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3176 | goto out; |
| 3177 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3178 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3179 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3180 | return ret; |
| 3181 | } |
| 3182 | |
| 3183 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 3184 | struct btrfs_root *root, |
| 3185 | u64 objectid, u64 offset, u64 bytenr) |
| 3186 | { |
| 3187 | struct btrfs_path *path; |
| 3188 | int ret; |
| 3189 | int ret2; |
| 3190 | |
| 3191 | path = btrfs_alloc_path(); |
| 3192 | if (!path) |
| 3193 | return -ENOENT; |
| 3194 | |
| 3195 | do { |
| 3196 | ret = check_committed_ref(trans, root, path, objectid, |
| 3197 | offset, bytenr); |
| 3198 | if (ret && ret != -ENOENT) |
| 3199 | goto out; |
| 3200 | |
| 3201 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3202 | offset, bytenr); |
| 3203 | } while (ret2 == -EAGAIN); |
| 3204 | |
| 3205 | if (ret2 && ret2 != -ENOENT) { |
| 3206 | ret = ret2; |
| 3207 | goto out; |
| 3208 | } |
| 3209 | |
| 3210 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3211 | ret = 0; |
| 3212 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3213 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3214 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3215 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3216 | return ret; |
| 3217 | } |
| 3218 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3219 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3220 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3221 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3222 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3223 | { |
| 3224 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3225 | u64 num_bytes; |
| 3226 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3227 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3228 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3229 | struct btrfs_key key; |
| 3230 | struct btrfs_file_extent_item *fi; |
| 3231 | int i; |
| 3232 | int level; |
| 3233 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3234 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3235 | u64, u64, u64, u64, u64, u64); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3236 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3237 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 3238 | if (btrfs_is_testing(root->fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3239 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3240 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3241 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3242 | nritems = btrfs_header_nritems(buf); |
| 3243 | level = btrfs_header_level(buf); |
| 3244 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3245 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3246 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3247 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3248 | if (inc) |
| 3249 | process_func = btrfs_inc_extent_ref; |
| 3250 | else |
| 3251 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3252 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3253 | if (full_backref) |
| 3254 | parent = buf->start; |
| 3255 | else |
| 3256 | parent = 0; |
| 3257 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3258 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3259 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3260 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3261 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3262 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3263 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3264 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3265 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3266 | BTRFS_FILE_EXTENT_INLINE) |
| 3267 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3268 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3269 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3270 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3271 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3272 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3273 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3274 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3275 | parent, ref_root, key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3276 | key.offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3277 | if (ret) |
| 3278 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3279 | } else { |
| 3280 | bytenr = btrfs_node_blockptr(buf, i); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 3281 | num_bytes = root->nodesize; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3282 | ret = process_func(trans, root, bytenr, num_bytes, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3283 | parent, ref_root, level - 1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3284 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3285 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3286 | } |
| 3287 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3288 | return 0; |
| 3289 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3290 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3291 | } |
| 3292 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3293 | 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] | 3294 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3295 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3296 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3297 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3298 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3299 | 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] | 3300 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3301 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3302 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3303 | } |
| 3304 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3305 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3306 | struct btrfs_root *root, |
| 3307 | struct btrfs_path *path, |
| 3308 | struct btrfs_block_group_cache *cache) |
| 3309 | { |
| 3310 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3311 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3312 | unsigned long bi; |
| 3313 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3314 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3315 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3316 | if (ret) { |
| 3317 | if (ret > 0) |
| 3318 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3319 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3320 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3321 | |
| 3322 | leaf = path->nodes[0]; |
| 3323 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3324 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3325 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3326 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3327 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3328 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3329 | |
| 3330 | } |
| 3331 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3332 | static struct btrfs_block_group_cache * |
| 3333 | next_block_group(struct btrfs_root *root, |
| 3334 | struct btrfs_block_group_cache *cache) |
| 3335 | { |
| 3336 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3337 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3338 | spin_lock(&root->fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3339 | |
| 3340 | /* If our block group was removed, we need a full search. */ |
| 3341 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3342 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3343 | |
| 3344 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3345 | btrfs_put_block_group(cache); |
| 3346 | cache = btrfs_lookup_first_block_group(root->fs_info, |
| 3347 | next_bytenr); |
| 3348 | return cache; |
| 3349 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3350 | node = rb_next(&cache->cache_node); |
| 3351 | btrfs_put_block_group(cache); |
| 3352 | if (node) { |
| 3353 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3354 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3355 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3356 | } else |
| 3357 | cache = NULL; |
| 3358 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3359 | return cache; |
| 3360 | } |
| 3361 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3362 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3363 | struct btrfs_trans_handle *trans, |
| 3364 | struct btrfs_path *path) |
| 3365 | { |
| 3366 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3367 | struct inode *inode = NULL; |
| 3368 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3369 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3370 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3371 | int retries = 0; |
| 3372 | int ret = 0; |
| 3373 | |
| 3374 | /* |
| 3375 | * If this block group is smaller than 100 megs don't bother caching the |
| 3376 | * block group. |
| 3377 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3378 | if (block_group->key.offset < (100 * SZ_1M)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3379 | spin_lock(&block_group->lock); |
| 3380 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3381 | spin_unlock(&block_group->lock); |
| 3382 | return 0; |
| 3383 | } |
| 3384 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3385 | if (trans->aborted) |
| 3386 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3387 | again: |
| 3388 | inode = lookup_free_space_inode(root, block_group, path); |
| 3389 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3390 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3391 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3392 | goto out; |
| 3393 | } |
| 3394 | |
| 3395 | if (IS_ERR(inode)) { |
| 3396 | BUG_ON(retries); |
| 3397 | retries++; |
| 3398 | |
| 3399 | if (block_group->ro) |
| 3400 | goto out_free; |
| 3401 | |
| 3402 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3403 | if (ret) |
| 3404 | goto out_free; |
| 3405 | goto again; |
| 3406 | } |
| 3407 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3408 | /* We've already setup this transaction, go ahead and exit */ |
| 3409 | if (block_group->cache_generation == trans->transid && |
| 3410 | i_size_read(inode)) { |
| 3411 | dcs = BTRFS_DC_SETUP; |
| 3412 | goto out_put; |
| 3413 | } |
| 3414 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3415 | /* |
| 3416 | * We want to set the generation to 0, that way if anything goes wrong |
| 3417 | * from here on out we know not to trust this cache when we load up next |
| 3418 | * time. |
| 3419 | */ |
| 3420 | BTRFS_I(inode)->generation = 0; |
| 3421 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3422 | if (ret) { |
| 3423 | /* |
| 3424 | * So theoretically we could recover from this, simply set the |
| 3425 | * super cache generation to 0 so we know to invalidate the |
| 3426 | * cache, but then we'd have to keep track of the block groups |
| 3427 | * that fail this way so we know we _have_ to reset this cache |
| 3428 | * before the next commit or risk reading stale cache. So to |
| 3429 | * limit our exposure to horrible edge cases lets just abort the |
| 3430 | * transaction, this only happens in really bad situations |
| 3431 | * anyway. |
| 3432 | */ |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3433 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3434 | goto out_put; |
| 3435 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3436 | WARN_ON(ret); |
| 3437 | |
| 3438 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3439 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3440 | &root->fs_info->global_block_rsv); |
| 3441 | if (ret) |
| 3442 | goto out_put; |
| 3443 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3444 | ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3445 | if (ret) |
| 3446 | goto out_put; |
| 3447 | } |
| 3448 | |
| 3449 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3450 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 3451 | !btrfs_test_opt(root->fs_info, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3452 | /* |
| 3453 | * don't bother trying to write stuff out _if_ |
| 3454 | * a) we're not cached, |
| 3455 | * b) we're with nospace_cache mount option. |
| 3456 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3457 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3458 | spin_unlock(&block_group->lock); |
| 3459 | goto out_put; |
| 3460 | } |
| 3461 | spin_unlock(&block_group->lock); |
| 3462 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3463 | /* |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3464 | * We hit an ENOSPC when setting up the cache in this transaction, just |
| 3465 | * skip doing the setup, we've already cleared the cache so we're safe. |
| 3466 | */ |
| 3467 | if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) { |
| 3468 | ret = -ENOSPC; |
| 3469 | goto out_put; |
| 3470 | } |
| 3471 | |
| 3472 | /* |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3473 | * Try to preallocate enough space based on how big the block group is. |
| 3474 | * Keep in mind this has to include any pinned space which could end up |
| 3475 | * taking up quite a bit since it's not folded into the other space |
| 3476 | * cache. |
| 3477 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3478 | num_pages = div_u64(block_group->key.offset, SZ_256M); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3479 | if (!num_pages) |
| 3480 | num_pages = 1; |
| 3481 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3482 | num_pages *= 16; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3483 | num_pages *= PAGE_SIZE; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3484 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 3485 | ret = btrfs_check_data_free_space(inode, 0, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3486 | if (ret) |
| 3487 | goto out_put; |
| 3488 | |
| 3489 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3490 | num_pages, num_pages, |
| 3491 | &alloc_hint); |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3492 | /* |
| 3493 | * Our cache requires contiguous chunks so that we don't modify a bunch |
| 3494 | * of metadata or split extents when writing the cache out, which means |
| 3495 | * we can enospc if we are heavily fragmented in addition to just normal |
| 3496 | * out of space conditions. So if we hit this just skip setting up any |
| 3497 | * other block groups for this transaction, maybe we'll unpin enough |
| 3498 | * space the next time around. |
| 3499 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3500 | if (!ret) |
| 3501 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3502 | else if (ret == -ENOSPC) |
| 3503 | set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags); |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 3504 | btrfs_free_reserved_data_space(inode, 0, num_pages); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3505 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3506 | out_put: |
| 3507 | iput(inode); |
| 3508 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3509 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3510 | out: |
| 3511 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3512 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3513 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3514 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3515 | spin_unlock(&block_group->lock); |
| 3516 | |
| 3517 | return ret; |
| 3518 | } |
| 3519 | |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3520 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans, |
| 3521 | struct btrfs_root *root) |
| 3522 | { |
| 3523 | struct btrfs_block_group_cache *cache, *tmp; |
| 3524 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3525 | struct btrfs_path *path; |
| 3526 | |
| 3527 | if (list_empty(&cur_trans->dirty_bgs) || |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 3528 | !btrfs_test_opt(root->fs_info, SPACE_CACHE)) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3529 | return 0; |
| 3530 | |
| 3531 | path = btrfs_alloc_path(); |
| 3532 | if (!path) |
| 3533 | return -ENOMEM; |
| 3534 | |
| 3535 | /* Could add new block groups, use _safe just in case */ |
| 3536 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3537 | dirty_list) { |
| 3538 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3539 | cache_save_setup(cache, trans, path); |
| 3540 | } |
| 3541 | |
| 3542 | btrfs_free_path(path); |
| 3543 | return 0; |
| 3544 | } |
| 3545 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3546 | /* |
| 3547 | * transaction commit does final block group cache writeback during a |
| 3548 | * critical section where nothing is allowed to change the FS. This is |
| 3549 | * required in order for the cache to actually match the block group, |
| 3550 | * but can introduce a lot of latency into the commit. |
| 3551 | * |
| 3552 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3553 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3554 | * block group changes again during the commit, but it greatly reduces |
| 3555 | * the commit latency by getting rid of the easy block groups while |
| 3556 | * we're still allowing others to join the commit. |
| 3557 | */ |
| 3558 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3559 | struct btrfs_root *root) |
| 3560 | { |
| 3561 | struct btrfs_block_group_cache *cache; |
| 3562 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3563 | int ret = 0; |
| 3564 | int should_put; |
| 3565 | struct btrfs_path *path = NULL; |
| 3566 | LIST_HEAD(dirty); |
| 3567 | struct list_head *io = &cur_trans->io_bgs; |
| 3568 | int num_started = 0; |
| 3569 | int loops = 0; |
| 3570 | |
| 3571 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3572 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3573 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3574 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3575 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3576 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3577 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3578 | |
| 3579 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3580 | /* |
| 3581 | * make sure all the block groups on our dirty list actually |
| 3582 | * exist |
| 3583 | */ |
| 3584 | btrfs_create_pending_block_groups(trans, root); |
| 3585 | |
| 3586 | if (!path) { |
| 3587 | path = btrfs_alloc_path(); |
| 3588 | if (!path) |
| 3589 | return -ENOMEM; |
| 3590 | } |
| 3591 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3592 | /* |
| 3593 | * cache_write_mutex is here only to save us from balance or automatic |
| 3594 | * removal of empty block groups deleting this block group while we are |
| 3595 | * writing out the cache |
| 3596 | */ |
| 3597 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3598 | while (!list_empty(&dirty)) { |
| 3599 | cache = list_first_entry(&dirty, |
| 3600 | struct btrfs_block_group_cache, |
| 3601 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3602 | /* |
| 3603 | * this can happen if something re-dirties a block |
| 3604 | * group that is already under IO. Just wait for it to |
| 3605 | * finish and then do it all again |
| 3606 | */ |
| 3607 | if (!list_empty(&cache->io_list)) { |
| 3608 | list_del_init(&cache->io_list); |
| 3609 | btrfs_wait_cache_io(root, trans, cache, |
| 3610 | &cache->io_ctl, path, |
| 3611 | cache->key.objectid); |
| 3612 | btrfs_put_block_group(cache); |
| 3613 | } |
| 3614 | |
| 3615 | |
| 3616 | /* |
| 3617 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3618 | * if it should update the cache_state. Don't delete |
| 3619 | * until after we wait. |
| 3620 | * |
| 3621 | * Since we're not running in the commit critical section |
| 3622 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3623 | */ |
| 3624 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3625 | list_del_init(&cache->dirty_list); |
| 3626 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3627 | |
| 3628 | should_put = 1; |
| 3629 | |
| 3630 | cache_save_setup(cache, trans, path); |
| 3631 | |
| 3632 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3633 | cache->io_ctl.inode = NULL; |
| 3634 | ret = btrfs_write_out_cache(root, trans, cache, path); |
| 3635 | if (ret == 0 && cache->io_ctl.inode) { |
| 3636 | num_started++; |
| 3637 | should_put = 0; |
| 3638 | |
| 3639 | /* |
| 3640 | * the cache_write_mutex is protecting |
| 3641 | * the io_list |
| 3642 | */ |
| 3643 | list_add_tail(&cache->io_list, io); |
| 3644 | } else { |
| 3645 | /* |
| 3646 | * if we failed to write the cache, the |
| 3647 | * generation will be bad and life goes on |
| 3648 | */ |
| 3649 | ret = 0; |
| 3650 | } |
| 3651 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3652 | if (!ret) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3653 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3654 | /* |
| 3655 | * Our block group might still be attached to the list |
| 3656 | * of new block groups in the transaction handle of some |
| 3657 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3658 | * means its block group item isn't yet in the extent |
| 3659 | * tree. If this happens ignore the error, as we will |
| 3660 | * try again later in the critical section of the |
| 3661 | * transaction commit. |
| 3662 | */ |
| 3663 | if (ret == -ENOENT) { |
| 3664 | ret = 0; |
| 3665 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3666 | if (list_empty(&cache->dirty_list)) { |
| 3667 | list_add_tail(&cache->dirty_list, |
| 3668 | &cur_trans->dirty_bgs); |
| 3669 | btrfs_get_block_group(cache); |
| 3670 | } |
| 3671 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3672 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3673 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3674 | } |
| 3675 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3676 | |
| 3677 | /* if its not on the io list, we need to put the block group */ |
| 3678 | if (should_put) |
| 3679 | btrfs_put_block_group(cache); |
| 3680 | |
| 3681 | if (ret) |
| 3682 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3683 | |
| 3684 | /* |
| 3685 | * Avoid blocking other tasks for too long. It might even save |
| 3686 | * us from writing caches for block groups that are going to be |
| 3687 | * removed. |
| 3688 | */ |
| 3689 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3690 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3691 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3692 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3693 | |
| 3694 | /* |
| 3695 | * go through delayed refs for all the stuff we've just kicked off |
| 3696 | * and then loop back (just once) |
| 3697 | */ |
| 3698 | ret = btrfs_run_delayed_refs(trans, root, 0); |
| 3699 | if (!ret && loops == 0) { |
| 3700 | loops++; |
| 3701 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3702 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3703 | /* |
| 3704 | * dirty_bgs_lock protects us from concurrent block group |
| 3705 | * deletes too (not just cache_write_mutex). |
| 3706 | */ |
| 3707 | if (!list_empty(&dirty)) { |
| 3708 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3709 | goto again; |
| 3710 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3711 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3712 | } |
| 3713 | |
| 3714 | btrfs_free_path(path); |
| 3715 | return ret; |
| 3716 | } |
| 3717 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3718 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3719 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3720 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3721 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3722 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3723 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3724 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3725 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3726 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3727 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3728 | |
| 3729 | path = btrfs_alloc_path(); |
| 3730 | if (!path) |
| 3731 | return -ENOMEM; |
| 3732 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3733 | /* |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3734 | * Even though we are in the critical section of the transaction commit, |
| 3735 | * we can still have concurrent tasks adding elements to this |
| 3736 | * transaction's list of dirty block groups. These tasks correspond to |
| 3737 | * endio free space workers started when writeback finishes for a |
| 3738 | * space cache, which run inode.c:btrfs_finish_ordered_io(), and can |
| 3739 | * allocate new block groups as a result of COWing nodes of the root |
| 3740 | * tree when updating the free space inode. The writeback for the space |
| 3741 | * caches is triggered by an earlier call to |
| 3742 | * btrfs_start_dirty_block_groups() and iterations of the following |
| 3743 | * loop. |
| 3744 | * Also we want to do the cache_save_setup first and then run the |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3745 | * delayed refs to make sure we have the best chance at doing this all |
| 3746 | * in one shot. |
| 3747 | */ |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3748 | spin_lock(&cur_trans->dirty_bgs_lock); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3749 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3750 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3751 | struct btrfs_block_group_cache, |
| 3752 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3753 | |
| 3754 | /* |
| 3755 | * this can happen if cache_save_setup re-dirties a block |
| 3756 | * group that is already under IO. Just wait for it to |
| 3757 | * finish and then do it all again |
| 3758 | */ |
| 3759 | if (!list_empty(&cache->io_list)) { |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3760 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3761 | list_del_init(&cache->io_list); |
| 3762 | btrfs_wait_cache_io(root, trans, cache, |
| 3763 | &cache->io_ctl, path, |
| 3764 | cache->key.objectid); |
| 3765 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3766 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3767 | } |
| 3768 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3769 | /* |
| 3770 | * don't remove from the dirty list until after we've waited |
| 3771 | * on any pending IO |
| 3772 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3773 | list_del_init(&cache->dirty_list); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3774 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3775 | should_put = 1; |
| 3776 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3777 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3778 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3779 | if (!ret) |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3780 | ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1); |
| 3781 | |
| 3782 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3783 | cache->io_ctl.inode = NULL; |
| 3784 | ret = btrfs_write_out_cache(root, trans, cache, path); |
| 3785 | if (ret == 0 && cache->io_ctl.inode) { |
| 3786 | num_started++; |
| 3787 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3788 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3789 | } else { |
| 3790 | /* |
| 3791 | * if we failed to write the cache, the |
| 3792 | * generation will be bad and life goes on |
| 3793 | */ |
| 3794 | ret = 0; |
| 3795 | } |
| 3796 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3797 | if (!ret) { |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3798 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3799 | /* |
| 3800 | * One of the free space endio workers might have |
| 3801 | * created a new block group while updating a free space |
| 3802 | * cache's inode (at inode.c:btrfs_finish_ordered_io()) |
| 3803 | * and hasn't released its transaction handle yet, in |
| 3804 | * which case the new block group is still attached to |
| 3805 | * its transaction handle and its creation has not |
| 3806 | * finished yet (no block group item in the extent tree |
| 3807 | * yet, etc). If this is the case, wait for all free |
| 3808 | * space endio workers to finish and retry. This is a |
| 3809 | * a very rare case so no need for a more efficient and |
| 3810 | * complex approach. |
| 3811 | */ |
| 3812 | if (ret == -ENOENT) { |
| 3813 | wait_event(cur_trans->writer_wait, |
| 3814 | atomic_read(&cur_trans->num_writers) == 1); |
| 3815 | ret = write_one_cache_group(trans, root, path, |
| 3816 | cache); |
| 3817 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3818 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3819 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3820 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3821 | |
| 3822 | /* if its not on the io list, we need to put the block group */ |
| 3823 | if (should_put) |
| 3824 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3825 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3826 | } |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3827 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3828 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3829 | while (!list_empty(io)) { |
| 3830 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3831 | io_list); |
| 3832 | list_del_init(&cache->io_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3833 | btrfs_wait_cache_io(root, trans, cache, |
| 3834 | &cache->io_ctl, path, cache->key.objectid); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3835 | btrfs_put_block_group(cache); |
| 3836 | } |
| 3837 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3838 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3839 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3840 | } |
| 3841 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3842 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3843 | { |
| 3844 | struct btrfs_block_group_cache *block_group; |
| 3845 | int readonly = 0; |
| 3846 | |
| 3847 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3848 | if (!block_group || block_group->ro) |
| 3849 | readonly = 1; |
| 3850 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3851 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3852 | return readonly; |
| 3853 | } |
| 3854 | |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3855 | bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3856 | { |
| 3857 | struct btrfs_block_group_cache *bg; |
| 3858 | bool ret = true; |
| 3859 | |
| 3860 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3861 | if (!bg) |
| 3862 | return false; |
| 3863 | |
| 3864 | spin_lock(&bg->lock); |
| 3865 | if (bg->ro) |
| 3866 | ret = false; |
| 3867 | else |
| 3868 | atomic_inc(&bg->nocow_writers); |
| 3869 | spin_unlock(&bg->lock); |
| 3870 | |
| 3871 | /* no put on block group, done by btrfs_dec_nocow_writers */ |
| 3872 | if (!ret) |
| 3873 | btrfs_put_block_group(bg); |
| 3874 | |
| 3875 | return ret; |
| 3876 | |
| 3877 | } |
| 3878 | |
| 3879 | void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3880 | { |
| 3881 | struct btrfs_block_group_cache *bg; |
| 3882 | |
| 3883 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3884 | ASSERT(bg); |
| 3885 | if (atomic_dec_and_test(&bg->nocow_writers)) |
| 3886 | wake_up_atomic_t(&bg->nocow_writers); |
| 3887 | /* |
| 3888 | * Once for our lookup and once for the lookup done by a previous call |
| 3889 | * to btrfs_inc_nocow_writers() |
| 3890 | */ |
| 3891 | btrfs_put_block_group(bg); |
| 3892 | btrfs_put_block_group(bg); |
| 3893 | } |
| 3894 | |
| 3895 | static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a) |
| 3896 | { |
| 3897 | schedule(); |
| 3898 | return 0; |
| 3899 | } |
| 3900 | |
| 3901 | void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg) |
| 3902 | { |
| 3903 | wait_on_atomic_t(&bg->nocow_writers, |
| 3904 | btrfs_wait_nocow_writers_atomic_t, |
| 3905 | TASK_UNINTERRUPTIBLE); |
| 3906 | } |
| 3907 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3908 | static const char *alloc_name(u64 flags) |
| 3909 | { |
| 3910 | switch (flags) { |
| 3911 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3912 | return "mixed"; |
| 3913 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3914 | return "metadata"; |
| 3915 | case BTRFS_BLOCK_GROUP_DATA: |
| 3916 | return "data"; |
| 3917 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3918 | return "system"; |
| 3919 | default: |
| 3920 | WARN_ON(1); |
| 3921 | return "invalid-combination"; |
| 3922 | }; |
| 3923 | } |
| 3924 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3925 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3926 | u64 total_bytes, u64 bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3927 | u64 bytes_readonly, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3928 | struct btrfs_space_info **space_info) |
| 3929 | { |
| 3930 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3931 | int i; |
| 3932 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3933 | int ret; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3934 | |
| 3935 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3936 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3937 | factor = 2; |
| 3938 | else |
| 3939 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3940 | |
| 3941 | found = __find_space_info(info, flags); |
| 3942 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3943 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3944 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3945 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3946 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3947 | found->disk_used += bytes_used * factor; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3948 | found->bytes_readonly += bytes_readonly; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3949 | if (total_bytes > 0) |
| 3950 | found->full = 0; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3951 | space_info_add_new_bytes(info, found, total_bytes - |
| 3952 | bytes_used - bytes_readonly); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3953 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3954 | *space_info = found; |
| 3955 | return 0; |
| 3956 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3957 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3958 | if (!found) |
| 3959 | return -ENOMEM; |
| 3960 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 3961 | ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3962 | if (ret) { |
| 3963 | kfree(found); |
| 3964 | return ret; |
| 3965 | } |
| 3966 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3967 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3968 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3969 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3970 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3971 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3972 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3973 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3974 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3975 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3976 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3977 | found->bytes_reserved = 0; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3978 | found->bytes_readonly = bytes_readonly; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3979 | found->bytes_may_use = 0; |
Filipe Manana | 6af3e3a | 2015-09-07 10:41:12 +0100 | [diff] [blame] | 3980 | found->full = 0; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 3981 | found->max_extent_size = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3982 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3983 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3984 | found->flush = 0; |
| 3985 | init_waitqueue_head(&found->wait); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 3986 | INIT_LIST_HEAD(&found->ro_bgs); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3987 | INIT_LIST_HEAD(&found->tickets); |
| 3988 | INIT_LIST_HEAD(&found->priority_tickets); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3989 | |
| 3990 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3991 | info->space_info_kobj, "%s", |
| 3992 | alloc_name(found->flags)); |
| 3993 | if (ret) { |
| 3994 | kfree(found); |
| 3995 | return ret; |
| 3996 | } |
| 3997 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3998 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3999 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4000 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4001 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 4002 | |
| 4003 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4004 | } |
| 4005 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4006 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 4007 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 4008 | u64 extra_flags = chunk_to_extended(flags) & |
| 4009 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4010 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4011 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4012 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4013 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 4014 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 4015 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 4016 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 4017 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4018 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4019 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4020 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4021 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4022 | * returns target flags in extended format or 0 if restripe for this |
| 4023 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 4024 | * |
| 4025 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4026 | */ |
| 4027 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 4028 | { |
| 4029 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 4030 | u64 target = 0; |
| 4031 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4032 | if (!bctl) |
| 4033 | return 0; |
| 4034 | |
| 4035 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 4036 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4037 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 4038 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 4039 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4040 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 4041 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 4042 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4043 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 4044 | } |
| 4045 | |
| 4046 | return target; |
| 4047 | } |
| 4048 | |
| 4049 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4050 | * @flags: available profiles in extended format (see ctree.h) |
| 4051 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4052 | * Returns reduced profile in chunk format. If profile changing is in |
| 4053 | * progress (either running or paused) picks the target profile (if it's |
| 4054 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4055 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4056 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4057 | { |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 4058 | u64 num_devices = root->fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4059 | u64 target; |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4060 | u64 raid_type; |
| 4061 | u64 allowed = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4062 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4063 | /* |
| 4064 | * see if restripe for this chunk_type is in progress, if so |
| 4065 | * try to reduce to the target profile |
| 4066 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4067 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4068 | target = get_restripe_target(root->fs_info, flags); |
| 4069 | if (target) { |
| 4070 | /* pick target profile only if it's already available */ |
| 4071 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4072 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4073 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4074 | } |
| 4075 | } |
| 4076 | spin_unlock(&root->fs_info->balance_lock); |
| 4077 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4078 | /* First, mask out the RAID levels which aren't possible */ |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4079 | for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) { |
| 4080 | if (num_devices >= btrfs_raid_array[raid_type].devs_min) |
| 4081 | allowed |= btrfs_raid_group[raid_type]; |
| 4082 | } |
| 4083 | allowed &= flags; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4084 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4085 | if (allowed & BTRFS_BLOCK_GROUP_RAID6) |
| 4086 | allowed = BTRFS_BLOCK_GROUP_RAID6; |
| 4087 | else if (allowed & BTRFS_BLOCK_GROUP_RAID5) |
| 4088 | allowed = BTRFS_BLOCK_GROUP_RAID5; |
| 4089 | else if (allowed & BTRFS_BLOCK_GROUP_RAID10) |
| 4090 | allowed = BTRFS_BLOCK_GROUP_RAID10; |
| 4091 | else if (allowed & BTRFS_BLOCK_GROUP_RAID1) |
| 4092 | allowed = BTRFS_BLOCK_GROUP_RAID1; |
| 4093 | else if (allowed & BTRFS_BLOCK_GROUP_RAID0) |
| 4094 | allowed = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4095 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4096 | flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4097 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4098 | return extended_to_chunk(flags | allowed); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4099 | } |
| 4100 | |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4101 | static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4102 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4103 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4104 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4105 | |
| 4106 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4107 | flags = orig_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4108 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 4109 | |
| 4110 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4111 | flags |= root->fs_info->avail_data_alloc_bits; |
| 4112 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 4113 | flags |= root->fs_info->avail_system_alloc_bits; |
| 4114 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 4115 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 4116 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4117 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4118 | return btrfs_reduce_alloc_profile(root, flags); |
| 4119 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4120 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 4121 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4122 | { |
| 4123 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4124 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4125 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4126 | if (data) |
| 4127 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 4128 | else if (root == root->fs_info->chunk_root) |
| 4129 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 4130 | else |
| 4131 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 4132 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4133 | ret = get_alloc_profile(root, flags); |
| 4134 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4135 | } |
| 4136 | |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4137 | int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4138 | { |
| 4139 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4140 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4141 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4142 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4143 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4144 | int need_commit = 2; |
| 4145 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4146 | |
| 4147 | /* make sure bytes are sectorsize aligned */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 4148 | bytes = ALIGN(bytes, root->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4149 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4150 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4151 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4152 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4153 | } |
| 4154 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4155 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4156 | if (!data_sinfo) |
| 4157 | goto alloc; |
| 4158 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4159 | again: |
| 4160 | /* make sure we have enough space to handle the data first */ |
| 4161 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4162 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 4163 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 4164 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4165 | |
| 4166 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4167 | struct btrfs_trans_handle *trans; |
| 4168 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4169 | /* |
| 4170 | * if we don't have enough free bytes in this space then we need |
| 4171 | * to alloc a new chunk. |
| 4172 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 4173 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4174 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4175 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4176 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4177 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4178 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4179 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4180 | /* |
| 4181 | * It is ugly that we don't call nolock join |
| 4182 | * transaction for the free space inode case here. |
| 4183 | * But it is safe because we only do the data space |
| 4184 | * reservation for the free space cache in the |
| 4185 | * transaction context, the common join transaction |
| 4186 | * just increase the counter of the current transaction |
| 4187 | * handler, doesn't try to acquire the trans_lock of |
| 4188 | * the fs. |
| 4189 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4190 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4191 | if (IS_ERR(trans)) |
| 4192 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4193 | |
| 4194 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4195 | alloc_target, |
| 4196 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4197 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4198 | if (ret < 0) { |
| 4199 | if (ret != -ENOSPC) |
| 4200 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4201 | else { |
| 4202 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4203 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4204 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4205 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4206 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4207 | if (!data_sinfo) |
| 4208 | data_sinfo = fs_info->data_sinfo; |
| 4209 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4210 | goto again; |
| 4211 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4212 | |
| 4213 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4214 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4215 | * allocation, and no removed chunk in current transaction, |
| 4216 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4217 | */ |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4218 | have_pinned_space = percpu_counter_compare( |
| 4219 | &data_sinfo->total_bytes_pinned, |
| 4220 | used + bytes - data_sinfo->total_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4221 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4222 | |
| 4223 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4224 | commit_trans: |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4225 | if (need_commit && |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 4226 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4227 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4228 | |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4229 | if (need_commit > 0) { |
| 4230 | btrfs_start_delalloc_roots(fs_info, 0, -1); |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4231 | btrfs_wait_ordered_roots(fs_info, -1, 0, (u64)-1); |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4232 | } |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 4233 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4234 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4235 | if (IS_ERR(trans)) |
| 4236 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4237 | if (have_pinned_space >= 0 || |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 4238 | test_bit(BTRFS_TRANS_HAVE_FREE_BGS, |
| 4239 | &trans->transaction->flags) || |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4240 | need_commit > 0) { |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4241 | ret = btrfs_commit_transaction(trans, root); |
| 4242 | if (ret) |
| 4243 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4244 | /* |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4245 | * The cleaner kthread might still be doing iput |
| 4246 | * operations. Wait for it to finish so that |
| 4247 | * more space is released. |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4248 | */ |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4249 | mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex); |
| 4250 | mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4251 | goto again; |
| 4252 | } else { |
| 4253 | btrfs_end_transaction(trans, root); |
| 4254 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4255 | } |
| 4256 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4257 | trace_btrfs_space_reservation(root->fs_info, |
| 4258 | "space_info:enospc", |
| 4259 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4260 | return -ENOSPC; |
| 4261 | } |
| 4262 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4263 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4264 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4265 | spin_unlock(&data_sinfo->lock); |
| 4266 | |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4267 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4268 | } |
| 4269 | |
| 4270 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4271 | * New check_data_free_space() with ability for precious data reservation |
| 4272 | * Will replace old btrfs_check_data_free_space(), but for patch split, |
| 4273 | * add a new function first and then replace it. |
| 4274 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 4275 | int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4276 | { |
| 4277 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4278 | int ret; |
| 4279 | |
| 4280 | /* align the range */ |
| 4281 | len = round_up(start + len, root->sectorsize) - |
| 4282 | round_down(start, root->sectorsize); |
| 4283 | start = round_down(start, root->sectorsize); |
| 4284 | |
| 4285 | ret = btrfs_alloc_data_chunk_ondemand(inode, len); |
| 4286 | if (ret < 0) |
| 4287 | return ret; |
| 4288 | |
Qu Wenruo | 94ed938 | 2015-09-08 17:25:56 +0800 | [diff] [blame] | 4289 | /* |
| 4290 | * Use new btrfs_qgroup_reserve_data to reserve precious data space |
| 4291 | * |
| 4292 | * TODO: Find a good method to avoid reserve data space for NOCOW |
| 4293 | * range, but don't impact performance on quota disable case. |
| 4294 | */ |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4295 | ret = btrfs_qgroup_reserve_data(inode, start, len); |
| 4296 | return ret; |
| 4297 | } |
| 4298 | |
| 4299 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4300 | * Called if we need to clear a data reservation for this inode |
| 4301 | * Normally in a error case. |
| 4302 | * |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4303 | * This one will *NOT* use accurate qgroup reserved space API, just for case |
| 4304 | * which we can't sleep and is sure it won't affect qgroup reserved space. |
| 4305 | * Like clear_bit_hook(). |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4306 | */ |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4307 | void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start, |
| 4308 | u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4309 | { |
| 4310 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4311 | struct btrfs_space_info *data_sinfo; |
| 4312 | |
| 4313 | /* Make sure the range is aligned to sectorsize */ |
| 4314 | len = round_up(start + len, root->sectorsize) - |
| 4315 | round_down(start, root->sectorsize); |
| 4316 | start = round_down(start, root->sectorsize); |
| 4317 | |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4318 | data_sinfo = root->fs_info->data_sinfo; |
| 4319 | spin_lock(&data_sinfo->lock); |
| 4320 | if (WARN_ON(data_sinfo->bytes_may_use < len)) |
| 4321 | data_sinfo->bytes_may_use = 0; |
| 4322 | else |
| 4323 | data_sinfo->bytes_may_use -= len; |
| 4324 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4325 | data_sinfo->flags, len, 0); |
| 4326 | spin_unlock(&data_sinfo->lock); |
| 4327 | } |
| 4328 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4329 | /* |
| 4330 | * Called if we need to clear a data reservation for this inode |
| 4331 | * Normally in a error case. |
| 4332 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4333 | * This one will handle the per-inode data rsv map for accurate reserved |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4334 | * space framework. |
| 4335 | */ |
| 4336 | void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len) |
| 4337 | { |
| 4338 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
| 4339 | btrfs_qgroup_free_data(inode, start, len); |
| 4340 | } |
| 4341 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4342 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4343 | { |
| 4344 | struct list_head *head = &info->space_info; |
| 4345 | struct btrfs_space_info *found; |
| 4346 | |
| 4347 | rcu_read_lock(); |
| 4348 | list_for_each_entry_rcu(found, head, list) { |
| 4349 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4350 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4351 | } |
| 4352 | rcu_read_unlock(); |
| 4353 | } |
| 4354 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4355 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4356 | { |
| 4357 | return (global->size << 1); |
| 4358 | } |
| 4359 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4360 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4361 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4362 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4363 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4364 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4365 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4366 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4367 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4368 | if (force == CHUNK_ALLOC_FORCE) |
| 4369 | return 1; |
| 4370 | |
| 4371 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4372 | * We need to take into account the global rsv because for all intents |
| 4373 | * and purposes it's used space. Don't worry about locking the |
| 4374 | * global_rsv, it doesn't change except when the transaction commits. |
| 4375 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 4376 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4377 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4378 | |
| 4379 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4380 | * in limited mode, we want to have some free space up to |
| 4381 | * about 1% of the FS size. |
| 4382 | */ |
| 4383 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4384 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4385 | thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1)); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4386 | |
| 4387 | if (num_bytes - num_allocated < thresh) |
| 4388 | return 1; |
| 4389 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4390 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4391 | if (num_allocated + SZ_2M < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4392 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4393 | return 1; |
| 4394 | } |
| 4395 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4396 | static u64 get_profile_num_devs(struct btrfs_root *root, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4397 | { |
| 4398 | u64 num_dev; |
| 4399 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4400 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4401 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4402 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4403 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4404 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 4405 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4406 | num_dev = 2; |
| 4407 | else |
| 4408 | num_dev = 1; /* DUP or single */ |
| 4409 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4410 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4411 | } |
| 4412 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4413 | /* |
| 4414 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4415 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4416 | * removing a chunk. |
| 4417 | */ |
| 4418 | void check_system_chunk(struct btrfs_trans_handle *trans, |
| 4419 | struct btrfs_root *root, |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4420 | u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4421 | { |
| 4422 | struct btrfs_space_info *info; |
| 4423 | u64 left; |
| 4424 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4425 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4426 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4427 | |
| 4428 | /* |
| 4429 | * Needed because we can end up allocating a system chunk and for an |
| 4430 | * atomic and race free space reservation in the chunk block reserve. |
| 4431 | */ |
| 4432 | ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex)); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4433 | |
| 4434 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4435 | spin_lock(&info->lock); |
| 4436 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4437 | info->bytes_reserved - info->bytes_readonly - |
| 4438 | info->bytes_may_use; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4439 | spin_unlock(&info->lock); |
| 4440 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4441 | num_devs = get_profile_num_devs(root, type); |
| 4442 | |
| 4443 | /* num_devs device items to update and 1 chunk item to add or remove */ |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4444 | thresh = btrfs_calc_trunc_metadata_size(root, num_devs) + |
| 4445 | btrfs_calc_trans_metadata_size(root, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4446 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 4447 | if (left < thresh && btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 4448 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4449 | left, thresh, type); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4450 | dump_space_info(info, 0, 0); |
| 4451 | } |
| 4452 | |
| 4453 | if (left < thresh) { |
| 4454 | u64 flags; |
| 4455 | |
| 4456 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4457 | /* |
| 4458 | * Ignore failure to create system chunk. We might end up not |
| 4459 | * needing it, as we might not need to COW all nodes/leafs from |
| 4460 | * the paths we visit in the chunk tree (they were already COWed |
| 4461 | * or created in the current transaction for example). |
| 4462 | */ |
| 4463 | ret = btrfs_alloc_chunk(trans, root, flags); |
| 4464 | } |
| 4465 | |
| 4466 | if (!ret) { |
| 4467 | ret = btrfs_block_rsv_add(root->fs_info->chunk_root, |
| 4468 | &root->fs_info->chunk_block_rsv, |
| 4469 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4470 | if (!ret) |
| 4471 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4472 | } |
| 4473 | } |
| 4474 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4475 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4476 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4477 | { |
| 4478 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4479 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4480 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4481 | int ret = 0; |
| 4482 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4483 | /* Don't re-enter if we're already allocating a chunk */ |
| 4484 | if (trans->allocating_chunk) |
| 4485 | return -ENOSPC; |
| 4486 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4487 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4488 | if (!space_info) { |
| 4489 | ret = update_space_info(extent_root->fs_info, flags, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 4490 | 0, 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4491 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4492 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4493 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4494 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4495 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4496 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 4497 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4498 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4499 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4500 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 4501 | ret = -ENOSPC; |
| 4502 | else |
| 4503 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4504 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4505 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4506 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4507 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4508 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4509 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4510 | return 0; |
| 4511 | } else if (space_info->chunk_alloc) { |
| 4512 | wait_for_alloc = 1; |
| 4513 | } else { |
| 4514 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4515 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4516 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4517 | spin_unlock(&space_info->lock); |
| 4518 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4519 | mutex_lock(&fs_info->chunk_mutex); |
| 4520 | |
| 4521 | /* |
| 4522 | * The chunk_mutex is held throughout the entirety of a chunk |
| 4523 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 4524 | * other guy is done and we need to recheck and see if we should |
| 4525 | * allocate. |
| 4526 | */ |
| 4527 | if (wait_for_alloc) { |
| 4528 | mutex_unlock(&fs_info->chunk_mutex); |
| 4529 | wait_for_alloc = 0; |
| 4530 | goto again; |
| 4531 | } |
| 4532 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4533 | trans->allocating_chunk = true; |
| 4534 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4535 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4536 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4537 | * allocating mixed chunks instead of individual chunks. |
| 4538 | */ |
| 4539 | if (btrfs_mixed_space_info(space_info)) |
| 4540 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4541 | |
| 4542 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4543 | * if we're doing a data chunk, go ahead and make sure that |
| 4544 | * we keep a reasonable number of metadata chunks allocated in the |
| 4545 | * FS as well. |
| 4546 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4547 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4548 | fs_info->data_chunk_allocations++; |
| 4549 | if (!(fs_info->data_chunk_allocations % |
| 4550 | fs_info->metadata_ratio)) |
| 4551 | force_metadata_allocation(fs_info); |
| 4552 | } |
| 4553 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4554 | /* |
| 4555 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4556 | * to update devices. |
| 4557 | */ |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4558 | check_system_chunk(trans, extent_root, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4559 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4560 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4561 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4562 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4563 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4564 | if (ret < 0 && ret != -ENOSPC) |
| 4565 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4566 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4567 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4568 | else |
| 4569 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4570 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4571 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4572 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4573 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4574 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4575 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4576 | /* |
| 4577 | * When we allocate a new chunk we reserve space in the chunk block |
| 4578 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4579 | * add new nodes/leafs to it if we end up needing to do it when |
| 4580 | * inserting the chunk item and updating device items as part of the |
| 4581 | * second phase of chunk allocation, performed by |
| 4582 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4583 | * large number of new block groups to create in our transaction |
| 4584 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4585 | * in extreme cases - like having a single transaction create many new |
| 4586 | * block groups when starting to write out the free space caches of all |
| 4587 | * the block groups that were made dirty during the lifetime of the |
| 4588 | * transaction. |
| 4589 | */ |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 4590 | if (trans->can_flush_pending_bgs && |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4591 | trans->chunk_bytes_reserved >= (u64)SZ_2M) { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 4592 | btrfs_create_pending_block_groups(trans, extent_root); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4593 | btrfs_trans_release_chunk_metadata(trans); |
| 4594 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4595 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4596 | } |
| 4597 | |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4598 | static int can_overcommit(struct btrfs_root *root, |
| 4599 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4600 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4601 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4602 | struct btrfs_block_rsv *global_rsv; |
| 4603 | u64 profile; |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4604 | u64 space_size; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4605 | u64 avail; |
| 4606 | u64 used; |
| 4607 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4608 | /* Don't overcommit when in mixed mode. */ |
| 4609 | if (space_info->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4610 | return 0; |
| 4611 | |
| 4612 | BUG_ON(root->fs_info == NULL); |
| 4613 | global_rsv = &root->fs_info->global_block_rsv; |
| 4614 | profile = btrfs_get_alloc_profile(root, 0); |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4615 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4616 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 4617 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4618 | /* |
| 4619 | * We only want to allow over committing if we have lots of actual space |
| 4620 | * free, but if we don't have enough space to handle the global reserve |
| 4621 | * space then we could end up having a real enospc problem when trying |
| 4622 | * to allocate a chunk or some other such important allocation. |
| 4623 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4624 | spin_lock(&global_rsv->lock); |
| 4625 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4626 | spin_unlock(&global_rsv->lock); |
| 4627 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4628 | return 0; |
| 4629 | |
| 4630 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4631 | |
| 4632 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4633 | avail = root->fs_info->free_chunk_space; |
| 4634 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4635 | |
| 4636 | /* |
| 4637 | * 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] | 4638 | * space is actually useable. For raid56, the space info used |
| 4639 | * doesn't include the parity drive, so we don't have to |
| 4640 | * change the math |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4641 | */ |
| 4642 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4643 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4644 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4645 | avail >>= 1; |
| 4646 | |
| 4647 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4648 | * If we aren't flushing all things, let us overcommit up to |
| 4649 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4650 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4651 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4652 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4653 | avail >>= 3; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4654 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4655 | avail >>= 1; |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4656 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4657 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dcf | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4658 | return 1; |
| 4659 | return 0; |
| 4660 | } |
| 4661 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4662 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4663 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4664 | { |
| 4665 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4666 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4667 | if (down_read_trylock(&sb->s_umount)) { |
| 4668 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4669 | up_read(&sb->s_umount); |
| 4670 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4671 | /* |
| 4672 | * We needn't worry the filesystem going from r/w to r/o though |
| 4673 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4674 | * should guarantee the delalloc inodes list be empty after |
| 4675 | * the filesystem is readonly(all dirty pages are written to |
| 4676 | * the disk). |
| 4677 | */ |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4678 | btrfs_start_delalloc_roots(root->fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4679 | if (!current->journal_info) |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4680 | btrfs_wait_ordered_roots(root->fs_info, nr_items, |
| 4681 | 0, (u64)-1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4682 | } |
| 4683 | } |
| 4684 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4685 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4686 | { |
| 4687 | u64 bytes; |
| 4688 | int nr; |
| 4689 | |
| 4690 | bytes = btrfs_calc_trans_metadata_size(root, 1); |
| 4691 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4692 | if (!nr) |
| 4693 | nr = 1; |
| 4694 | return nr; |
| 4695 | } |
| 4696 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4697 | #define EXTENT_SIZE_PER_ITEM SZ_256K |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4698 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4699 | /* |
| 4700 | * shrink metadata reservation for delalloc |
| 4701 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4702 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4703 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4704 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4705 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4706 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4707 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4708 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4709 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4710 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4711 | unsigned long nr_pages; |
| 4712 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4713 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4714 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4715 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4716 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4717 | items = calc_reclaim_items_nr(root, to_reclaim); |
Adam Borowski | 8eb0dfd | 2016-05-08 15:08:00 +0200 | [diff] [blame] | 4718 | to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4719 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4720 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4721 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4722 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4723 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4724 | delalloc_bytes = percpu_counter_sum_positive( |
| 4725 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4726 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4727 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4728 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4729 | if (wait_ordered) |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4730 | btrfs_wait_ordered_roots(root->fs_info, items, |
| 4731 | 0, (u64)-1); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4732 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4733 | } |
| 4734 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4735 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4736 | while (delalloc_bytes && loops < 3) { |
| 4737 | max_reclaim = min(delalloc_bytes, to_reclaim); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4738 | nr_pages = max_reclaim >> PAGE_SHIFT; |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4739 | btrfs_writeback_inodes_sb_nr(root, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4740 | /* |
| 4741 | * We need to wait for the async pages to actually start before |
| 4742 | * we do anything. |
| 4743 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4744 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4745 | if (!max_reclaim) |
| 4746 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4747 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4748 | if (max_reclaim <= nr_pages) |
| 4749 | max_reclaim = 0; |
| 4750 | else |
| 4751 | max_reclaim -= nr_pages; |
| 4752 | |
| 4753 | wait_event(root->fs_info->async_submit_wait, |
| 4754 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4755 | (int)max_reclaim); |
| 4756 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4757 | if (!trans) |
| 4758 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4759 | else |
| 4760 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4761 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4762 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4763 | spin_unlock(&space_info->lock); |
| 4764 | break; |
| 4765 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4766 | if (list_empty(&space_info->tickets) && |
| 4767 | list_empty(&space_info->priority_tickets)) { |
| 4768 | spin_unlock(&space_info->lock); |
| 4769 | break; |
| 4770 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4771 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4772 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4773 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4774 | if (wait_ordered && !trans) { |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4775 | btrfs_wait_ordered_roots(root->fs_info, items, |
| 4776 | 0, (u64)-1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4777 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4778 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4779 | if (time_left) |
| 4780 | break; |
| 4781 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4782 | delalloc_bytes = percpu_counter_sum_positive( |
| 4783 | &root->fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4784 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4785 | } |
| 4786 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4787 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4788 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4789 | * @root - the root we're allocating for |
| 4790 | * @bytes - the number of bytes we want to reserve |
| 4791 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4792 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4793 | * This will check to make sure that committing the transaction will actually |
| 4794 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4795 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4796 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4797 | static int may_commit_transaction(struct btrfs_root *root, |
| 4798 | struct btrfs_space_info *space_info, |
| 4799 | u64 bytes, int force) |
| 4800 | { |
| 4801 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4802 | struct btrfs_trans_handle *trans; |
| 4803 | |
| 4804 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4805 | if (trans) |
| 4806 | return -EAGAIN; |
| 4807 | |
| 4808 | if (force) |
| 4809 | goto commit; |
| 4810 | |
| 4811 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4812 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4813 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4814 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4815 | |
| 4816 | /* |
| 4817 | * See if there is some space in the delayed insertion reservation for |
| 4818 | * this reservation. |
| 4819 | */ |
| 4820 | if (space_info != delayed_rsv->space_info) |
| 4821 | return -ENOSPC; |
| 4822 | |
| 4823 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4824 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4825 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4826 | spin_unlock(&delayed_rsv->lock); |
| 4827 | return -ENOSPC; |
| 4828 | } |
| 4829 | spin_unlock(&delayed_rsv->lock); |
| 4830 | |
| 4831 | commit: |
| 4832 | trans = btrfs_join_transaction(root); |
| 4833 | if (IS_ERR(trans)) |
| 4834 | return -ENOSPC; |
| 4835 | |
| 4836 | return btrfs_commit_transaction(trans, root); |
| 4837 | } |
| 4838 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4839 | struct reserve_ticket { |
| 4840 | u64 bytes; |
| 4841 | int error; |
| 4842 | struct list_head list; |
| 4843 | wait_queue_head_t wait; |
| 4844 | }; |
| 4845 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4846 | static int flush_space(struct btrfs_root *root, |
| 4847 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4848 | u64 orig_bytes, int state) |
| 4849 | { |
| 4850 | struct btrfs_trans_handle *trans; |
| 4851 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4852 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4853 | |
| 4854 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4855 | case FLUSH_DELAYED_ITEMS_NR: |
| 4856 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4857 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4858 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4859 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4860 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4861 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4862 | trans = btrfs_join_transaction(root); |
| 4863 | if (IS_ERR(trans)) { |
| 4864 | ret = PTR_ERR(trans); |
| 4865 | break; |
| 4866 | } |
| 4867 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4868 | btrfs_end_transaction(trans, root); |
| 4869 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4870 | case FLUSH_DELALLOC: |
| 4871 | case FLUSH_DELALLOC_WAIT: |
Miao Xie | 24af7dd | 2014-03-06 13:55:00 +0800 | [diff] [blame] | 4872 | shrink_delalloc(root, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4873 | state == FLUSH_DELALLOC_WAIT); |
| 4874 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4875 | case ALLOC_CHUNK: |
| 4876 | trans = btrfs_join_transaction(root); |
| 4877 | if (IS_ERR(trans)) { |
| 4878 | ret = PTR_ERR(trans); |
| 4879 | break; |
| 4880 | } |
| 4881 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4882 | btrfs_get_alloc_profile(root, 0), |
| 4883 | CHUNK_ALLOC_NO_FORCE); |
| 4884 | btrfs_end_transaction(trans, root); |
Alex Lyakas | eecba89 | 2015-12-06 12:32:31 +0200 | [diff] [blame^] | 4885 | if (ret > 0 || ret == -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4886 | ret = 0; |
| 4887 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4888 | case COMMIT_TRANS: |
| 4889 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4890 | break; |
| 4891 | default: |
| 4892 | ret = -ENOSPC; |
| 4893 | break; |
| 4894 | } |
| 4895 | |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 4896 | trace_btrfs_flush_space(root->fs_info, space_info->flags, num_bytes, |
| 4897 | orig_bytes, state, ret); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4898 | return ret; |
| 4899 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4900 | |
| 4901 | static inline u64 |
| 4902 | btrfs_calc_reclaim_metadata_size(struct btrfs_root *root, |
| 4903 | struct btrfs_space_info *space_info) |
| 4904 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4905 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4906 | u64 used; |
| 4907 | u64 expected; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4908 | u64 to_reclaim = 0; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4909 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4910 | to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4911 | if (can_overcommit(root, space_info, to_reclaim, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4912 | BTRFS_RESERVE_FLUSH_ALL)) |
| 4913 | return 0; |
| 4914 | |
| 4915 | list_for_each_entry(ticket, &space_info->tickets, list) |
| 4916 | to_reclaim += ticket->bytes; |
| 4917 | list_for_each_entry(ticket, &space_info->priority_tickets, list) |
| 4918 | to_reclaim += ticket->bytes; |
| 4919 | if (to_reclaim) |
| 4920 | return to_reclaim; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4921 | |
| 4922 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4923 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4924 | space_info->bytes_may_use; |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4925 | if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4926 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4927 | else |
| 4928 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4929 | |
| 4930 | if (used > expected) |
| 4931 | to_reclaim = used - expected; |
| 4932 | else |
| 4933 | to_reclaim = 0; |
| 4934 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4935 | space_info->bytes_reserved); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4936 | return to_reclaim; |
| 4937 | } |
| 4938 | |
| 4939 | static inline int need_do_async_reclaim(struct btrfs_space_info *space_info, |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4940 | struct btrfs_root *root, u64 used) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4941 | { |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4942 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4943 | |
| 4944 | /* If we're just plain full then async reclaim just slows us down. */ |
Josef Bacik | baee879 | 2016-01-26 09:35:38 -0500 | [diff] [blame] | 4945 | if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh) |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4946 | return 0; |
| 4947 | |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4948 | if (!btrfs_calc_reclaim_metadata_size(root, space_info)) |
Josef Bacik | d38b349 | 2016-03-25 13:25:59 -0400 | [diff] [blame] | 4949 | return 0; |
| 4950 | |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4951 | return (used >= thresh && !btrfs_fs_closing(root->fs_info) && |
| 4952 | !test_bit(BTRFS_FS_STATE_REMOUNTING, |
| 4953 | &root->fs_info->fs_state)); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4954 | } |
| 4955 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4956 | static void wake_all_tickets(struct list_head *head) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4957 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4958 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4959 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4960 | while (!list_empty(head)) { |
| 4961 | ticket = list_first_entry(head, struct reserve_ticket, list); |
| 4962 | list_del_init(&ticket->list); |
| 4963 | ticket->error = -ENOSPC; |
| 4964 | wake_up(&ticket->wait); |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4965 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4966 | } |
| 4967 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4968 | /* |
| 4969 | * This is for normal flushers, we can wait all goddamned day if we want to. We |
| 4970 | * will loop and continuously try to flush as long as we are making progress. |
| 4971 | * We count progress as clearing off tickets each time we have to loop. |
| 4972 | */ |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4973 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4974 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4975 | struct reserve_ticket *last_ticket = NULL; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4976 | struct btrfs_fs_info *fs_info; |
| 4977 | struct btrfs_space_info *space_info; |
| 4978 | u64 to_reclaim; |
| 4979 | int flush_state; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4980 | int commit_cycles = 0; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4981 | |
| 4982 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 4983 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4984 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4985 | spin_lock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4986 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 4987 | space_info); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4988 | if (!to_reclaim) { |
| 4989 | space_info->flush = 0; |
| 4990 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4991 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4992 | } |
| 4993 | last_ticket = list_first_entry(&space_info->tickets, |
| 4994 | struct reserve_ticket, list); |
| 4995 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4996 | |
| 4997 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 4998 | do { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4999 | struct reserve_ticket *ticket; |
| 5000 | int ret; |
| 5001 | |
| 5002 | ret = flush_space(fs_info->fs_root, space_info, to_reclaim, |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5003 | to_reclaim, flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5004 | spin_lock(&space_info->lock); |
| 5005 | if (list_empty(&space_info->tickets)) { |
| 5006 | space_info->flush = 0; |
| 5007 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5008 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5009 | } |
| 5010 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 5011 | space_info); |
| 5012 | ticket = list_first_entry(&space_info->tickets, |
| 5013 | struct reserve_ticket, list); |
| 5014 | if (last_ticket == ticket) { |
| 5015 | flush_state++; |
| 5016 | } else { |
| 5017 | last_ticket = ticket; |
| 5018 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5019 | if (commit_cycles) |
| 5020 | commit_cycles--; |
| 5021 | } |
| 5022 | |
| 5023 | if (flush_state > COMMIT_TRANS) { |
| 5024 | commit_cycles++; |
| 5025 | if (commit_cycles > 2) { |
| 5026 | wake_all_tickets(&space_info->tickets); |
| 5027 | space_info->flush = 0; |
| 5028 | } else { |
| 5029 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5030 | } |
| 5031 | } |
| 5032 | spin_unlock(&space_info->lock); |
| 5033 | } while (flush_state <= COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5034 | } |
| 5035 | |
| 5036 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 5037 | { |
| 5038 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 5039 | } |
| 5040 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5041 | static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info, |
| 5042 | struct btrfs_space_info *space_info, |
| 5043 | struct reserve_ticket *ticket) |
| 5044 | { |
| 5045 | u64 to_reclaim; |
| 5046 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5047 | |
| 5048 | spin_lock(&space_info->lock); |
| 5049 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 5050 | space_info); |
| 5051 | if (!to_reclaim) { |
| 5052 | spin_unlock(&space_info->lock); |
| 5053 | return; |
| 5054 | } |
| 5055 | spin_unlock(&space_info->lock); |
| 5056 | |
| 5057 | do { |
| 5058 | flush_space(fs_info->fs_root, space_info, to_reclaim, |
| 5059 | to_reclaim, flush_state); |
| 5060 | flush_state++; |
| 5061 | spin_lock(&space_info->lock); |
| 5062 | if (ticket->bytes == 0) { |
| 5063 | spin_unlock(&space_info->lock); |
| 5064 | return; |
| 5065 | } |
| 5066 | spin_unlock(&space_info->lock); |
| 5067 | |
| 5068 | /* |
| 5069 | * Priority flushers can't wait on delalloc without |
| 5070 | * deadlocking. |
| 5071 | */ |
| 5072 | if (flush_state == FLUSH_DELALLOC || |
| 5073 | flush_state == FLUSH_DELALLOC_WAIT) |
| 5074 | flush_state = ALLOC_CHUNK; |
| 5075 | } while (flush_state < COMMIT_TRANS); |
| 5076 | } |
| 5077 | |
| 5078 | static int wait_reserve_ticket(struct btrfs_fs_info *fs_info, |
| 5079 | struct btrfs_space_info *space_info, |
| 5080 | struct reserve_ticket *ticket, u64 orig_bytes) |
| 5081 | |
| 5082 | { |
| 5083 | DEFINE_WAIT(wait); |
| 5084 | int ret = 0; |
| 5085 | |
| 5086 | spin_lock(&space_info->lock); |
| 5087 | while (ticket->bytes > 0 && ticket->error == 0) { |
| 5088 | ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE); |
| 5089 | if (ret) { |
| 5090 | ret = -EINTR; |
| 5091 | break; |
| 5092 | } |
| 5093 | spin_unlock(&space_info->lock); |
| 5094 | |
| 5095 | schedule(); |
| 5096 | |
| 5097 | finish_wait(&ticket->wait, &wait); |
| 5098 | spin_lock(&space_info->lock); |
| 5099 | } |
| 5100 | if (!ret) |
| 5101 | ret = ticket->error; |
| 5102 | if (!list_empty(&ticket->list)) |
| 5103 | list_del_init(&ticket->list); |
| 5104 | if (ticket->bytes && ticket->bytes < orig_bytes) { |
| 5105 | u64 num_bytes = orig_bytes - ticket->bytes; |
| 5106 | space_info->bytes_may_use -= num_bytes; |
| 5107 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5108 | space_info->flags, num_bytes, 0); |
| 5109 | } |
| 5110 | spin_unlock(&space_info->lock); |
| 5111 | |
| 5112 | return ret; |
| 5113 | } |
| 5114 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5115 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5116 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5117 | * @root - the root we're allocating for |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5118 | * @space_info - the space info we want to allocate from |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5119 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 5120 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5121 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5122 | * This will reserve orig_bytes number of bytes from the space info associated |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5123 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5124 | * flush out space to make room. It will do this by flushing delalloc if |
| 5125 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5126 | * regain reservations will be made and this will fail if there is not enough |
| 5127 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5128 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5129 | static int __reserve_metadata_bytes(struct btrfs_root *root, |
| 5130 | struct btrfs_space_info *space_info, |
| 5131 | u64 orig_bytes, |
| 5132 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5133 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5134 | struct reserve_ticket ticket; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5135 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5136 | int ret = 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5137 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5138 | ASSERT(orig_bytes); |
Josef Bacik | 8ca17f0 | 2016-05-27 13:24:13 -0400 | [diff] [blame] | 5139 | ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL); |
| 5140 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5141 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 5142 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5143 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 5144 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 5145 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5146 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5147 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5148 | * If we have enough space then hooray, make our reservation and carry |
| 5149 | * on. If not see if we can overcommit, and if we can, hooray carry on. |
| 5150 | * If not things get more complicated. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5151 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5152 | if (used + orig_bytes <= space_info->total_bytes) { |
| 5153 | space_info->bytes_may_use += orig_bytes; |
| 5154 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 5155 | space_info->flags, orig_bytes, |
| 5156 | 1); |
| 5157 | ret = 0; |
| 5158 | } else if (can_overcommit(root, space_info, orig_bytes, flush)) { |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5159 | space_info->bytes_may_use += orig_bytes; |
| 5160 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 5161 | space_info->flags, orig_bytes, |
| 5162 | 1); |
| 5163 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5164 | } |
| 5165 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5166 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5167 | * If we couldn't make a reservation then setup our reservation ticket |
| 5168 | * and kick the async worker if it's not already running. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5169 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5170 | * If we are a priority flusher then we just need to add our ticket to |
| 5171 | * the list and we will do our own flushing further down. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5172 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 5173 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5174 | ticket.bytes = orig_bytes; |
| 5175 | ticket.error = 0; |
| 5176 | init_waitqueue_head(&ticket.wait); |
| 5177 | if (flush == BTRFS_RESERVE_FLUSH_ALL) { |
| 5178 | list_add_tail(&ticket.list, &space_info->tickets); |
| 5179 | if (!space_info->flush) { |
| 5180 | space_info->flush = 1; |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5181 | trace_btrfs_trigger_flush(root->fs_info, |
| 5182 | space_info->flags, |
| 5183 | orig_bytes, flush, |
| 5184 | "enospc"); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5185 | queue_work(system_unbound_wq, |
| 5186 | &root->fs_info->async_reclaim_work); |
| 5187 | } |
| 5188 | } else { |
| 5189 | list_add_tail(&ticket.list, |
| 5190 | &space_info->priority_tickets); |
| 5191 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5192 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 5193 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 5194 | /* |
| 5195 | * We will do the space reservation dance during log replay, |
| 5196 | * which means we won't have fs_info->fs_root set, so don't do |
| 5197 | * the async reclaim as we will panic. |
| 5198 | */ |
| 5199 | if (!root->fs_info->log_root_recovering && |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 5200 | need_do_async_reclaim(space_info, root, used) && |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5201 | !work_busy(&root->fs_info->async_reclaim_work)) { |
| 5202 | trace_btrfs_trigger_flush(root->fs_info, |
| 5203 | space_info->flags, |
| 5204 | orig_bytes, flush, |
| 5205 | "preempt"); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5206 | queue_work(system_unbound_wq, |
| 5207 | &root->fs_info->async_reclaim_work); |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5208 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5209 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5210 | spin_unlock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5211 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5212 | return ret; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5213 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5214 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
| 5215 | return wait_reserve_ticket(root->fs_info, space_info, &ticket, |
| 5216 | orig_bytes); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5217 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5218 | ret = 0; |
| 5219 | priority_reclaim_metadata_space(root->fs_info, space_info, &ticket); |
| 5220 | spin_lock(&space_info->lock); |
| 5221 | if (ticket.bytes) { |
| 5222 | if (ticket.bytes < orig_bytes) { |
| 5223 | u64 num_bytes = orig_bytes - ticket.bytes; |
| 5224 | space_info->bytes_may_use -= num_bytes; |
| 5225 | trace_btrfs_space_reservation(root->fs_info, |
| 5226 | "space_info", space_info->flags, |
| 5227 | num_bytes, 0); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5228 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5229 | } |
| 5230 | list_del_init(&ticket.list); |
| 5231 | ret = -ENOSPC; |
| 5232 | } |
| 5233 | spin_unlock(&space_info->lock); |
| 5234 | ASSERT(list_empty(&ticket.list)); |
| 5235 | return ret; |
| 5236 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5237 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5238 | /** |
| 5239 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5240 | * @root - the root we're allocating for |
| 5241 | * @block_rsv - the block_rsv we're allocating for |
| 5242 | * @orig_bytes - the number of bytes we want |
| 5243 | * @flush - whether or not we can flush to make our reservation |
| 5244 | * |
| 5245 | * This will reserve orgi_bytes number of bytes from the space info associated |
| 5246 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5247 | * flush out space to make room. It will do this by flushing delalloc if |
| 5248 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5249 | * regain reservations will be made and this will fail if there is not enough |
| 5250 | * space already. |
| 5251 | */ |
| 5252 | static int reserve_metadata_bytes(struct btrfs_root *root, |
| 5253 | struct btrfs_block_rsv *block_rsv, |
| 5254 | u64 orig_bytes, |
| 5255 | enum btrfs_reserve_flush_enum flush) |
| 5256 | { |
| 5257 | int ret; |
| 5258 | |
| 5259 | ret = __reserve_metadata_bytes(root, block_rsv->space_info, orig_bytes, |
| 5260 | flush); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5261 | if (ret == -ENOSPC && |
| 5262 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 5263 | struct btrfs_block_rsv *global_rsv = |
| 5264 | &root->fs_info->global_block_rsv; |
| 5265 | |
| 5266 | if (block_rsv != global_rsv && |
| 5267 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 5268 | ret = 0; |
| 5269 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 5270 | if (ret == -ENOSPC) |
| 5271 | trace_btrfs_space_reservation(root->fs_info, |
| 5272 | "space_info:enospc", |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5273 | block_rsv->space_info->flags, |
| 5274 | orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5275 | return ret; |
| 5276 | } |
| 5277 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5278 | static struct btrfs_block_rsv *get_block_rsv( |
| 5279 | const struct btrfs_trans_handle *trans, |
| 5280 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5281 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5282 | struct btrfs_block_rsv *block_rsv = NULL; |
| 5283 | |
Alexandru Moise | e9cf439 | 2015-09-09 00:18:50 +0000 | [diff] [blame] | 5284 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
| 5285 | (root == root->fs_info->csum_root && trans->adding_csums) || |
| 5286 | (root == root->fs_info->uuid_root)) |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 5287 | block_rsv = trans->block_rsv; |
| 5288 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5289 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5290 | block_rsv = root->block_rsv; |
| 5291 | |
| 5292 | if (!block_rsv) |
| 5293 | block_rsv = &root->fs_info->empty_block_rsv; |
| 5294 | |
| 5295 | return block_rsv; |
| 5296 | } |
| 5297 | |
| 5298 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 5299 | u64 num_bytes) |
| 5300 | { |
| 5301 | int ret = -ENOSPC; |
| 5302 | spin_lock(&block_rsv->lock); |
| 5303 | if (block_rsv->reserved >= num_bytes) { |
| 5304 | block_rsv->reserved -= num_bytes; |
| 5305 | if (block_rsv->reserved < block_rsv->size) |
| 5306 | block_rsv->full = 0; |
| 5307 | ret = 0; |
| 5308 | } |
| 5309 | spin_unlock(&block_rsv->lock); |
| 5310 | return ret; |
| 5311 | } |
| 5312 | |
| 5313 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 5314 | u64 num_bytes, int update_size) |
| 5315 | { |
| 5316 | spin_lock(&block_rsv->lock); |
| 5317 | block_rsv->reserved += num_bytes; |
| 5318 | if (update_size) |
| 5319 | block_rsv->size += num_bytes; |
| 5320 | else if (block_rsv->reserved >= block_rsv->size) |
| 5321 | block_rsv->full = 1; |
| 5322 | spin_unlock(&block_rsv->lock); |
| 5323 | } |
| 5324 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 5325 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 5326 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 5327 | int min_factor) |
| 5328 | { |
| 5329 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5330 | u64 min_bytes; |
| 5331 | |
| 5332 | if (global_rsv->space_info != dest->space_info) |
| 5333 | return -ENOSPC; |
| 5334 | |
| 5335 | spin_lock(&global_rsv->lock); |
| 5336 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 5337 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 5338 | spin_unlock(&global_rsv->lock); |
| 5339 | return -ENOSPC; |
| 5340 | } |
| 5341 | global_rsv->reserved -= num_bytes; |
| 5342 | if (global_rsv->reserved < global_rsv->size) |
| 5343 | global_rsv->full = 0; |
| 5344 | spin_unlock(&global_rsv->lock); |
| 5345 | |
| 5346 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 5347 | return 0; |
| 5348 | } |
| 5349 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5350 | /* |
| 5351 | * This is for space we already have accounted in space_info->bytes_may_use, so |
| 5352 | * basically when we're returning space from block_rsv's. |
| 5353 | */ |
| 5354 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 5355 | struct btrfs_space_info *space_info, |
| 5356 | u64 num_bytes) |
| 5357 | { |
| 5358 | struct reserve_ticket *ticket; |
| 5359 | struct list_head *head; |
| 5360 | u64 used; |
| 5361 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH; |
| 5362 | bool check_overcommit = false; |
| 5363 | |
| 5364 | spin_lock(&space_info->lock); |
| 5365 | head = &space_info->priority_tickets; |
| 5366 | |
| 5367 | /* |
| 5368 | * If we are over our limit then we need to check and see if we can |
| 5369 | * overcommit, and if we can't then we just need to free up our space |
| 5370 | * and not satisfy any requests. |
| 5371 | */ |
| 5372 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 5373 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 5374 | space_info->bytes_may_use; |
| 5375 | if (used - num_bytes >= space_info->total_bytes) |
| 5376 | check_overcommit = true; |
| 5377 | again: |
| 5378 | while (!list_empty(head) && num_bytes) { |
| 5379 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5380 | list); |
| 5381 | /* |
| 5382 | * We use 0 bytes because this space is already reserved, so |
| 5383 | * adding the ticket space would be a double count. |
| 5384 | */ |
| 5385 | if (check_overcommit && |
| 5386 | !can_overcommit(fs_info->extent_root, space_info, 0, |
| 5387 | flush)) |
| 5388 | break; |
| 5389 | if (num_bytes >= ticket->bytes) { |
| 5390 | list_del_init(&ticket->list); |
| 5391 | num_bytes -= ticket->bytes; |
| 5392 | ticket->bytes = 0; |
| 5393 | wake_up(&ticket->wait); |
| 5394 | } else { |
| 5395 | ticket->bytes -= num_bytes; |
| 5396 | num_bytes = 0; |
| 5397 | } |
| 5398 | } |
| 5399 | |
| 5400 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5401 | head = &space_info->tickets; |
| 5402 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 5403 | goto again; |
| 5404 | } |
| 5405 | space_info->bytes_may_use -= num_bytes; |
| 5406 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5407 | space_info->flags, num_bytes, 0); |
| 5408 | spin_unlock(&space_info->lock); |
| 5409 | } |
| 5410 | |
| 5411 | /* |
| 5412 | * This is for newly allocated space that isn't accounted in |
| 5413 | * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent |
| 5414 | * we use this helper. |
| 5415 | */ |
| 5416 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 5417 | struct btrfs_space_info *space_info, |
| 5418 | u64 num_bytes) |
| 5419 | { |
| 5420 | struct reserve_ticket *ticket; |
| 5421 | struct list_head *head = &space_info->priority_tickets; |
| 5422 | |
| 5423 | again: |
| 5424 | while (!list_empty(head) && num_bytes) { |
| 5425 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5426 | list); |
| 5427 | if (num_bytes >= ticket->bytes) { |
| 5428 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5429 | space_info->flags, |
| 5430 | ticket->bytes, 1); |
| 5431 | list_del_init(&ticket->list); |
| 5432 | num_bytes -= ticket->bytes; |
| 5433 | space_info->bytes_may_use += ticket->bytes; |
| 5434 | ticket->bytes = 0; |
| 5435 | wake_up(&ticket->wait); |
| 5436 | } else { |
| 5437 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5438 | space_info->flags, |
| 5439 | num_bytes, 1); |
| 5440 | space_info->bytes_may_use += num_bytes; |
| 5441 | ticket->bytes -= num_bytes; |
| 5442 | num_bytes = 0; |
| 5443 | } |
| 5444 | } |
| 5445 | |
| 5446 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5447 | head = &space_info->tickets; |
| 5448 | goto again; |
| 5449 | } |
| 5450 | } |
| 5451 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5452 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 5453 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 5454 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5455 | { |
| 5456 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 5457 | |
| 5458 | spin_lock(&block_rsv->lock); |
| 5459 | if (num_bytes == (u64)-1) |
| 5460 | num_bytes = block_rsv->size; |
| 5461 | block_rsv->size -= num_bytes; |
| 5462 | if (block_rsv->reserved >= block_rsv->size) { |
| 5463 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 5464 | block_rsv->reserved = block_rsv->size; |
| 5465 | block_rsv->full = 1; |
| 5466 | } else { |
| 5467 | num_bytes = 0; |
| 5468 | } |
| 5469 | spin_unlock(&block_rsv->lock); |
| 5470 | |
| 5471 | if (num_bytes > 0) { |
| 5472 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 5473 | spin_lock(&dest->lock); |
| 5474 | if (!dest->full) { |
| 5475 | u64 bytes_to_add; |
| 5476 | |
| 5477 | bytes_to_add = dest->size - dest->reserved; |
| 5478 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 5479 | dest->reserved += bytes_to_add; |
| 5480 | if (dest->reserved >= dest->size) |
| 5481 | dest->full = 1; |
| 5482 | num_bytes -= bytes_to_add; |
| 5483 | } |
| 5484 | spin_unlock(&dest->lock); |
| 5485 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5486 | if (num_bytes) |
| 5487 | space_info_add_old_bytes(fs_info, space_info, |
| 5488 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5489 | } |
| 5490 | } |
| 5491 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5492 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src, |
| 5493 | struct btrfs_block_rsv *dst, u64 num_bytes, |
| 5494 | int update_size) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5495 | { |
| 5496 | int ret; |
| 5497 | |
| 5498 | ret = block_rsv_use_bytes(src, num_bytes); |
| 5499 | if (ret) |
| 5500 | return ret; |
| 5501 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5502 | block_rsv_add_bytes(dst, num_bytes, update_size); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5503 | return 0; |
| 5504 | } |
| 5505 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5506 | 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] | 5507 | { |
| 5508 | memset(rsv, 0, sizeof(*rsv)); |
| 5509 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5510 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5511 | } |
| 5512 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5513 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 5514 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5515 | { |
| 5516 | struct btrfs_block_rsv *block_rsv; |
| 5517 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5518 | |
| 5519 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 5520 | if (!block_rsv) |
| 5521 | return NULL; |
| 5522 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5523 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5524 | block_rsv->space_info = __find_space_info(fs_info, |
| 5525 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5526 | return block_rsv; |
| 5527 | } |
| 5528 | |
| 5529 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 5530 | struct btrfs_block_rsv *rsv) |
| 5531 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 5532 | if (!rsv) |
| 5533 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5534 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 5535 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5536 | } |
| 5537 | |
Chris Mason | cdfb080 | 2015-04-06 18:17:00 -0700 | [diff] [blame] | 5538 | void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv) |
| 5539 | { |
| 5540 | kfree(rsv); |
| 5541 | } |
| 5542 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5543 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5544 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5545 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5546 | { |
| 5547 | int ret; |
| 5548 | |
| 5549 | if (num_bytes == 0) |
| 5550 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5551 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5552 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5553 | if (!ret) { |
| 5554 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 5555 | return 0; |
| 5556 | } |
| 5557 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5558 | return ret; |
| 5559 | } |
| 5560 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5561 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5562 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5563 | { |
| 5564 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5565 | int ret = -ENOSPC; |
| 5566 | |
| 5567 | if (!block_rsv) |
| 5568 | return 0; |
| 5569 | |
| 5570 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5571 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5572 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5573 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5574 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5575 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5576 | return ret; |
| 5577 | } |
| 5578 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5579 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5580 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5581 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5582 | { |
| 5583 | u64 num_bytes = 0; |
| 5584 | int ret = -ENOSPC; |
| 5585 | |
| 5586 | if (!block_rsv) |
| 5587 | return 0; |
| 5588 | |
| 5589 | spin_lock(&block_rsv->lock); |
| 5590 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5591 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5592 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5593 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5594 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5595 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5596 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5597 | if (!ret) |
| 5598 | return 0; |
| 5599 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5600 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5601 | if (!ret) { |
| 5602 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5603 | return 0; |
| 5604 | } |
| 5605 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5606 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5607 | } |
| 5608 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5609 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 5610 | struct btrfs_block_rsv *block_rsv, |
| 5611 | u64 num_bytes) |
| 5612 | { |
| 5613 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 5614 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5615 | block_rsv->space_info != global_rsv->space_info) |
| 5616 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5617 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 5618 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5619 | } |
| 5620 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5621 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5622 | { |
| 5623 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5624 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5625 | u64 num_bytes; |
| 5626 | |
Josef Bacik | ae2e472 | 2016-05-27 12:58:35 -0400 | [diff] [blame] | 5627 | /* |
| 5628 | * The global block rsv is based on the size of the extent tree, the |
| 5629 | * checksum tree and the root tree. If the fs is empty we want to set |
| 5630 | * it to a minimal amount for safety. |
| 5631 | */ |
| 5632 | num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) + |
| 5633 | btrfs_root_used(&fs_info->csum_root->root_item) + |
| 5634 | btrfs_root_used(&fs_info->tree_root->root_item); |
| 5635 | num_bytes = max_t(u64, num_bytes, SZ_16M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5636 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5637 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5638 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5639 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 5640 | block_rsv->size = min_t(u64, num_bytes, SZ_512M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5641 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5642 | if (block_rsv->reserved < block_rsv->size) { |
| 5643 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
| 5644 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 5645 | sinfo->bytes_may_use; |
| 5646 | if (sinfo->total_bytes > num_bytes) { |
| 5647 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5648 | num_bytes = min(num_bytes, |
| 5649 | block_rsv->size - block_rsv->reserved); |
| 5650 | block_rsv->reserved += num_bytes; |
| 5651 | sinfo->bytes_may_use += num_bytes; |
| 5652 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5653 | sinfo->flags, num_bytes, |
| 5654 | 1); |
| 5655 | } |
| 5656 | } else if (block_rsv->reserved > block_rsv->size) { |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5657 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5658 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5659 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5660 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5661 | block_rsv->reserved = block_rsv->size; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5662 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5663 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5664 | if (block_rsv->reserved == block_rsv->size) |
| 5665 | block_rsv->full = 1; |
| 5666 | else |
| 5667 | block_rsv->full = 0; |
| 5668 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5669 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5670 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5671 | } |
| 5672 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5673 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5674 | { |
| 5675 | struct btrfs_space_info *space_info; |
| 5676 | |
| 5677 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5678 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5679 | |
| 5680 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5681 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5682 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5683 | fs_info->trans_block_rsv.space_info = space_info; |
| 5684 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5685 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5686 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5687 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 5688 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 5689 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5690 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5691 | if (fs_info->quota_root) |
| 5692 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5693 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5694 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5695 | update_global_block_rsv(fs_info); |
| 5696 | } |
| 5697 | |
| 5698 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5699 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5700 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 5701 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5702 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 5703 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 5704 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5705 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5706 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5707 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5708 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5709 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5710 | } |
| 5711 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5712 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 5713 | struct btrfs_root *root) |
| 5714 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 5715 | if (!trans->block_rsv) |
| 5716 | return; |
| 5717 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5718 | if (!trans->bytes_reserved) |
| 5719 | return; |
| 5720 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 5721 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5722 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 5723 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5724 | trans->bytes_reserved = 0; |
| 5725 | } |
| 5726 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5727 | /* |
| 5728 | * To be called after all the new block groups attached to the transaction |
| 5729 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5730 | */ |
| 5731 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5732 | { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 5733 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5734 | |
| 5735 | if (!trans->chunk_bytes_reserved) |
| 5736 | return; |
| 5737 | |
| 5738 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5739 | |
| 5740 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
| 5741 | trans->chunk_bytes_reserved); |
| 5742 | trans->chunk_bytes_reserved = 0; |
| 5743 | } |
| 5744 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5745 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5746 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 5747 | struct inode *inode) |
| 5748 | { |
| 5749 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 40acc3e | 2016-05-27 13:01:08 -0400 | [diff] [blame] | 5750 | /* |
| 5751 | * We always use trans->block_rsv here as we will have reserved space |
| 5752 | * for our orphan when starting the transaction, using get_block_rsv() |
| 5753 | * here will sometimes make us choose the wrong block rsv as we could be |
| 5754 | * doing a reloc inode for a non refcounted root. |
| 5755 | */ |
| 5756 | struct btrfs_block_rsv *src_rsv = trans->block_rsv; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5757 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 5758 | |
| 5759 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5760 | * We need to hold space in order to delete our orphan item once we've |
| 5761 | * added it, so this takes the reservation so we can release it later |
| 5762 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5763 | */ |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5764 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5765 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5766 | btrfs_ino(inode), num_bytes, 1); |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5767 | return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5768 | } |
| 5769 | |
| 5770 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 5771 | { |
| 5772 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5773 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5774 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5775 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5776 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 5777 | } |
| 5778 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5779 | /* |
| 5780 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 5781 | * root: the root of the parent directory |
| 5782 | * rsv: block reservation |
| 5783 | * items: the number of items that we need do reservation |
| 5784 | * qgroup_reserved: used to return the reserved size in qgroup |
| 5785 | * |
| 5786 | * This function is used to reserve the space for snapshot/subvolume |
| 5787 | * creation and deletion. Those operations are different with the |
| 5788 | * common file/directory operations, they change two fs/file trees |
| 5789 | * and root tree, the number of items that the qgroup reserves is |
| 5790 | * different with the free space reservation. So we can not use |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5791 | * the space reservation mechanism in start_transaction(). |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5792 | */ |
| 5793 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 5794 | struct btrfs_block_rsv *rsv, |
| 5795 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5796 | u64 *qgroup_reserved, |
| 5797 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5798 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5799 | u64 num_bytes; |
| 5800 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5801 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5802 | |
| 5803 | if (root->fs_info->quota_enabled) { |
| 5804 | /* One for parent inode, two for dir entries */ |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 5805 | num_bytes = 3 * root->nodesize; |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5806 | ret = btrfs_qgroup_reserve_meta(root, num_bytes); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5807 | if (ret) |
| 5808 | return ret; |
| 5809 | } else { |
| 5810 | num_bytes = 0; |
| 5811 | } |
| 5812 | |
| 5813 | *qgroup_reserved = num_bytes; |
| 5814 | |
| 5815 | num_bytes = btrfs_calc_trans_metadata_size(root, items); |
| 5816 | rsv->space_info = __find_space_info(root->fs_info, |
| 5817 | BTRFS_BLOCK_GROUP_METADATA); |
| 5818 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5819 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5820 | |
| 5821 | if (ret == -ENOSPC && use_global_rsv) |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5822 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5823 | |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5824 | if (ret && *qgroup_reserved) |
| 5825 | btrfs_qgroup_free_meta(root, *qgroup_reserved); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5826 | |
| 5827 | return ret; |
| 5828 | } |
| 5829 | |
| 5830 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 5831 | struct btrfs_block_rsv *rsv, |
| 5832 | u64 qgroup_reserved) |
| 5833 | { |
| 5834 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5835 | } |
| 5836 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5837 | /** |
| 5838 | * drop_outstanding_extent - drop an outstanding extent |
| 5839 | * @inode: the inode we're dropping the extent for |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5840 | * @num_bytes: the number of bytes we're releasing. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5841 | * |
| 5842 | * This is called when we are freeing up an outstanding extent, either called |
| 5843 | * after an error or after an extent is written. This will return the number of |
| 5844 | * reserved extents that need to be freed. This must be called with |
| 5845 | * BTRFS_I(inode)->lock held. |
| 5846 | */ |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5847 | static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5848 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5849 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5850 | unsigned dropped_extents = 0; |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5851 | unsigned num_extents = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5852 | |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5853 | num_extents = (unsigned)div64_u64(num_bytes + |
| 5854 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5855 | BTRFS_MAX_EXTENT_SIZE); |
| 5856 | ASSERT(num_extents); |
| 5857 | ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents); |
| 5858 | BTRFS_I(inode)->outstanding_extents -= num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5859 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5860 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5861 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5862 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5863 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5864 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5865 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5866 | * If we have more or the same amount of outstanding extents than we have |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5867 | * reserved then we need to leave the reserved extents count alone. |
| 5868 | */ |
| 5869 | if (BTRFS_I(inode)->outstanding_extents >= |
| 5870 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5871 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5872 | |
| 5873 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 5874 | BTRFS_I(inode)->outstanding_extents; |
| 5875 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5876 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5877 | } |
| 5878 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5879 | /** |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5880 | * calc_csum_metadata_size - return the amount of metadata space that must be |
| 5881 | * reserved/freed for the given bytes. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5882 | * @inode: the inode we're manipulating |
| 5883 | * @num_bytes: the number of bytes in question |
| 5884 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5885 | * |
| 5886 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5887 | * correct amount of metadata that must either be reserved or freed. We |
| 5888 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5889 | * number of bytes that will need to be checksumed by this value to figure out |
| 5890 | * how many checksums will be required. If we are adding bytes then the number |
| 5891 | * may go up and we will return the number of additional bytes that must be |
| 5892 | * reserved. If it is going down we will return the number of bytes that must |
| 5893 | * be freed. |
| 5894 | * |
| 5895 | * This must be called with BTRFS_I(inode)->lock held. |
| 5896 | */ |
| 5897 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 5898 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5899 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5900 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 5901 | u64 old_csums, num_csums; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5902 | |
| 5903 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 5904 | BTRFS_I(inode)->csum_bytes == 0) |
| 5905 | return 0; |
| 5906 | |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5907 | old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5908 | if (reserve) |
| 5909 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 5910 | else |
| 5911 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5912 | num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5913 | |
| 5914 | /* No change, no need to reserve more */ |
| 5915 | if (old_csums == num_csums) |
| 5916 | return 0; |
| 5917 | |
| 5918 | if (reserve) |
| 5919 | return btrfs_calc_trans_metadata_size(root, |
| 5920 | num_csums - old_csums); |
| 5921 | |
| 5922 | return btrfs_calc_trans_metadata_size(root, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5923 | } |
| 5924 | |
| 5925 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 5926 | { |
| 5927 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5928 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5929 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5930 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5931 | unsigned nr_extents = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5932 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5933 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5934 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5935 | u64 to_free = 0; |
| 5936 | unsigned dropped; |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5937 | bool release_extra = false; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5938 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5939 | /* If we are a free space inode we need to not flush since we will be in |
| 5940 | * the middle of a transaction commit. We also don't need the delalloc |
| 5941 | * mutex since we won't race with anybody. We need this mostly to make |
| 5942 | * lockdep shut its filthy mouth. |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5943 | * |
| 5944 | * If we have a transaction open (can happen if we call truncate_block |
| 5945 | * from truncate), then we need FLUSH_LIMIT so we don't deadlock. |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5946 | */ |
| 5947 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5948 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5949 | delalloc_lock = false; |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5950 | } else if (current->journal_info) { |
| 5951 | flush = BTRFS_RESERVE_FLUSH_LIMIT; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5952 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5953 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5954 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 5955 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5956 | schedule_timeout(1); |
| 5957 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5958 | if (delalloc_lock) |
| 5959 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 5960 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5961 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5962 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5963 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 6a41dd0 | 2015-03-13 15:12:23 -0400 | [diff] [blame] | 5964 | nr_extents = (unsigned)div64_u64(num_bytes + |
| 5965 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5966 | BTRFS_MAX_EXTENT_SIZE); |
| 5967 | BTRFS_I(inode)->outstanding_extents += nr_extents; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5968 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5969 | nr_extents = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5970 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5971 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5972 | nr_extents += BTRFS_I(inode)->outstanding_extents - |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5973 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5974 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5975 | /* We always want to reserve a slot for updating the inode. */ |
| 5976 | to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents + 1); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5977 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5978 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5979 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5980 | |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5981 | if (root->fs_info->quota_enabled) { |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5982 | ret = btrfs_qgroup_reserve_meta(root, |
| 5983 | nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5984 | if (ret) |
| 5985 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5986 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5987 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5988 | ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5989 | if (unlikely(ret)) { |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5990 | btrfs_qgroup_free_meta(root, nr_extents * root->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5991 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5992 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5993 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5994 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5995 | if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Josef Bacik | f485c9e | 2016-03-25 13:25:55 -0400 | [diff] [blame] | 5996 | &BTRFS_I(inode)->runtime_flags)) { |
| 5997 | to_reserve -= btrfs_calc_trans_metadata_size(root, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5998 | release_extra = true; |
Josef Bacik | f485c9e | 2016-03-25 13:25:55 -0400 | [diff] [blame] | 5999 | } |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6000 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 6001 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6002 | |
| 6003 | if (delalloc_lock) |
| 6004 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6005 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6006 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 6007 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6008 | btrfs_ino(inode), to_reserve, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6009 | if (release_extra) |
| 6010 | btrfs_block_rsv_release(root, block_rsv, |
| 6011 | btrfs_calc_trans_metadata_size(root, |
| 6012 | 1)); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6013 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6014 | |
| 6015 | out_fail: |
| 6016 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6017 | dropped = drop_outstanding_extent(inode, num_bytes); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6018 | /* |
| 6019 | * If the inodes csum_bytes is the same as the original |
| 6020 | * csum_bytes then we know we haven't raced with any free()ers |
| 6021 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6022 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6023 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6024 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6025 | } else { |
| 6026 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 6027 | u64 bytes; |
| 6028 | |
| 6029 | /* |
| 6030 | * This is tricky, but first we need to figure out how much we |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6031 | * freed from any free-ers that occurred during this |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6032 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 6033 | * before we dropped our lock, and then call the free for the |
| 6034 | * number of bytes that were freed while we were trying our |
| 6035 | * reservation. |
| 6036 | */ |
| 6037 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 6038 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 6039 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 6040 | |
| 6041 | |
| 6042 | /* |
| 6043 | * Now we need to see how much we would have freed had we not |
| 6044 | * been making this reservation and our ->csum_bytes were not |
| 6045 | * artificially inflated. |
| 6046 | */ |
| 6047 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 6048 | bytes = csum_bytes - orig_csum_bytes; |
| 6049 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 6050 | |
| 6051 | /* |
| 6052 | * Now reset ->csum_bytes to what it should be. If bytes is |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6053 | * more than to_free then we would have freed more space had we |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6054 | * not had an artificially high ->csum_bytes, so we need to free |
| 6055 | * the remainder. If bytes is the same or less then we don't |
| 6056 | * need to do anything, the other free-ers did the correct |
| 6057 | * thing. |
| 6058 | */ |
| 6059 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 6060 | if (bytes > to_free) |
| 6061 | to_free = bytes - to_free; |
| 6062 | else |
| 6063 | to_free = 0; |
| 6064 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6065 | spin_unlock(&BTRFS_I(inode)->lock); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 6066 | if (dropped) |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6067 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
| 6068 | |
| 6069 | if (to_free) { |
| 6070 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 6071 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 6072 | btrfs_ino(inode), to_free, 0); |
| 6073 | } |
| 6074 | if (delalloc_lock) |
| 6075 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 6076 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6077 | } |
| 6078 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6079 | /** |
| 6080 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 6081 | * @inode: the inode to release the reservation for |
| 6082 | * @num_bytes: the number of bytes we're releasing |
| 6083 | * |
| 6084 | * This will release the metadata reservation for an inode. This can be called |
| 6085 | * once we complete IO for a given set of bytes to release their metadata |
| 6086 | * reservations. |
| 6087 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6088 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 6089 | { |
| 6090 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6091 | u64 to_free = 0; |
| 6092 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6093 | |
| 6094 | num_bytes = ALIGN(num_bytes, root->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6095 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6096 | dropped = drop_outstanding_extent(inode, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6097 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 6098 | if (num_bytes) |
| 6099 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6100 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6101 | if (dropped > 0) |
| 6102 | to_free += btrfs_calc_trans_metadata_size(root, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6103 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 6104 | if (btrfs_is_testing(root->fs_info)) |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 6105 | return; |
| 6106 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6107 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 6108 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 6109 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6110 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 6111 | to_free); |
| 6112 | } |
| 6113 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6114 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6115 | * btrfs_delalloc_reserve_space - reserve data and metadata space for |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6116 | * delalloc |
| 6117 | * @inode: inode we're writing to |
| 6118 | * @start: start range we are writing to |
| 6119 | * @len: how long the range we are writing to |
| 6120 | * |
| 6121 | * TODO: This function will finally replace old btrfs_delalloc_reserve_space() |
| 6122 | * |
| 6123 | * This will do the following things |
| 6124 | * |
| 6125 | * o reserve space in data space info for num bytes |
| 6126 | * and reserve precious corresponding qgroup space |
| 6127 | * (Done in check_data_free_space) |
| 6128 | * |
| 6129 | * o reserve space for metadata space, based on the number of outstanding |
| 6130 | * extents and how much csums will be needed |
| 6131 | * also reserve metadata space in a per root over-reserve method. |
| 6132 | * o add to the inodes->delalloc_bytes |
| 6133 | * o add it to the fs_info's delalloc inodes list. |
| 6134 | * (Above 3 all done in delalloc_reserve_metadata) |
| 6135 | * |
| 6136 | * Return 0 for success |
| 6137 | * Return <0 for error(-ENOSPC or -EQUOT) |
| 6138 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6139 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6140 | { |
| 6141 | int ret; |
| 6142 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6143 | ret = btrfs_check_data_free_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6144 | if (ret < 0) |
| 6145 | return ret; |
| 6146 | ret = btrfs_delalloc_reserve_metadata(inode, len); |
| 6147 | if (ret < 0) |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6148 | btrfs_free_reserved_data_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6149 | return ret; |
| 6150 | } |
| 6151 | |
| 6152 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6153 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6154 | * @inode: inode we're releasing space for |
| 6155 | * @start: start position of the space already reserved |
| 6156 | * @len: the len of the space already reserved |
| 6157 | * |
| 6158 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 6159 | * called in the case that we don't need the metadata AND data reservations |
| 6160 | * anymore. So if there is an error or we insert an inline extent. |
| 6161 | * |
| 6162 | * This function will release the metadata space that was not used and will |
| 6163 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 6164 | * list if there are no delalloc bytes left. |
| 6165 | * Also it will handle the qgroup reserved space. |
| 6166 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6167 | void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6168 | { |
| 6169 | btrfs_delalloc_release_metadata(inode, len); |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6170 | btrfs_free_reserved_data_space(inode, start, len); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6171 | } |
| 6172 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6173 | static int update_block_group(struct btrfs_trans_handle *trans, |
| 6174 | struct btrfs_root *root, u64 bytenr, |
| 6175 | u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6176 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6177 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6178 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6179 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6180 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6181 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6182 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 6183 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6184 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6185 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6186 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6187 | if (alloc) |
| 6188 | old_val += num_bytes; |
| 6189 | else |
| 6190 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6191 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6192 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6193 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6194 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6195 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6196 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6197 | return -ENOENT; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6198 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 6199 | BTRFS_BLOCK_GROUP_RAID1 | |
| 6200 | BTRFS_BLOCK_GROUP_RAID10)) |
| 6201 | factor = 2; |
| 6202 | else |
| 6203 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 6204 | /* |
| 6205 | * If this block group has free space cache written out, we |
| 6206 | * need to make sure to load it if we are removing space. This |
| 6207 | * is because we need the unpinning stage to actually add the |
| 6208 | * space back to the block group, otherwise we will leak space. |
| 6209 | */ |
| 6210 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6211 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6212 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6213 | byte_in_group = bytenr - cache->key.objectid; |
| 6214 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6215 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6216 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6217 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6218 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6219 | if (btrfs_test_opt(root->fs_info, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6220 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 6221 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 6222 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6223 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6224 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6225 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6226 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6227 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6228 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6229 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6230 | cache->space_info->bytes_used += num_bytes; |
| 6231 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6232 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6233 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6234 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6235 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6236 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6237 | cache->pinned += num_bytes; |
| 6238 | cache->space_info->bytes_pinned += num_bytes; |
| 6239 | cache->space_info->bytes_used -= num_bytes; |
| 6240 | cache->space_info->disk_used -= num_bytes * factor; |
| 6241 | spin_unlock(&cache->lock); |
| 6242 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 6243 | |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6244 | trace_btrfs_space_reservation(root->fs_info, "pinned", |
| 6245 | cache->space_info->flags, |
| 6246 | num_bytes, 1); |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6247 | set_extent_dirty(info->pinned_extents, |
| 6248 | bytenr, bytenr + num_bytes - 1, |
| 6249 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6250 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 6251 | |
| 6252 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 6253 | if (list_empty(&cache->dirty_list)) { |
| 6254 | list_add_tail(&cache->dirty_list, |
| 6255 | &trans->transaction->dirty_bgs); |
| 6256 | trans->transaction->num_dirty_bgs++; |
| 6257 | btrfs_get_block_group(cache); |
| 6258 | } |
| 6259 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 6260 | |
Filipe Manana | 036a934 | 2015-11-23 15:25:16 +0000 | [diff] [blame] | 6261 | /* |
| 6262 | * No longer have used bytes in this block group, queue it for |
| 6263 | * deletion. We do this after adding the block group to the |
| 6264 | * dirty list to avoid races between cleaner kthread and space |
| 6265 | * cache writeout. |
| 6266 | */ |
| 6267 | if (!alloc && old_val == 0) { |
| 6268 | spin_lock(&info->unused_bgs_lock); |
| 6269 | if (list_empty(&cache->bg_list)) { |
| 6270 | btrfs_get_block_group(cache); |
| 6271 | list_add_tail(&cache->bg_list, |
| 6272 | &info->unused_bgs); |
| 6273 | } |
| 6274 | spin_unlock(&info->unused_bgs_lock); |
| 6275 | } |
| 6276 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6277 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6278 | total -= num_bytes; |
| 6279 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6280 | } |
| 6281 | return 0; |
| 6282 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6283 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6284 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 6285 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6286 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6287 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6288 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 6289 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 6290 | bytenr = root->fs_info->first_logical_byte; |
| 6291 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 6292 | |
| 6293 | if (bytenr < (u64)-1) |
| 6294 | return bytenr; |
| 6295 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6296 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 6297 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6298 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6299 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6300 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6301 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6302 | |
| 6303 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6304 | } |
| 6305 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6306 | static int pin_down_extent(struct btrfs_root *root, |
| 6307 | struct btrfs_block_group_cache *cache, |
| 6308 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6309 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6310 | spin_lock(&cache->space_info->lock); |
| 6311 | spin_lock(&cache->lock); |
| 6312 | cache->pinned += num_bytes; |
| 6313 | cache->space_info->bytes_pinned += num_bytes; |
| 6314 | if (reserved) { |
| 6315 | cache->reserved -= num_bytes; |
| 6316 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6317 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6318 | spin_unlock(&cache->lock); |
| 6319 | spin_unlock(&cache->space_info->lock); |
| 6320 | |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6321 | trace_btrfs_space_reservation(root->fs_info, "pinned", |
| 6322 | cache->space_info->flags, num_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6323 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 6324 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6325 | return 0; |
| 6326 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6327 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6328 | /* |
| 6329 | * this function must be called within transaction |
| 6330 | */ |
| 6331 | int btrfs_pin_extent(struct btrfs_root *root, |
| 6332 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6333 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6334 | struct btrfs_block_group_cache *cache; |
| 6335 | |
| 6336 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6337 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6338 | |
| 6339 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 6340 | |
| 6341 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6342 | return 0; |
| 6343 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6344 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6345 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6346 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6347 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 6348 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6349 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6350 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6351 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6352 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6353 | |
| 6354 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6355 | if (!cache) |
| 6356 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6357 | |
| 6358 | /* |
| 6359 | * pull in the free space cache (if any) so that our pin |
| 6360 | * removes the free space from the cache. We have load_only set |
| 6361 | * to one because the slow code to read in the free extents does check |
| 6362 | * the pinned extents. |
| 6363 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6364 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6365 | |
| 6366 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 6367 | |
| 6368 | /* 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] | 6369 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6370 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6371 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6372 | } |
| 6373 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6374 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 6375 | { |
| 6376 | int ret; |
| 6377 | struct btrfs_block_group_cache *block_group; |
| 6378 | struct btrfs_caching_control *caching_ctl; |
| 6379 | |
| 6380 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 6381 | if (!block_group) |
| 6382 | return -EINVAL; |
| 6383 | |
| 6384 | cache_block_group(block_group, 0); |
| 6385 | caching_ctl = get_caching_control(block_group); |
| 6386 | |
| 6387 | if (!caching_ctl) { |
| 6388 | /* Logic error */ |
| 6389 | BUG_ON(!block_group_cache_done(block_group)); |
| 6390 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 6391 | } else { |
| 6392 | mutex_lock(&caching_ctl->mutex); |
| 6393 | |
| 6394 | if (start >= caching_ctl->progress) { |
| 6395 | ret = add_excluded_extent(root, start, num_bytes); |
| 6396 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 6397 | ret = btrfs_remove_free_space(block_group, |
| 6398 | start, num_bytes); |
| 6399 | } else { |
| 6400 | num_bytes = caching_ctl->progress - start; |
| 6401 | ret = btrfs_remove_free_space(block_group, |
| 6402 | start, num_bytes); |
| 6403 | if (ret) |
| 6404 | goto out_lock; |
| 6405 | |
| 6406 | num_bytes = (start + num_bytes) - |
| 6407 | caching_ctl->progress; |
| 6408 | start = caching_ctl->progress; |
| 6409 | ret = add_excluded_extent(root, start, num_bytes); |
| 6410 | } |
| 6411 | out_lock: |
| 6412 | mutex_unlock(&caching_ctl->mutex); |
| 6413 | put_caching_control(caching_ctl); |
| 6414 | } |
| 6415 | btrfs_put_block_group(block_group); |
| 6416 | return ret; |
| 6417 | } |
| 6418 | |
| 6419 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 6420 | struct extent_buffer *eb) |
| 6421 | { |
| 6422 | struct btrfs_file_extent_item *item; |
| 6423 | struct btrfs_key key; |
| 6424 | int found_type; |
| 6425 | int i; |
| 6426 | |
| 6427 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 6428 | return 0; |
| 6429 | |
| 6430 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 6431 | btrfs_item_key_to_cpu(eb, &key, i); |
| 6432 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 6433 | continue; |
| 6434 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 6435 | found_type = btrfs_file_extent_type(eb, item); |
| 6436 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 6437 | continue; |
| 6438 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 6439 | continue; |
| 6440 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 6441 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 6442 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 6443 | } |
| 6444 | |
| 6445 | return 0; |
| 6446 | } |
| 6447 | |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6448 | static void |
| 6449 | btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6450 | { |
| 6451 | atomic_inc(&bg->reservations); |
| 6452 | } |
| 6453 | |
| 6454 | void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info, |
| 6455 | const u64 start) |
| 6456 | { |
| 6457 | struct btrfs_block_group_cache *bg; |
| 6458 | |
| 6459 | bg = btrfs_lookup_block_group(fs_info, start); |
| 6460 | ASSERT(bg); |
| 6461 | if (atomic_dec_and_test(&bg->reservations)) |
| 6462 | wake_up_atomic_t(&bg->reservations); |
| 6463 | btrfs_put_block_group(bg); |
| 6464 | } |
| 6465 | |
| 6466 | static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a) |
| 6467 | { |
| 6468 | schedule(); |
| 6469 | return 0; |
| 6470 | } |
| 6471 | |
| 6472 | void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6473 | { |
| 6474 | struct btrfs_space_info *space_info = bg->space_info; |
| 6475 | |
| 6476 | ASSERT(bg->ro); |
| 6477 | |
| 6478 | if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA)) |
| 6479 | return; |
| 6480 | |
| 6481 | /* |
| 6482 | * Our block group is read only but before we set it to read only, |
| 6483 | * some task might have had allocated an extent from it already, but it |
| 6484 | * has not yet created a respective ordered extent (and added it to a |
| 6485 | * root's list of ordered extents). |
| 6486 | * Therefore wait for any task currently allocating extents, since the |
| 6487 | * block group's reservations counter is incremented while a read lock |
| 6488 | * on the groups' semaphore is held and decremented after releasing |
| 6489 | * the read access on that semaphore and creating the ordered extent. |
| 6490 | */ |
| 6491 | down_write(&space_info->groups_sem); |
| 6492 | up_write(&space_info->groups_sem); |
| 6493 | |
| 6494 | wait_on_atomic_t(&bg->reservations, |
| 6495 | btrfs_wait_bg_reservations_atomic_t, |
| 6496 | TASK_UNINTERRUPTIBLE); |
| 6497 | } |
| 6498 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6499 | /** |
| 6500 | * btrfs_update_reserved_bytes - update the block_group and space info counters |
| 6501 | * @cache: The cache we are manipulating |
| 6502 | * @num_bytes: The number of bytes in question |
| 6503 | * @reserve: One of the reservation enums |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6504 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6505 | * |
| 6506 | * This is called by the allocator when it reserves space, or by somebody who is |
| 6507 | * freeing space that was never actually used on disk. For example if you |
| 6508 | * reserve some space for a new leaf in transaction A and before transaction A |
| 6509 | * commits you free that leaf, you call this with reserve set to 0 in order to |
| 6510 | * clear the reservation. |
| 6511 | * |
| 6512 | * Metadata reservations should be called with RESERVE_ALLOC so we do the proper |
| 6513 | * ENOSPC accounting. For data we handle the reservation through clearing the |
| 6514 | * delalloc bits in the io_tree. We have to do this since we could end up |
| 6515 | * allocating less disk space for the amount of data we have reserved in the |
| 6516 | * case of compression. |
| 6517 | * |
| 6518 | * If this is a reservation and the block group has become read only we cannot |
| 6519 | * make the reservation and return -EAGAIN, otherwise this function always |
| 6520 | * succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6521 | */ |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6522 | static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6523 | u64 num_bytes, int reserve, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6524 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6525 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6526 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6527 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6528 | spin_lock(&space_info->lock); |
| 6529 | spin_lock(&cache->lock); |
| 6530 | if (reserve != RESERVE_FREE) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6531 | if (cache->ro) { |
| 6532 | ret = -EAGAIN; |
| 6533 | } else { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6534 | cache->reserved += num_bytes; |
| 6535 | space_info->bytes_reserved += num_bytes; |
| 6536 | if (reserve == RESERVE_ALLOC) { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6537 | trace_btrfs_space_reservation(cache->fs_info, |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 6538 | "space_info", space_info->flags, |
| 6539 | num_bytes, 0); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6540 | space_info->bytes_may_use -= num_bytes; |
| 6541 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6542 | |
| 6543 | if (delalloc) |
| 6544 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6545 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6546 | } else { |
| 6547 | if (cache->ro) |
| 6548 | space_info->bytes_readonly += num_bytes; |
| 6549 | cache->reserved -= num_bytes; |
| 6550 | space_info->bytes_reserved -= num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6551 | |
| 6552 | if (delalloc) |
| 6553 | cache->delalloc_bytes -= num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6554 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6555 | spin_unlock(&cache->lock); |
| 6556 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6557 | return ret; |
| 6558 | } |
| 6559 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6560 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6561 | struct btrfs_root *root) |
| 6562 | { |
| 6563 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6564 | struct btrfs_caching_control *next; |
| 6565 | struct btrfs_caching_control *caching_ctl; |
| 6566 | struct btrfs_block_group_cache *cache; |
| 6567 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6568 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6569 | |
| 6570 | list_for_each_entry_safe(caching_ctl, next, |
| 6571 | &fs_info->caching_block_groups, list) { |
| 6572 | cache = caching_ctl->block_group; |
| 6573 | if (block_group_cache_done(cache)) { |
| 6574 | cache->last_byte_to_unpin = (u64)-1; |
| 6575 | list_del_init(&caching_ctl->list); |
| 6576 | put_caching_control(caching_ctl); |
| 6577 | } else { |
| 6578 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6579 | } |
| 6580 | } |
| 6581 | |
| 6582 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6583 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6584 | else |
| 6585 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6586 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6587 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6588 | |
| 6589 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6590 | } |
| 6591 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6592 | /* |
| 6593 | * Returns the free cluster for the given space info and sets empty_cluster to |
| 6594 | * what it should be based on the mount options. |
| 6595 | */ |
| 6596 | static struct btrfs_free_cluster * |
| 6597 | fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info, |
| 6598 | u64 *empty_cluster) |
| 6599 | { |
| 6600 | struct btrfs_free_cluster *ret = NULL; |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6601 | bool ssd = btrfs_test_opt(root->fs_info, SSD); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6602 | |
| 6603 | *empty_cluster = 0; |
| 6604 | if (btrfs_mixed_space_info(space_info)) |
| 6605 | return ret; |
| 6606 | |
| 6607 | if (ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6608 | *empty_cluster = SZ_2M; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6609 | if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 6610 | ret = &root->fs_info->meta_alloc_cluster; |
| 6611 | if (!ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6612 | *empty_cluster = SZ_64K; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6613 | } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) { |
| 6614 | ret = &root->fs_info->data_alloc_cluster; |
| 6615 | } |
| 6616 | |
| 6617 | return ret; |
| 6618 | } |
| 6619 | |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6620 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end, |
| 6621 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6622 | { |
| 6623 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6624 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6625 | struct btrfs_space_info *space_info; |
| 6626 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6627 | struct btrfs_free_cluster *cluster = NULL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6628 | u64 len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6629 | u64 total_unpinned = 0; |
| 6630 | u64 empty_cluster = 0; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6631 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6632 | |
| 6633 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6634 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6635 | if (!cache || |
| 6636 | start >= cache->key.objectid + cache->key.offset) { |
| 6637 | if (cache) |
| 6638 | btrfs_put_block_group(cache); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6639 | total_unpinned = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6640 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6641 | BUG_ON(!cache); /* Logic error */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6642 | |
| 6643 | cluster = fetch_cluster_info(root, |
| 6644 | cache->space_info, |
| 6645 | &empty_cluster); |
| 6646 | empty_cluster <<= 1; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6647 | } |
| 6648 | |
| 6649 | len = cache->key.objectid + cache->key.offset - start; |
| 6650 | len = min(len, end + 1 - start); |
| 6651 | |
| 6652 | if (start < cache->last_byte_to_unpin) { |
| 6653 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6654 | if (return_free_space) |
| 6655 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6656 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6657 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6658 | start += len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6659 | total_unpinned += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6660 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6661 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6662 | /* |
| 6663 | * If this space cluster has been marked as fragmented and we've |
| 6664 | * unpinned enough in this block group to potentially allow a |
| 6665 | * cluster to be created inside of it go ahead and clear the |
| 6666 | * fragmented check. |
| 6667 | */ |
| 6668 | if (cluster && cluster->fragmented && |
| 6669 | total_unpinned > empty_cluster) { |
| 6670 | spin_lock(&cluster->lock); |
| 6671 | cluster->fragmented = 0; |
| 6672 | spin_unlock(&cluster->lock); |
| 6673 | } |
| 6674 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6675 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6676 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6677 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6678 | space_info->bytes_pinned -= len; |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6679 | |
| 6680 | trace_btrfs_space_reservation(fs_info, "pinned", |
| 6681 | space_info->flags, len, 0); |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 6682 | space_info->max_extent_size = 0; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 6683 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6684 | if (cache->ro) { |
| 6685 | space_info->bytes_readonly += len; |
| 6686 | readonly = true; |
| 6687 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6688 | spin_unlock(&cache->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6689 | if (!readonly && return_free_space && |
| 6690 | global_rsv->space_info == space_info) { |
| 6691 | u64 to_add = len; |
| 6692 | WARN_ON(!return_free_space); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6693 | spin_lock(&global_rsv->lock); |
| 6694 | if (!global_rsv->full) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6695 | to_add = min(len, global_rsv->size - |
| 6696 | global_rsv->reserved); |
| 6697 | global_rsv->reserved += to_add; |
| 6698 | space_info->bytes_may_use += to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6699 | if (global_rsv->reserved >= global_rsv->size) |
| 6700 | global_rsv->full = 1; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6701 | trace_btrfs_space_reservation(fs_info, |
| 6702 | "space_info", |
| 6703 | space_info->flags, |
| 6704 | to_add, 1); |
| 6705 | len -= to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6706 | } |
| 6707 | spin_unlock(&global_rsv->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6708 | /* Add to any tickets we may have */ |
| 6709 | if (len) |
| 6710 | space_info_add_new_bytes(fs_info, space_info, |
| 6711 | len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6712 | } |
| 6713 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6714 | } |
| 6715 | |
| 6716 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6717 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6718 | return 0; |
| 6719 | } |
| 6720 | |
| 6721 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6722 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6723 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6724 | struct btrfs_fs_info *fs_info = root->fs_info; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6725 | struct btrfs_block_group_cache *block_group, *tmp; |
| 6726 | struct list_head *deleted_bgs; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6727 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6728 | u64 start; |
| 6729 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6730 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6731 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6732 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6733 | unpin = &fs_info->freed_extents[1]; |
| 6734 | else |
| 6735 | unpin = &fs_info->freed_extents[0]; |
| 6736 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6737 | while (!trans->aborted) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6738 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6739 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 6740 | EXTENT_DIRTY, NULL); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6741 | if (ret) { |
| 6742 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6743 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6744 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6745 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6746 | if (btrfs_test_opt(root->fs_info, DISCARD)) |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6747 | ret = btrfs_discard_extent(root, start, |
| 6748 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6749 | |
David Sterba | af6f8f6 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 6750 | clear_extent_dirty(unpin, start, end); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6751 | unpin_extent_range(root, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6752 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6753 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6754 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6755 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6756 | /* |
| 6757 | * Transaction is finished. We don't need the lock anymore. We |
| 6758 | * do need to clean up the block groups in case of a transaction |
| 6759 | * abort. |
| 6760 | */ |
| 6761 | deleted_bgs = &trans->transaction->deleted_bgs; |
| 6762 | list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) { |
| 6763 | u64 trimmed = 0; |
| 6764 | |
| 6765 | ret = -EROFS; |
| 6766 | if (!trans->aborted) |
| 6767 | ret = btrfs_discard_extent(root, |
| 6768 | block_group->key.objectid, |
| 6769 | block_group->key.offset, |
| 6770 | &trimmed); |
| 6771 | |
| 6772 | list_del_init(&block_group->bg_list); |
| 6773 | btrfs_put_block_group_trimming(block_group); |
| 6774 | btrfs_put_block_group(block_group); |
| 6775 | |
| 6776 | if (ret) { |
| 6777 | const char *errstr = btrfs_decode_error(ret); |
| 6778 | btrfs_warn(fs_info, |
| 6779 | "Discard failed while removing blockgroup: errno=%d %s\n", |
| 6780 | ret, errstr); |
| 6781 | } |
| 6782 | } |
| 6783 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6784 | return 0; |
| 6785 | } |
| 6786 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6787 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 6788 | u64 owner, u64 root_objectid) |
| 6789 | { |
| 6790 | struct btrfs_space_info *space_info; |
| 6791 | u64 flags; |
| 6792 | |
| 6793 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 6794 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 6795 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 6796 | else |
| 6797 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 6798 | } else { |
| 6799 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 6800 | } |
| 6801 | |
| 6802 | space_info = __find_space_info(fs_info, flags); |
| 6803 | BUG_ON(!space_info); /* Logic bug */ |
| 6804 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 6805 | } |
| 6806 | |
| 6807 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6808 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 6809 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6810 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6811 | u64 root_objectid, u64 owner_objectid, |
| 6812 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6813 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6814 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6815 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6816 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6817 | struct btrfs_fs_info *info = root->fs_info; |
| 6818 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6819 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6820 | struct btrfs_extent_item *ei; |
| 6821 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6822 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6823 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6824 | int extent_slot = 0; |
| 6825 | int found_extent = 0; |
| 6826 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6827 | u32 item_size; |
| 6828 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6829 | u64 bytenr = node->bytenr; |
| 6830 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6831 | int last_ref = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6832 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 6833 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6834 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6835 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6836 | if (!path) |
| 6837 | return -ENOMEM; |
| 6838 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 6839 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6840 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6841 | |
| 6842 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6843 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6844 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6845 | if (is_data) |
| 6846 | skinny_metadata = 0; |
| 6847 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6848 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 6849 | bytenr, num_bytes, parent, |
| 6850 | root_objectid, owner_objectid, |
| 6851 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6852 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6853 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6854 | while (extent_slot >= 0) { |
| 6855 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6856 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6857 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6858 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6859 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6860 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6861 | found_extent = 1; |
| 6862 | break; |
| 6863 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6864 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6865 | key.offset == owner_objectid) { |
| 6866 | found_extent = 1; |
| 6867 | break; |
| 6868 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6869 | if (path->slots[0] - extent_slot > 5) |
| 6870 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6871 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6872 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6873 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6874 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 6875 | if (found_extent && item_size < sizeof(*ei)) |
| 6876 | found_extent = 0; |
| 6877 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6878 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6879 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6880 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6881 | NULL, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6882 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6883 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6884 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6885 | goto out; |
| 6886 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6887 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6888 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6889 | |
| 6890 | key.objectid = bytenr; |
| 6891 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6892 | key.offset = num_bytes; |
| 6893 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6894 | if (!is_data && skinny_metadata) { |
| 6895 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6896 | key.offset = owner_objectid; |
| 6897 | } |
| 6898 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6899 | ret = btrfs_search_slot(trans, extent_root, |
| 6900 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6901 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6902 | /* |
| 6903 | * Couldn't find our skinny metadata item, |
| 6904 | * see if we have ye olde extent item. |
| 6905 | */ |
| 6906 | path->slots[0]--; |
| 6907 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6908 | path->slots[0]); |
| 6909 | if (key.objectid == bytenr && |
| 6910 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6911 | key.offset == num_bytes) |
| 6912 | ret = 0; |
| 6913 | } |
| 6914 | |
| 6915 | if (ret > 0 && skinny_metadata) { |
| 6916 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6917 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6918 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6919 | key.offset = num_bytes; |
| 6920 | btrfs_release_path(path); |
| 6921 | ret = btrfs_search_slot(trans, extent_root, |
| 6922 | &key, path, -1, 1); |
| 6923 | } |
| 6924 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6925 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6926 | 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] | 6927 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6928 | if (ret > 0) |
| 6929 | btrfs_print_leaf(extent_root, |
| 6930 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6931 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6932 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6933 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6934 | goto out; |
| 6935 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6936 | extent_slot = path->slots[0]; |
| 6937 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6938 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6939 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6940 | btrfs_err(info, |
| 6941 | "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] | 6942 | bytenr, parent, root_objectid, owner_objectid, |
| 6943 | owner_offset); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6944 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 6945 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6946 | } else { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6947 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6948 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6949 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6950 | |
| 6951 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6952 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6953 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6954 | if (item_size < sizeof(*ei)) { |
| 6955 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 6956 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 6957 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6958 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6959 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6960 | goto out; |
| 6961 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6962 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6963 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6964 | path->leave_spinning = 1; |
| 6965 | |
| 6966 | key.objectid = bytenr; |
| 6967 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6968 | key.offset = num_bytes; |
| 6969 | |
| 6970 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 6971 | -1, 1); |
| 6972 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6973 | 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] | 6974 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6975 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 6976 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6977 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6978 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6979 | goto out; |
| 6980 | } |
| 6981 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6982 | extent_slot = path->slots[0]; |
| 6983 | leaf = path->nodes[0]; |
| 6984 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6985 | } |
| 6986 | #endif |
| 6987 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6988 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 6989 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6990 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 6991 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6992 | struct btrfs_tree_block_info *bi; |
| 6993 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 6994 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 6995 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6996 | } |
| 6997 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6998 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 6999 | if (refs < refs_to_drop) { |
| 7000 | 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] | 7001 | "for bytenr %Lu", refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7002 | ret = -EINVAL; |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7003 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7004 | goto out; |
| 7005 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7006 | refs -= refs_to_drop; |
| 7007 | |
| 7008 | if (refs > 0) { |
| 7009 | if (extent_op) |
| 7010 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 7011 | /* |
| 7012 | * In the case of inline back ref, reference count will |
| 7013 | * be updated by remove_extent_backref |
| 7014 | */ |
| 7015 | if (iref) { |
| 7016 | BUG_ON(!found_extent); |
| 7017 | } else { |
| 7018 | btrfs_set_extent_refs(leaf, ei, refs); |
| 7019 | btrfs_mark_buffer_dirty(leaf); |
| 7020 | } |
| 7021 | if (found_extent) { |
| 7022 | ret = remove_extent_backref(trans, extent_root, path, |
| 7023 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7024 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7025 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7026 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7027 | goto out; |
| 7028 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7029 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7030 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 7031 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7032 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7033 | if (found_extent) { |
| 7034 | BUG_ON(is_data && refs_to_drop != |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 7035 | extent_data_ref_count(path, iref)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7036 | if (iref) { |
| 7037 | BUG_ON(path->slots[0] != extent_slot); |
| 7038 | } else { |
| 7039 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 7040 | path->slots[0] = extent_slot; |
| 7041 | num_to_del = 2; |
| 7042 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 7043 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7044 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7045 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7046 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 7047 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7048 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7049 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7050 | goto out; |
| 7051 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7052 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 7053 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7054 | if (is_data) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 7055 | ret = btrfs_del_csums(trans, root, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7056 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7057 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7058 | goto out; |
| 7059 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 7060 | } |
| 7061 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7062 | ret = add_to_free_space_tree(trans, root->fs_info, bytenr, |
| 7063 | num_bytes); |
| 7064 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7065 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7066 | goto out; |
| 7067 | } |
| 7068 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 7069 | ret = update_block_group(trans, root, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7070 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7071 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7072 | goto out; |
| 7073 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7074 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7075 | btrfs_release_path(path); |
| 7076 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7077 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7078 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7079 | return ret; |
| 7080 | } |
| 7081 | |
| 7082 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7083 | * 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] | 7084 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 7085 | * a given extent, and if there are no other delayed refs to be processed, it |
| 7086 | * removes it from the tree. |
| 7087 | */ |
| 7088 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 7089 | struct btrfs_root *root, u64 bytenr) |
| 7090 | { |
| 7091 | struct btrfs_delayed_ref_head *head; |
| 7092 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7093 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7094 | |
| 7095 | delayed_refs = &trans->transaction->delayed_refs; |
| 7096 | spin_lock(&delayed_refs->lock); |
| 7097 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 7098 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7099 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7100 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7101 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 7102 | if (!list_empty(&head->ref_list)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7103 | goto out; |
| 7104 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7105 | if (head->extent_op) { |
| 7106 | if (!head->must_insert_reserved) |
| 7107 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7108 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7109 | head->extent_op = NULL; |
| 7110 | } |
| 7111 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7112 | /* |
| 7113 | * waiting for the lock here would deadlock. If someone else has it |
| 7114 | * locked they are already in the process of dropping it anyway |
| 7115 | */ |
| 7116 | if (!mutex_trylock(&head->mutex)) |
| 7117 | goto out; |
| 7118 | |
| 7119 | /* |
| 7120 | * at this point we have a head with no other entries. Go |
| 7121 | * ahead and process it. |
| 7122 | */ |
| 7123 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 7124 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7125 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7126 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7127 | |
| 7128 | /* |
| 7129 | * we don't take a ref on the node because we're removing it from the |
| 7130 | * tree, so we just steal the ref the tree was holding. |
| 7131 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7132 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7133 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7134 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7135 | head->processing = 0; |
| 7136 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7137 | spin_unlock(&delayed_refs->lock); |
| 7138 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7139 | BUG_ON(head->extent_op); |
| 7140 | if (head->must_insert_reserved) |
| 7141 | ret = 1; |
| 7142 | |
| 7143 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7144 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7145 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7146 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7147 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7148 | |
| 7149 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7150 | spin_unlock(&delayed_refs->lock); |
| 7151 | return 0; |
| 7152 | } |
| 7153 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7154 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 7155 | struct btrfs_root *root, |
| 7156 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7157 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7158 | { |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7159 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7160 | int ret; |
| 7161 | |
| 7162 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7163 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 7164 | buf->start, buf->len, |
| 7165 | parent, root->root_key.objectid, |
| 7166 | btrfs_header_level(buf), |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7167 | BTRFS_DROP_DELAYED_REF, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7168 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7169 | } |
| 7170 | |
| 7171 | if (!last_ref) |
| 7172 | return; |
| 7173 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7174 | if (btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7175 | struct btrfs_block_group_cache *cache; |
| 7176 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7177 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 7178 | ret = check_ref_cleanup(trans, root, buf->start); |
| 7179 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7180 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7181 | } |
| 7182 | |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7183 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
| 7184 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7185 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 7186 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7187 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7188 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7189 | } |
| 7190 | |
| 7191 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 7192 | |
| 7193 | btrfs_add_free_space(cache, buf->start, buf->len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7194 | btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7195 | btrfs_put_block_group(cache); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7196 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7197 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7198 | } |
| 7199 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7200 | if (pin) |
| 7201 | add_pinned_bytes(root->fs_info, buf->len, |
| 7202 | btrfs_header_level(buf), |
| 7203 | root->root_key.objectid); |
| 7204 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 7205 | /* |
| 7206 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 7207 | * anymore. |
| 7208 | */ |
| 7209 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7210 | } |
| 7211 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7212 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7213 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 7214 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7215 | u64 owner, u64 offset) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7216 | { |
| 7217 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7218 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7219 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 7220 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7221 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7222 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7223 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 7224 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7225 | /* |
| 7226 | * tree log blocks never actually go into the extent allocation |
| 7227 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7228 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7229 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 7230 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7231 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7232 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7233 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7234 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7235 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 7236 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7237 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7238 | BTRFS_DROP_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7239 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7240 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 7241 | num_bytes, |
| 7242 | parent, root_objectid, owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 7243 | offset, 0, |
| 7244 | BTRFS_DROP_DELAYED_REF, NULL); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7245 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7246 | return ret; |
| 7247 | } |
| 7248 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7249 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7250 | * when we wait for progress in the block group caching, its because |
| 7251 | * our allocation attempt failed at least once. So, we must sleep |
| 7252 | * and let some progress happen before we try again. |
| 7253 | * |
| 7254 | * This function will sleep at least once waiting for new free space to |
| 7255 | * show up, and then it will check the block group free space numbers |
| 7256 | * for our min num_bytes. Another option is to have it go ahead |
| 7257 | * and look in the rbtree for a free extent of a given size, but this |
| 7258 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7259 | * |
| 7260 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 7261 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7262 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7263 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7264 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 7265 | u64 num_bytes) |
| 7266 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7267 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7268 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7269 | caching_ctl = get_caching_control(cache); |
| 7270 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7271 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7272 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7273 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 7274 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7275 | |
| 7276 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7277 | } |
| 7278 | |
| 7279 | static noinline int |
| 7280 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 7281 | { |
| 7282 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7283 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7284 | |
| 7285 | caching_ctl = get_caching_control(cache); |
| 7286 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7287 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7288 | |
| 7289 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7290 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 7291 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7292 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7293 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7294 | } |
| 7295 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7296 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7297 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7298 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7299 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7300 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7301 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7302 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7303 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7304 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7305 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7306 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7307 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7308 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7309 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7310 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7311 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7312 | } |
| 7313 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7314 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7315 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7316 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7317 | } |
| 7318 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7319 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 7320 | [BTRFS_RAID_RAID10] = "raid10", |
| 7321 | [BTRFS_RAID_RAID1] = "raid1", |
| 7322 | [BTRFS_RAID_DUP] = "dup", |
| 7323 | [BTRFS_RAID_RAID0] = "raid0", |
| 7324 | [BTRFS_RAID_SINGLE] = "single", |
| 7325 | [BTRFS_RAID_RAID5] = "raid5", |
| 7326 | [BTRFS_RAID_RAID6] = "raid6", |
| 7327 | }; |
| 7328 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 7329 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7330 | { |
| 7331 | if (type >= BTRFS_NR_RAID_TYPES) |
| 7332 | return NULL; |
| 7333 | |
| 7334 | return btrfs_raid_type_names[type]; |
| 7335 | } |
| 7336 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7337 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7338 | LOOP_CACHING_NOWAIT = 0, |
| 7339 | LOOP_CACHING_WAIT = 1, |
| 7340 | LOOP_ALLOC_CHUNK = 2, |
| 7341 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7342 | }; |
| 7343 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7344 | static inline void |
| 7345 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 7346 | int delalloc) |
| 7347 | { |
| 7348 | if (delalloc) |
| 7349 | down_read(&cache->data_rwsem); |
| 7350 | } |
| 7351 | |
| 7352 | static inline void |
| 7353 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 7354 | int delalloc) |
| 7355 | { |
| 7356 | btrfs_get_block_group(cache); |
| 7357 | if (delalloc) |
| 7358 | down_read(&cache->data_rwsem); |
| 7359 | } |
| 7360 | |
| 7361 | static struct btrfs_block_group_cache * |
| 7362 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 7363 | struct btrfs_free_cluster *cluster, |
| 7364 | int delalloc) |
| 7365 | { |
Sudip Mukherjee | 89771cc | 2016-02-16 13:32:47 +0530 | [diff] [blame] | 7366 | struct btrfs_block_group_cache *used_bg = NULL; |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7367 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7368 | spin_lock(&cluster->refill_lock); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7369 | while (1) { |
| 7370 | used_bg = cluster->block_group; |
| 7371 | if (!used_bg) |
| 7372 | return NULL; |
| 7373 | |
| 7374 | if (used_bg == block_group) |
| 7375 | return used_bg; |
| 7376 | |
| 7377 | btrfs_get_block_group(used_bg); |
| 7378 | |
| 7379 | if (!delalloc) |
| 7380 | return used_bg; |
| 7381 | |
| 7382 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 7383 | return used_bg; |
| 7384 | |
| 7385 | spin_unlock(&cluster->refill_lock); |
| 7386 | |
| 7387 | down_read(&used_bg->data_rwsem); |
| 7388 | |
| 7389 | spin_lock(&cluster->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7390 | if (used_bg == cluster->block_group) |
| 7391 | return used_bg; |
| 7392 | |
| 7393 | up_read(&used_bg->data_rwsem); |
| 7394 | btrfs_put_block_group(used_bg); |
| 7395 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7396 | } |
| 7397 | |
| 7398 | static inline void |
| 7399 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 7400 | int delalloc) |
| 7401 | { |
| 7402 | if (delalloc) |
| 7403 | up_read(&cache->data_rwsem); |
| 7404 | btrfs_put_block_group(cache); |
| 7405 | } |
| 7406 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7407 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7408 | * walks the btree of allocated extents and find a hole of a given size. |
| 7409 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7410 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 7411 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7412 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7413 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7414 | * |
| 7415 | * If there is no suitable free space, we will record the max size of |
| 7416 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7417 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7418 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 7419 | u64 num_bytes, u64 empty_size, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 7420 | u64 hint_byte, struct btrfs_key *ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7421 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7422 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7423 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7424 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7425 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7426 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7427 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7428 | u64 max_extent_size = 0; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7429 | u64 empty_cluster = 0; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7430 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7431 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7432 | int index = __get_raid_index(flags); |
| 7433 | int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ? |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 7434 | RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC; |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7435 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7436 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7437 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7438 | bool have_caching_bg = false; |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7439 | bool orig_have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7440 | bool full_search = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7441 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 7442 | WARN_ON(num_bytes < root->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 7443 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7444 | ins->objectid = 0; |
| 7445 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 7446 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7447 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7448 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7449 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7450 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7451 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7452 | return -ENOSPC; |
| 7453 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7454 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7455 | /* |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7456 | * If our free space is heavily fragmented we may not be able to make |
| 7457 | * big contiguous allocations, so instead of doing the expensive search |
| 7458 | * for free space, simply return ENOSPC with our max_extent_size so we |
| 7459 | * can go ahead and search for a more manageable chunk. |
| 7460 | * |
| 7461 | * If our max_extent_size is large enough for our allocation simply |
| 7462 | * disable clustering since we will likely not be able to find enough |
| 7463 | * space to create a cluster and induce latency trying. |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7464 | */ |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7465 | if (unlikely(space_info->max_extent_size)) { |
| 7466 | spin_lock(&space_info->lock); |
| 7467 | if (space_info->max_extent_size && |
| 7468 | num_bytes > space_info->max_extent_size) { |
| 7469 | ins->offset = space_info->max_extent_size; |
| 7470 | spin_unlock(&space_info->lock); |
| 7471 | return -ENOSPC; |
| 7472 | } else if (space_info->max_extent_size) { |
| 7473 | use_cluster = false; |
| 7474 | } |
| 7475 | spin_unlock(&space_info->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7476 | } |
| 7477 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7478 | last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7479 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7480 | spin_lock(&last_ptr->lock); |
| 7481 | if (last_ptr->block_group) |
| 7482 | hint_byte = last_ptr->window_start; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7483 | if (last_ptr->fragmented) { |
| 7484 | /* |
| 7485 | * We still set window_start so we can keep track of the |
| 7486 | * last place we found an allocation to try and save |
| 7487 | * some time. |
| 7488 | */ |
| 7489 | hint_byte = last_ptr->window_start; |
| 7490 | use_cluster = false; |
| 7491 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7492 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7493 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7494 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7495 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7496 | search_start = max(search_start, hint_byte); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7497 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7498 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 7499 | search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7500 | /* |
| 7501 | * we don't want to use the block group if it doesn't match our |
| 7502 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7503 | * |
| 7504 | * However if we are re-searching with an ideal block group |
| 7505 | * 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] | 7506 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7507 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7508 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7509 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7510 | if (list_empty(&block_group->list) || |
| 7511 | block_group->ro) { |
| 7512 | /* |
| 7513 | * someone is removing this block group, |
| 7514 | * we can't jump into the have_block_group |
| 7515 | * target because our list pointers are not |
| 7516 | * valid |
| 7517 | */ |
| 7518 | btrfs_put_block_group(block_group); |
| 7519 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7520 | } else { |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7521 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7522 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7523 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7524 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7525 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7526 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7527 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7528 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7529 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7530 | have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7531 | if (index == 0 || index == __get_raid_index(flags)) |
| 7532 | full_search = true; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7533 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7534 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 7535 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7536 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7537 | int cached; |
Chris Mason | 8a1413a2 | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 7538 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7539 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7540 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7541 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7542 | /* |
| 7543 | * this can happen if we end up cycling through all the |
| 7544 | * raid types, but we want to make sure we only allocate |
| 7545 | * for the proper type. |
| 7546 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7547 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7548 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 7549 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7550 | BTRFS_BLOCK_GROUP_RAID5 | |
| 7551 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7552 | BTRFS_BLOCK_GROUP_RAID10; |
| 7553 | |
| 7554 | /* |
| 7555 | * if they asked for extra copies and this block group |
| 7556 | * doesn't provide them, bail. This does allow us to |
| 7557 | * fill raid0 from raid1. |
| 7558 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7559 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7560 | goto loop; |
| 7561 | } |
| 7562 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7563 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 7564 | cached = block_group_cache_done(block_group); |
| 7565 | if (unlikely(!cached)) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7566 | have_caching_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 7567 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 7568 | BUG_ON(ret < 0); |
| 7569 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7570 | } |
| 7571 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7572 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 7573 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7574 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7575 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7576 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7577 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7578 | * Ok we want to try and use the cluster allocator, so |
| 7579 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7580 | */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7581 | if (last_ptr && use_cluster) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7582 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7583 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7584 | /* |
| 7585 | * the refill lock keeps out other |
| 7586 | * people trying to start a new cluster |
| 7587 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7588 | used_block_group = btrfs_lock_cluster(block_group, |
| 7589 | last_ptr, |
| 7590 | delalloc); |
| 7591 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7592 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7593 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7594 | if (used_block_group != block_group && |
| 7595 | (used_block_group->ro || |
| 7596 | !block_group_bits(used_block_group, flags))) |
| 7597 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7598 | |
| 7599 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7600 | last_ptr, |
| 7601 | num_bytes, |
| 7602 | used_block_group->key.objectid, |
| 7603 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7604 | if (offset) { |
| 7605 | /* we have a block, we're done */ |
| 7606 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7607 | trace_btrfs_reserve_extent_cluster(root, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 7608 | used_block_group, |
| 7609 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7610 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7611 | btrfs_release_block_group(block_group, |
| 7612 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7613 | block_group = used_block_group; |
| 7614 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7615 | goto checks; |
| 7616 | } |
| 7617 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7618 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7619 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7620 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 7621 | * set up a new clusters, so lets just skip it |
| 7622 | * and let the allocator find whatever block |
| 7623 | * it can find. If we reach this point, we |
| 7624 | * will have tried the cluster allocator |
| 7625 | * plenty of times and not have found |
| 7626 | * anything, so we are likely way too |
| 7627 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7628 | * anything. |
| 7629 | * |
| 7630 | * However, if the cluster is taken from the |
| 7631 | * current block group, release the cluster |
| 7632 | * first, so that we stand a better chance of |
| 7633 | * succeeding in the unclustered |
| 7634 | * allocation. */ |
| 7635 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7636 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7637 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7638 | btrfs_release_block_group(used_block_group, |
| 7639 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7640 | goto unclustered_alloc; |
| 7641 | } |
| 7642 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7643 | /* |
| 7644 | * this cluster didn't work out, free it and |
| 7645 | * start over |
| 7646 | */ |
| 7647 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7648 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7649 | if (used_block_group != block_group) |
| 7650 | btrfs_release_block_group(used_block_group, |
| 7651 | delalloc); |
| 7652 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7653 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 7654 | spin_unlock(&last_ptr->refill_lock); |
| 7655 | goto unclustered_alloc; |
| 7656 | } |
| 7657 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7658 | aligned_cluster = max_t(unsigned long, |
| 7659 | empty_cluster + empty_size, |
| 7660 | block_group->full_stripe_len); |
| 7661 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7662 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7663 | ret = btrfs_find_space_cluster(root, block_group, |
| 7664 | last_ptr, search_start, |
| 7665 | num_bytes, |
| 7666 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7667 | if (ret == 0) { |
| 7668 | /* |
| 7669 | * now pull our allocation out of this |
| 7670 | * cluster |
| 7671 | */ |
| 7672 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7673 | last_ptr, |
| 7674 | num_bytes, |
| 7675 | search_start, |
| 7676 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7677 | if (offset) { |
| 7678 | /* we found one, proceed */ |
| 7679 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7680 | trace_btrfs_reserve_extent_cluster(root, |
| 7681 | block_group, search_start, |
| 7682 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7683 | goto checks; |
| 7684 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7685 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 7686 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7687 | spin_unlock(&last_ptr->refill_lock); |
| 7688 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7689 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7690 | wait_block_group_cache_progress(block_group, |
| 7691 | num_bytes + empty_cluster + empty_size); |
| 7692 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7693 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7694 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7695 | /* |
| 7696 | * at this point we either didn't find a cluster |
| 7697 | * or we weren't able to allocate a block from our |
| 7698 | * cluster. Free the cluster we've been trying |
| 7699 | * to use, and go to the next block group |
| 7700 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7701 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7702 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7703 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7704 | } |
| 7705 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7706 | unclustered_alloc: |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7707 | /* |
| 7708 | * We are doing an unclustered alloc, set the fragmented flag so |
| 7709 | * we don't bother trying to setup a cluster again until we get |
| 7710 | * more space. |
| 7711 | */ |
| 7712 | if (unlikely(last_ptr)) { |
| 7713 | spin_lock(&last_ptr->lock); |
| 7714 | last_ptr->fragmented = 1; |
| 7715 | spin_unlock(&last_ptr->lock); |
| 7716 | } |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7717 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 7718 | if (cached && |
| 7719 | block_group->free_space_ctl->free_space < |
| 7720 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7721 | if (block_group->free_space_ctl->free_space > |
| 7722 | max_extent_size) |
| 7723 | max_extent_size = |
| 7724 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7725 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7726 | goto loop; |
| 7727 | } |
| 7728 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7729 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7730 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7731 | num_bytes, empty_size, |
| 7732 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7733 | /* |
| 7734 | * If we didn't find a chunk, and we haven't failed on this |
| 7735 | * block group before, and this block group is in the middle of |
| 7736 | * caching and we are ok with waiting, then go ahead and wait |
| 7737 | * for progress to be made, and set failed_alloc to true. |
| 7738 | * |
| 7739 | * If failed_alloc is true then we've already waited on this |
| 7740 | * block group once and should move on to the next block group. |
| 7741 | */ |
| 7742 | if (!offset && !failed_alloc && !cached && |
| 7743 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7744 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7745 | num_bytes + empty_size); |
| 7746 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7747 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7748 | } else if (!offset) { |
| 7749 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7750 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7751 | checks: |
David Sterba | 4e54b17 | 2014-06-05 01:39:19 +0200 | [diff] [blame] | 7752 | search_start = ALIGN(offset, root->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7753 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7754 | /* move on to the next group */ |
| 7755 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7756 | block_group->key.objectid + block_group->key.offset) { |
| 7757 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7758 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7759 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7760 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7761 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7762 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7763 | search_start - offset); |
| 7764 | BUG_ON(offset > search_start); |
| 7765 | |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7766 | ret = btrfs_update_reserved_bytes(block_group, num_bytes, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7767 | alloc_type, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7768 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7769 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7770 | goto loop; |
| 7771 | } |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7772 | btrfs_inc_block_group_reservations(block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7773 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7774 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7775 | ins->objectid = search_start; |
| 7776 | ins->offset = num_bytes; |
| 7777 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7778 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 7779 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7780 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7781 | break; |
| 7782 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7783 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7784 | failed_alloc = false; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7785 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7786 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7787 | } |
| 7788 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 7789 | |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7790 | if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg |
| 7791 | && !orig_have_caching_bg) |
| 7792 | orig_have_caching_bg = true; |
| 7793 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7794 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 7795 | goto search; |
| 7796 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7797 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 7798 | goto search; |
| 7799 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7800 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7801 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7802 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7803 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7804 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7805 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7806 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7807 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7808 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7809 | index = 0; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7810 | if (loop == LOOP_CACHING_NOWAIT) { |
| 7811 | /* |
| 7812 | * We want to skip the LOOP_CACHING_WAIT step if we |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 7813 | * don't have any uncached bgs and we've already done a |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7814 | * full search through. |
| 7815 | */ |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7816 | if (orig_have_caching_bg || !full_search) |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7817 | loop = LOOP_CACHING_WAIT; |
| 7818 | else |
| 7819 | loop = LOOP_ALLOC_CHUNK; |
| 7820 | } else { |
| 7821 | loop++; |
| 7822 | } |
| 7823 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7824 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7825 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7826 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7827 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7828 | trans = current->journal_info; |
| 7829 | if (trans) |
| 7830 | exist = 1; |
| 7831 | else |
| 7832 | trans = btrfs_join_transaction(root); |
| 7833 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7834 | if (IS_ERR(trans)) { |
| 7835 | ret = PTR_ERR(trans); |
| 7836 | goto out; |
| 7837 | } |
| 7838 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7839 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7840 | CHUNK_ALLOC_FORCE); |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7841 | |
| 7842 | /* |
| 7843 | * If we can't allocate a new chunk we've already looped |
| 7844 | * through at least once, move on to the NO_EMPTY_SIZE |
| 7845 | * case. |
| 7846 | */ |
| 7847 | if (ret == -ENOSPC) |
| 7848 | loop = LOOP_NO_EMPTY_SIZE; |
| 7849 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7850 | /* |
| 7851 | * Do not bail out on ENOSPC since we |
| 7852 | * can do more things. |
| 7853 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7854 | if (ret < 0 && ret != -ENOSPC) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7855 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7856 | else |
| 7857 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7858 | if (!exist) |
| 7859 | btrfs_end_transaction(trans, root); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7860 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7861 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7862 | } |
| 7863 | |
| 7864 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7865 | /* |
| 7866 | * Don't loop again if we already have no empty_size and |
| 7867 | * no empty_cluster. |
| 7868 | */ |
| 7869 | if (empty_size == 0 && |
| 7870 | empty_cluster == 0) { |
| 7871 | ret = -ENOSPC; |
| 7872 | goto out; |
| 7873 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7874 | empty_size = 0; |
| 7875 | empty_cluster = 0; |
| 7876 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7877 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7878 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7879 | } else if (!ins->objectid) { |
| 7880 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7881 | } else if (ins->objectid) { |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7882 | if (!use_cluster && last_ptr) { |
| 7883 | spin_lock(&last_ptr->lock); |
| 7884 | last_ptr->window_start = ins->objectid; |
| 7885 | spin_unlock(&last_ptr->lock); |
| 7886 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7887 | ret = 0; |
| 7888 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7889 | out: |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7890 | if (ret == -ENOSPC) { |
| 7891 | spin_lock(&space_info->lock); |
| 7892 | space_info->max_extent_size = max_extent_size; |
| 7893 | spin_unlock(&space_info->lock); |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7894 | ins->offset = max_extent_size; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7895 | } |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 7896 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7897 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7898 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7899 | static void dump_space_info(struct btrfs_space_info *info, u64 bytes, |
| 7900 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7901 | { |
| 7902 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7903 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7904 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7905 | spin_lock(&info->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7906 | 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] | 7907 | info->flags, |
| 7908 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
Wang Xiaoguang | 39581a3 | 2016-07-11 19:30:04 +0800 | [diff] [blame] | 7909 | info->bytes_reserved - info->bytes_readonly - |
| 7910 | info->bytes_may_use, (info->full) ? "" : "not "); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7911 | printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, " |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 7912 | "reserved=%llu, may_use=%llu, readonly=%llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7913 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 7914 | info->bytes_reserved, info->bytes_may_use, |
| 7915 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7916 | spin_unlock(&info->lock); |
| 7917 | |
| 7918 | if (!dump_block_groups) |
| 7919 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7920 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7921 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7922 | again: |
| 7923 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7924 | spin_lock(&cache->lock); |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7925 | printk(KERN_INFO "BTRFS: " |
| 7926 | "block group %llu has %llu bytes, " |
| 7927 | "%llu used %llu pinned %llu reserved %s\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7928 | cache->key.objectid, cache->key.offset, |
| 7929 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 7930 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7931 | btrfs_dump_free_space(cache, bytes); |
| 7932 | spin_unlock(&cache->lock); |
| 7933 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7934 | if (++index < BTRFS_NR_RAID_TYPES) |
| 7935 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7936 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7937 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 7938 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7939 | int btrfs_reserve_extent(struct btrfs_root *root, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7940 | u64 num_bytes, u64 min_alloc_size, |
| 7941 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7942 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7943 | { |
Josef Bacik | 36af4e0 | 2015-09-25 16:13:11 -0400 | [diff] [blame] | 7944 | bool final_tried = num_bytes == min_alloc_size; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7945 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7946 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7947 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7948 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 7949 | again: |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 7950 | WARN_ON(num_bytes < root->sectorsize); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7951 | ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7952 | flags, delalloc); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7953 | if (!ret && !is_data) { |
| 7954 | btrfs_dec_block_group_reservations(root->fs_info, |
| 7955 | ins->objectid); |
| 7956 | } else if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7957 | if (!final_tried && ins->offset) { |
| 7958 | num_bytes = min(num_bytes >> 1, ins->offset); |
Zach Brown | 24542bf | 2012-11-16 00:04:43 +0000 | [diff] [blame] | 7959 | num_bytes = round_down(num_bytes, root->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7960 | num_bytes = max(num_bytes, min_alloc_size); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7961 | if (num_bytes == min_alloc_size) |
| 7962 | final_tried = true; |
| 7963 | goto again; |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 7964 | } else if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7965 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7966 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7967 | sinfo = __find_space_info(root->fs_info, flags); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7968 | btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7969 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 7970 | if (sinfo) |
| 7971 | dump_space_info(sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7972 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7973 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7974 | |
| 7975 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7976 | } |
| 7977 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7978 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7979 | u64 start, u64 len, |
| 7980 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7981 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7982 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 7983 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7984 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7985 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 7986 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7987 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7988 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7989 | return -ENOSPC; |
| 7990 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 7991 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7992 | if (pin) |
| 7993 | pin_down_extent(root, cache, start, len, 1); |
| 7994 | else { |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 7995 | if (btrfs_test_opt(root->fs_info, DISCARD)) |
Filipe Manana | dcc82f4 | 2015-03-23 14:07:40 +0000 | [diff] [blame] | 7996 | ret = btrfs_discard_extent(root, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 7997 | btrfs_add_free_space(cache, start, len); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7998 | btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc); |
Josef Bacik | 31bada7 | 2016-03-25 13:25:58 -0400 | [diff] [blame] | 7999 | trace_btrfs_reserved_extent_free(root, start, len); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8000 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 8001 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8002 | btrfs_put_block_group(cache); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8003 | return ret; |
| 8004 | } |
| 8005 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8006 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8007 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8008 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8009 | return __btrfs_free_reserved_extent(root, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8010 | } |
| 8011 | |
| 8012 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 8013 | u64 start, u64 len) |
| 8014 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8015 | return __btrfs_free_reserved_extent(root, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8016 | } |
| 8017 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8018 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 8019 | struct btrfs_root *root, |
| 8020 | u64 parent, u64 root_objectid, |
| 8021 | u64 flags, u64 owner, u64 offset, |
| 8022 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8023 | { |
| 8024 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8025 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8026 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8027 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8028 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8029 | struct extent_buffer *leaf; |
| 8030 | int type; |
| 8031 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 8032 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8033 | if (parent > 0) |
| 8034 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 8035 | else |
| 8036 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 8037 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8038 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8039 | |
| 8040 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8041 | if (!path) |
| 8042 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8043 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 8044 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8045 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8046 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8047 | if (ret) { |
| 8048 | btrfs_free_path(path); |
| 8049 | return ret; |
| 8050 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8051 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8052 | leaf = path->nodes[0]; |
| 8053 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8054 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8055 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 8056 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8057 | btrfs_set_extent_flags(leaf, extent_item, |
| 8058 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8059 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8060 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 8061 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 8062 | if (parent > 0) { |
| 8063 | struct btrfs_shared_data_ref *ref; |
| 8064 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 8065 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8066 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 8067 | } else { |
| 8068 | struct btrfs_extent_data_ref *ref; |
| 8069 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 8070 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 8071 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 8072 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 8073 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 8074 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8075 | |
| 8076 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8077 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 8078 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8079 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8080 | ins->offset); |
| 8081 | if (ret) |
| 8082 | return ret; |
| 8083 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 8084 | ret = update_block_group(trans, root, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8085 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8086 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8087 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 8088 | BUG(); |
| 8089 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 8090 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8091 | return ret; |
| 8092 | } |
| 8093 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8094 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 8095 | struct btrfs_root *root, |
| 8096 | u64 parent, u64 root_objectid, |
| 8097 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8098 | int level, struct btrfs_key *ins) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8099 | { |
| 8100 | int ret; |
| 8101 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 8102 | struct btrfs_extent_item *extent_item; |
| 8103 | struct btrfs_tree_block_info *block_info; |
| 8104 | struct btrfs_extent_inline_ref *iref; |
| 8105 | struct btrfs_path *path; |
| 8106 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8107 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 8108 | u64 num_bytes = ins->offset; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8109 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 8110 | SKINNY_METADATA); |
| 8111 | |
| 8112 | if (!skinny_metadata) |
| 8113 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8114 | |
| 8115 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8116 | if (!path) { |
| 8117 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8118 | root->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8119 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8120 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8121 | |
| 8122 | path->leave_spinning = 1; |
| 8123 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8124 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8125 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 8126 | btrfs_free_path(path); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8127 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8128 | root->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8129 | return ret; |
| 8130 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8131 | |
| 8132 | leaf = path->nodes[0]; |
| 8133 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 8134 | struct btrfs_extent_item); |
| 8135 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 8136 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8137 | btrfs_set_extent_flags(leaf, extent_item, |
| 8138 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8139 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8140 | if (skinny_metadata) { |
| 8141 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8142 | num_bytes = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8143 | } else { |
| 8144 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 8145 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 8146 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 8147 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 8148 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8149 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8150 | if (parent > 0) { |
| 8151 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 8152 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8153 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 8154 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8155 | } else { |
| 8156 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8157 | BTRFS_TREE_BLOCK_REF_KEY); |
| 8158 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 8159 | } |
| 8160 | |
| 8161 | btrfs_mark_buffer_dirty(leaf); |
| 8162 | btrfs_free_path(path); |
| 8163 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8164 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8165 | num_bytes); |
| 8166 | if (ret) |
| 8167 | return ret; |
| 8168 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 8169 | ret = update_block_group(trans, root, ins->objectid, root->nodesize, |
| 8170 | 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8171 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8172 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8173 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8174 | BUG(); |
| 8175 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 8176 | |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8177 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8178 | return ret; |
| 8179 | } |
| 8180 | |
| 8181 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 8182 | struct btrfs_root *root, |
| 8183 | u64 root_objectid, u64 owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8184 | u64 offset, u64 ram_bytes, |
| 8185 | struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8186 | { |
| 8187 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 8188 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8189 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 8190 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8191 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 8192 | ins->offset, 0, |
| 8193 | root_objectid, owner, offset, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8194 | ram_bytes, BTRFS_ADD_DELAYED_EXTENT, |
| 8195 | NULL); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8196 | return ret; |
| 8197 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8198 | |
| 8199 | /* |
| 8200 | * this is used by the tree logging recovery code. It records that |
| 8201 | * an extent has been allocated and makes sure to clear the free |
| 8202 | * space cache bits as well |
| 8203 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8204 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 8205 | struct btrfs_root *root, |
| 8206 | u64 root_objectid, u64 owner, u64 offset, |
| 8207 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8208 | { |
| 8209 | int ret; |
| 8210 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8211 | |
| 8212 | /* |
| 8213 | * Mixed block groups will exclude before processing the log so we only |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 8214 | * need to do the exclude dance if this fs isn't mixed. |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8215 | */ |
| 8216 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 8217 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 8218 | if (ret) |
| 8219 | return ret; |
| 8220 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8221 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8222 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8223 | if (!block_group) |
| 8224 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8225 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 8226 | ret = btrfs_update_reserved_bytes(block_group, ins->offset, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8227 | RESERVE_ALLOC_NO_ACCOUNT, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8228 | BUG_ON(ret); /* logic error */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8229 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 8230 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 8231 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8232 | return ret; |
| 8233 | } |
| 8234 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 8235 | static struct extent_buffer * |
| 8236 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8237 | u64 bytenr, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8238 | { |
| 8239 | struct extent_buffer *buf; |
| 8240 | |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 8241 | buf = btrfs_find_create_tree_block(root, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8242 | if (IS_ERR(buf)) |
| 8243 | return buf; |
| 8244 | |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8245 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 8246 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8247 | btrfs_tree_lock(buf); |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8248 | clean_tree_block(trans, root->fs_info, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 8249 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8250 | |
| 8251 | btrfs_set_lock_blocking(buf); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 8252 | set_extent_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8253 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8254 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8255 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8256 | /* |
| 8257 | * we allow two log transactions at a time, use different |
| 8258 | * EXENT bit to differentiate dirty pages. |
| 8259 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8260 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8261 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 8262 | buf->start + buf->len - 1, GFP_NOFS); |
| 8263 | else |
| 8264 | set_extent_new(&root->dirty_log_pages, buf->start, |
David Sterba | 3744dbe | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 8265 | buf->start + buf->len - 1); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8266 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8267 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8268 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 8269 | buf->start + buf->len - 1, GFP_NOFS); |
| 8270 | } |
Jeff Mahoney | 64c1292 | 2016-06-08 00:36:38 -0400 | [diff] [blame] | 8271 | trans->dirty = true; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8272 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8273 | return buf; |
| 8274 | } |
| 8275 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8276 | static struct btrfs_block_rsv * |
| 8277 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 8278 | struct btrfs_root *root, u32 blocksize) |
| 8279 | { |
| 8280 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 8281 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8282 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8283 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8284 | |
| 8285 | block_rsv = get_block_rsv(trans, root); |
| 8286 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8287 | if (unlikely(block_rsv->size == 0)) |
| 8288 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8289 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8290 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 8291 | if (!ret) |
| 8292 | return block_rsv; |
| 8293 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8294 | if (block_rsv->failfast) |
| 8295 | return ERR_PTR(ret); |
| 8296 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8297 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 8298 | global_updated = true; |
| 8299 | update_global_block_rsv(root->fs_info); |
| 8300 | goto again; |
| 8301 | } |
| 8302 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 8303 | if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8304 | static DEFINE_RATELIMIT_STATE(_rs, |
| 8305 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 8306 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 8307 | if (__ratelimit(&_rs)) |
| 8308 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8309 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8310 | } |
| 8311 | try_reserve: |
| 8312 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 8313 | BTRFS_RESERVE_NO_FLUSH); |
| 8314 | if (!ret) |
| 8315 | return block_rsv; |
| 8316 | /* |
| 8317 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8318 | * the global reserve if its space type is the same as the global |
| 8319 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8320 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8321 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 8322 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8323 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 8324 | if (!ret) |
| 8325 | return global_rsv; |
| 8326 | } |
| 8327 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8328 | } |
| 8329 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8330 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 8331 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8332 | { |
| 8333 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8334 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8335 | } |
| 8336 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8337 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8338 | * finds a free extent and does all the dirty work required for allocation |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8339 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8340 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 8341 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
| 8342 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8343 | u64 parent, u64 root_objectid, |
| 8344 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8345 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8346 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 8347 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8348 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8349 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8350 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8351 | u64 flags = 0; |
| 8352 | int ret; |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 8353 | u32 blocksize = root->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8354 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 8355 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8356 | |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8357 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 8358 | if (btrfs_is_testing(root->fs_info)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8359 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8360 | level); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8361 | if (!IS_ERR(buf)) |
| 8362 | root->alloc_bytenr += blocksize; |
| 8363 | return buf; |
| 8364 | } |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8365 | #endif |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 8366 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8367 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 8368 | if (IS_ERR(block_rsv)) |
| 8369 | return ERR_CAST(block_rsv); |
| 8370 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 8371 | ret = btrfs_reserve_extent(root, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8372 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8373 | if (ret) |
| 8374 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 8375 | |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8376 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8377 | if (IS_ERR(buf)) { |
| 8378 | ret = PTR_ERR(buf); |
| 8379 | goto out_free_reserved; |
| 8380 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8381 | |
| 8382 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 8383 | if (parent == 0) |
| 8384 | parent = ins.objectid; |
| 8385 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8386 | } else |
| 8387 | BUG_ON(parent > 0); |
| 8388 | |
| 8389 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 8390 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8391 | if (!extent_op) { |
| 8392 | ret = -ENOMEM; |
| 8393 | goto out_free_buf; |
| 8394 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8395 | if (key) |
| 8396 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 8397 | else |
| 8398 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 8399 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 8400 | extent_op->update_key = skinny_metadata ? false : true; |
| 8401 | extent_op->update_flags = true; |
| 8402 | extent_op->is_data = false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8403 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8404 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8405 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8406 | ins.objectid, ins.offset, |
| 8407 | parent, root_objectid, level, |
| 8408 | BTRFS_ADD_DELAYED_EXTENT, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8409 | extent_op); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8410 | if (ret) |
| 8411 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8412 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8413 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8414 | |
| 8415 | out_free_delayed: |
| 8416 | btrfs_free_delayed_extent_op(extent_op); |
| 8417 | out_free_buf: |
| 8418 | free_extent_buffer(buf); |
| 8419 | out_free_reserved: |
| 8420 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0); |
| 8421 | out_unuse: |
| 8422 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
| 8423 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8424 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 8425 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8426 | struct walk_control { |
| 8427 | u64 refs[BTRFS_MAX_LEVEL]; |
| 8428 | u64 flags[BTRFS_MAX_LEVEL]; |
| 8429 | struct btrfs_key update_progress; |
| 8430 | int stage; |
| 8431 | int level; |
| 8432 | int shared_level; |
| 8433 | int update_ref; |
| 8434 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8435 | int reada_slot; |
| 8436 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8437 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8438 | }; |
| 8439 | |
| 8440 | #define DROP_REFERENCE 1 |
| 8441 | #define UPDATE_BACKREF 2 |
| 8442 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8443 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 8444 | struct btrfs_root *root, |
| 8445 | struct walk_control *wc, |
| 8446 | struct btrfs_path *path) |
| 8447 | { |
| 8448 | u64 bytenr; |
| 8449 | u64 generation; |
| 8450 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8451 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8452 | u32 nritems; |
| 8453 | u32 blocksize; |
| 8454 | struct btrfs_key key; |
| 8455 | struct extent_buffer *eb; |
| 8456 | int ret; |
| 8457 | int slot; |
| 8458 | int nread = 0; |
| 8459 | |
| 8460 | if (path->slots[wc->level] < wc->reada_slot) { |
| 8461 | wc->reada_count = wc->reada_count * 2 / 3; |
| 8462 | wc->reada_count = max(wc->reada_count, 2); |
| 8463 | } else { |
| 8464 | wc->reada_count = wc->reada_count * 3 / 2; |
| 8465 | wc->reada_count = min_t(int, wc->reada_count, |
| 8466 | BTRFS_NODEPTRS_PER_BLOCK(root)); |
| 8467 | } |
| 8468 | |
| 8469 | eb = path->nodes[wc->level]; |
| 8470 | nritems = btrfs_header_nritems(eb); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8471 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8472 | |
| 8473 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 8474 | if (nread >= wc->reada_count) |
| 8475 | break; |
| 8476 | |
| 8477 | cond_resched(); |
| 8478 | bytenr = btrfs_node_blockptr(eb, slot); |
| 8479 | generation = btrfs_node_ptr_generation(eb, slot); |
| 8480 | |
| 8481 | if (slot == path->slots[wc->level]) |
| 8482 | goto reada; |
| 8483 | |
| 8484 | if (wc->stage == UPDATE_BACKREF && |
| 8485 | generation <= root->root_key.offset) |
| 8486 | continue; |
| 8487 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8488 | /* 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] | 8489 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 8490 | wc->level - 1, 1, &refs, |
| 8491 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8492 | /* We don't care about errors in readahead. */ |
| 8493 | if (ret < 0) |
| 8494 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8495 | BUG_ON(refs == 0); |
| 8496 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8497 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8498 | if (refs == 1) |
| 8499 | goto reada; |
| 8500 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8501 | if (wc->level == 1 && |
| 8502 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8503 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8504 | if (!wc->update_ref || |
| 8505 | generation <= root->root_key.offset) |
| 8506 | continue; |
| 8507 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 8508 | ret = btrfs_comp_cpu_keys(&key, |
| 8509 | &wc->update_progress); |
| 8510 | if (ret < 0) |
| 8511 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8512 | } else { |
| 8513 | if (wc->level == 1 && |
| 8514 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8515 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8516 | } |
| 8517 | reada: |
David Sterba | d3e46fe | 2014-06-15 02:04:19 +0200 | [diff] [blame] | 8518 | readahead_tree_block(root, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8519 | nread++; |
| 8520 | } |
| 8521 | wc->reada_slot = slot; |
| 8522 | } |
| 8523 | |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 8524 | /* |
Mark Fasheh | 82bd101 | 2015-11-05 14:38:00 -0800 | [diff] [blame] | 8525 | * These may not be seen by the usual inc/dec ref code so we have to |
| 8526 | * add them here. |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 8527 | */ |
Mark Fasheh | 82bd101 | 2015-11-05 14:38:00 -0800 | [diff] [blame] | 8528 | static int record_one_subtree_extent(struct btrfs_trans_handle *trans, |
| 8529 | struct btrfs_root *root, u64 bytenr, |
| 8530 | u64 num_bytes) |
| 8531 | { |
| 8532 | struct btrfs_qgroup_extent_record *qrecord; |
| 8533 | struct btrfs_delayed_ref_root *delayed_refs; |
| 8534 | |
| 8535 | qrecord = kmalloc(sizeof(*qrecord), GFP_NOFS); |
| 8536 | if (!qrecord) |
| 8537 | return -ENOMEM; |
| 8538 | |
| 8539 | qrecord->bytenr = bytenr; |
| 8540 | qrecord->num_bytes = num_bytes; |
| 8541 | qrecord->old_roots = NULL; |
| 8542 | |
| 8543 | delayed_refs = &trans->transaction->delayed_refs; |
| 8544 | spin_lock(&delayed_refs->lock); |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 8545 | if (btrfs_qgroup_insert_dirty_extent(trans->fs_info, |
Jeff Mahoney | bc07452 | 2016-06-09 17:27:55 -0400 | [diff] [blame] | 8546 | delayed_refs, qrecord)) |
Mark Fasheh | 82bd101 | 2015-11-05 14:38:00 -0800 | [diff] [blame] | 8547 | kfree(qrecord); |
| 8548 | spin_unlock(&delayed_refs->lock); |
| 8549 | |
| 8550 | return 0; |
| 8551 | } |
| 8552 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8553 | static int account_leaf_items(struct btrfs_trans_handle *trans, |
| 8554 | struct btrfs_root *root, |
| 8555 | struct extent_buffer *eb) |
| 8556 | { |
| 8557 | int nr = btrfs_header_nritems(eb); |
Mark Fasheh | 82bd101 | 2015-11-05 14:38:00 -0800 | [diff] [blame] | 8558 | int i, extent_type, ret; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8559 | struct btrfs_key key; |
| 8560 | struct btrfs_file_extent_item *fi; |
| 8561 | u64 bytenr, num_bytes; |
| 8562 | |
Mark Fasheh | 82bd101 | 2015-11-05 14:38:00 -0800 | [diff] [blame] | 8563 | /* We can be called directly from walk_up_proc() */ |
| 8564 | if (!root->fs_info->quota_enabled) |
| 8565 | return 0; |
| 8566 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8567 | for (i = 0; i < nr; i++) { |
| 8568 | btrfs_item_key_to_cpu(eb, &key, i); |
| 8569 | |
| 8570 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 8571 | continue; |
| 8572 | |
| 8573 | fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 8574 | /* filter out non qgroup-accountable extents */ |
| 8575 | extent_type = btrfs_file_extent_type(eb, fi); |
| 8576 | |
| 8577 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) |
| 8578 | continue; |
| 8579 | |
| 8580 | bytenr = btrfs_file_extent_disk_bytenr(eb, fi); |
| 8581 | if (!bytenr) |
| 8582 | continue; |
| 8583 | |
| 8584 | num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi); |
Mark Fasheh | 82bd101 | 2015-11-05 14:38:00 -0800 | [diff] [blame] | 8585 | |
| 8586 | ret = record_one_subtree_extent(trans, root, bytenr, num_bytes); |
| 8587 | if (ret) |
| 8588 | return ret; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8589 | } |
| 8590 | return 0; |
| 8591 | } |
| 8592 | |
| 8593 | /* |
| 8594 | * Walk up the tree from the bottom, freeing leaves and any interior |
| 8595 | * nodes which have had all slots visited. If a node (leaf or |
| 8596 | * interior) is freed, the node above it will have it's slot |
| 8597 | * incremented. The root node will never be freed. |
| 8598 | * |
| 8599 | * At the end of this function, we should have a path which has all |
| 8600 | * slots incremented to the next position for a search. If we need to |
| 8601 | * read a new node it will be NULL and the node above it will have the |
| 8602 | * correct slot selected for a later read. |
| 8603 | * |
| 8604 | * If we increment the root nodes slot counter past the number of |
| 8605 | * elements, 1 is returned to signal completion of the search. |
| 8606 | */ |
| 8607 | static int adjust_slots_upwards(struct btrfs_root *root, |
| 8608 | struct btrfs_path *path, int root_level) |
| 8609 | { |
| 8610 | int level = 0; |
| 8611 | int nr, slot; |
| 8612 | struct extent_buffer *eb; |
| 8613 | |
| 8614 | if (root_level == 0) |
| 8615 | return 1; |
| 8616 | |
| 8617 | while (level <= root_level) { |
| 8618 | eb = path->nodes[level]; |
| 8619 | nr = btrfs_header_nritems(eb); |
| 8620 | path->slots[level]++; |
| 8621 | slot = path->slots[level]; |
| 8622 | if (slot >= nr || level == 0) { |
| 8623 | /* |
| 8624 | * Don't free the root - we will detect this |
| 8625 | * condition after our loop and return a |
| 8626 | * positive value for caller to stop walking the tree. |
| 8627 | */ |
| 8628 | if (level != root_level) { |
| 8629 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
| 8630 | path->locks[level] = 0; |
| 8631 | |
| 8632 | free_extent_buffer(eb); |
| 8633 | path->nodes[level] = NULL; |
| 8634 | path->slots[level] = 0; |
| 8635 | } |
| 8636 | } else { |
| 8637 | /* |
| 8638 | * We have a valid slot to walk back down |
| 8639 | * from. Stop here so caller can process these |
| 8640 | * new nodes. |
| 8641 | */ |
| 8642 | break; |
| 8643 | } |
| 8644 | |
| 8645 | level++; |
| 8646 | } |
| 8647 | |
| 8648 | eb = path->nodes[root_level]; |
| 8649 | if (path->slots[root_level] >= btrfs_header_nritems(eb)) |
| 8650 | return 1; |
| 8651 | |
| 8652 | return 0; |
| 8653 | } |
| 8654 | |
| 8655 | /* |
| 8656 | * root_eb is the subtree root and is locked before this function is called. |
| 8657 | */ |
| 8658 | static int account_shared_subtree(struct btrfs_trans_handle *trans, |
| 8659 | struct btrfs_root *root, |
| 8660 | struct extent_buffer *root_eb, |
| 8661 | u64 root_gen, |
| 8662 | int root_level) |
| 8663 | { |
| 8664 | int ret = 0; |
| 8665 | int level; |
| 8666 | struct extent_buffer *eb = root_eb; |
| 8667 | struct btrfs_path *path = NULL; |
| 8668 | |
| 8669 | BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL); |
| 8670 | BUG_ON(root_eb == NULL); |
| 8671 | |
| 8672 | if (!root->fs_info->quota_enabled) |
| 8673 | return 0; |
| 8674 | |
| 8675 | if (!extent_buffer_uptodate(root_eb)) { |
| 8676 | ret = btrfs_read_buffer(root_eb, root_gen); |
| 8677 | if (ret) |
| 8678 | goto out; |
| 8679 | } |
| 8680 | |
| 8681 | if (root_level == 0) { |
| 8682 | ret = account_leaf_items(trans, root, root_eb); |
| 8683 | goto out; |
| 8684 | } |
| 8685 | |
| 8686 | path = btrfs_alloc_path(); |
| 8687 | if (!path) |
| 8688 | return -ENOMEM; |
| 8689 | |
| 8690 | /* |
| 8691 | * Walk down the tree. Missing extent blocks are filled in as |
| 8692 | * we go. Metadata is accounted every time we read a new |
| 8693 | * extent block. |
| 8694 | * |
| 8695 | * When we reach a leaf, we account for file extent items in it, |
| 8696 | * walk back up the tree (adjusting slot pointers as we go) |
| 8697 | * and restart the search process. |
| 8698 | */ |
| 8699 | extent_buffer_get(root_eb); /* For path */ |
| 8700 | path->nodes[root_level] = root_eb; |
| 8701 | path->slots[root_level] = 0; |
| 8702 | path->locks[root_level] = 0; /* so release_path doesn't try to unlock */ |
| 8703 | walk_down: |
| 8704 | level = root_level; |
| 8705 | while (level >= 0) { |
| 8706 | if (path->nodes[level] == NULL) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8707 | int parent_slot; |
| 8708 | u64 child_gen; |
| 8709 | u64 child_bytenr; |
| 8710 | |
| 8711 | /* We need to get child blockptr/gen from |
| 8712 | * parent before we can read it. */ |
| 8713 | eb = path->nodes[level + 1]; |
| 8714 | parent_slot = path->slots[level + 1]; |
| 8715 | child_bytenr = btrfs_node_blockptr(eb, parent_slot); |
| 8716 | child_gen = btrfs_node_ptr_generation(eb, parent_slot); |
| 8717 | |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 8718 | eb = read_tree_block(root, child_bytenr, child_gen); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8719 | if (IS_ERR(eb)) { |
| 8720 | ret = PTR_ERR(eb); |
| 8721 | goto out; |
| 8722 | } else if (!extent_buffer_uptodate(eb)) { |
Liu Bo | 8635eda | 2015-05-25 17:30:14 +0800 | [diff] [blame] | 8723 | free_extent_buffer(eb); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8724 | ret = -EIO; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8725 | goto out; |
| 8726 | } |
| 8727 | |
| 8728 | path->nodes[level] = eb; |
| 8729 | path->slots[level] = 0; |
| 8730 | |
| 8731 | btrfs_tree_read_lock(eb); |
| 8732 | btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); |
| 8733 | path->locks[level] = BTRFS_READ_LOCK_BLOCKING; |
Mark Fasheh | 82bd101 | 2015-11-05 14:38:00 -0800 | [diff] [blame] | 8734 | |
| 8735 | ret = record_one_subtree_extent(trans, root, child_bytenr, |
| 8736 | root->nodesize); |
| 8737 | if (ret) |
| 8738 | goto out; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8739 | } |
| 8740 | |
| 8741 | if (level == 0) { |
| 8742 | ret = account_leaf_items(trans, root, path->nodes[level]); |
| 8743 | if (ret) |
| 8744 | goto out; |
| 8745 | |
| 8746 | /* Nonzero return here means we completed our search */ |
| 8747 | ret = adjust_slots_upwards(root, path, root_level); |
| 8748 | if (ret) |
| 8749 | break; |
| 8750 | |
| 8751 | /* Restart search with new slots */ |
| 8752 | goto walk_down; |
| 8753 | } |
| 8754 | |
| 8755 | level--; |
| 8756 | } |
| 8757 | |
| 8758 | ret = 0; |
| 8759 | out: |
| 8760 | btrfs_free_path(path); |
| 8761 | |
| 8762 | return ret; |
| 8763 | } |
| 8764 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8765 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8766 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8767 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8768 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 8769 | * back refs for pointers in the block. |
| 8770 | * |
| 8771 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8772 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8773 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 8774 | struct btrfs_root *root, |
| 8775 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8776 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8777 | { |
| 8778 | int level = wc->level; |
| 8779 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8780 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8781 | int ret; |
| 8782 | |
| 8783 | if (wc->stage == UPDATE_BACKREF && |
| 8784 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8785 | return 1; |
| 8786 | |
| 8787 | /* |
| 8788 | * when reference count of tree block is 1, it won't increase |
| 8789 | * again. once full backref flag is set, we never clear it. |
| 8790 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8791 | if (lookup_info && |
| 8792 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8793 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8794 | BUG_ON(!path->locks[level]); |
| 8795 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8796 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8797 | &wc->refs[level], |
| 8798 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8799 | BUG_ON(ret == -ENOMEM); |
| 8800 | if (ret) |
| 8801 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8802 | BUG_ON(wc->refs[level] == 0); |
| 8803 | } |
| 8804 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8805 | if (wc->stage == DROP_REFERENCE) { |
| 8806 | if (wc->refs[level] > 1) |
| 8807 | return 1; |
| 8808 | |
| 8809 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8810 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8811 | path->locks[level] = 0; |
| 8812 | } |
| 8813 | return 0; |
| 8814 | } |
| 8815 | |
| 8816 | /* wc->stage == UPDATE_BACKREF */ |
| 8817 | if (!(wc->flags[level] & flag)) { |
| 8818 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8819 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8820 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8821 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8822 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8823 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8824 | eb->len, flag, |
| 8825 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8826 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8827 | wc->flags[level] |= flag; |
| 8828 | } |
| 8829 | |
| 8830 | /* |
| 8831 | * the block is shared by multiple trees, so it's not good to |
| 8832 | * keep the tree lock |
| 8833 | */ |
| 8834 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8835 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8836 | path->locks[level] = 0; |
| 8837 | } |
| 8838 | return 0; |
| 8839 | } |
| 8840 | |
| 8841 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8842 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8843 | * |
| 8844 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8845 | * reference count of the block pointed to. if the block |
| 8846 | * is shared and we need update back refs for the subtree |
| 8847 | * rooted at the block, this function changes wc->stage to |
| 8848 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8849 | * need to update back, this function drops the reference |
| 8850 | * to the block. |
| 8851 | * |
| 8852 | * NOTE: return value 1 means we should stop walking down. |
| 8853 | */ |
| 8854 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8855 | struct btrfs_root *root, |
| 8856 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8857 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8858 | { |
| 8859 | u64 bytenr; |
| 8860 | u64 generation; |
| 8861 | u64 parent; |
| 8862 | u32 blocksize; |
| 8863 | struct btrfs_key key; |
| 8864 | struct extent_buffer *next; |
| 8865 | int level = wc->level; |
| 8866 | int reada = 0; |
| 8867 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8868 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8869 | |
| 8870 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8871 | path->slots[level]); |
| 8872 | /* |
| 8873 | * if the lower level block was created before the snapshot |
| 8874 | * was created, we know there is no need to update back refs |
| 8875 | * for the subtree |
| 8876 | */ |
| 8877 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8878 | generation <= root->root_key.offset) { |
| 8879 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8880 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8881 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8882 | |
| 8883 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 8884 | blocksize = root->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8885 | |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8886 | next = btrfs_find_tree_block(root->fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8887 | if (!next) { |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 8888 | next = btrfs_find_create_tree_block(root, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8889 | if (IS_ERR(next)) |
| 8890 | return PTR_ERR(next); |
| 8891 | |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8892 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8893 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8894 | reada = 1; |
| 8895 | } |
| 8896 | btrfs_tree_lock(next); |
| 8897 | btrfs_set_lock_blocking(next); |
| 8898 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8899 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8900 | &wc->refs[level - 1], |
| 8901 | &wc->flags[level - 1]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8902 | if (ret < 0) { |
| 8903 | btrfs_tree_unlock(next); |
| 8904 | return ret; |
| 8905 | } |
| 8906 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8907 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 8908 | btrfs_err(root->fs_info, "Missing references."); |
| 8909 | BUG(); |
| 8910 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8911 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8912 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8913 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8914 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8915 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8916 | if (level == 1 && |
| 8917 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8918 | goto skip; |
| 8919 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8920 | if (!wc->update_ref || |
| 8921 | generation <= root->root_key.offset) |
| 8922 | goto skip; |
| 8923 | |
| 8924 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8925 | path->slots[level]); |
| 8926 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8927 | if (ret < 0) |
| 8928 | goto skip; |
| 8929 | |
| 8930 | wc->stage = UPDATE_BACKREF; |
| 8931 | wc->shared_level = level - 1; |
| 8932 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8933 | } else { |
| 8934 | if (level == 1 && |
| 8935 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8936 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8937 | } |
| 8938 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8939 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8940 | btrfs_tree_unlock(next); |
| 8941 | free_extent_buffer(next); |
| 8942 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8943 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8944 | } |
| 8945 | |
| 8946 | if (!next) { |
| 8947 | if (reada && level == 1) |
| 8948 | reada_walk_down(trans, root, wc, path); |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 8949 | next = read_tree_block(root, bytenr, generation); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8950 | if (IS_ERR(next)) { |
| 8951 | return PTR_ERR(next); |
| 8952 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8953 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8954 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8955 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8956 | btrfs_tree_lock(next); |
| 8957 | btrfs_set_lock_blocking(next); |
| 8958 | } |
| 8959 | |
| 8960 | level--; |
| 8961 | BUG_ON(level != btrfs_header_level(next)); |
| 8962 | path->nodes[level] = next; |
| 8963 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8964 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8965 | wc->level = level; |
| 8966 | if (wc->level == 1) |
| 8967 | wc->reada_slot = 0; |
| 8968 | return 0; |
| 8969 | skip: |
| 8970 | wc->refs[level - 1] = 0; |
| 8971 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8972 | if (wc->stage == DROP_REFERENCE) { |
| 8973 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 8974 | parent = path->nodes[level]->start; |
| 8975 | } else { |
| 8976 | BUG_ON(root->root_key.objectid != |
| 8977 | btrfs_header_owner(path->nodes[level])); |
| 8978 | parent = 0; |
| 8979 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8980 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8981 | if (need_account) { |
| 8982 | ret = account_shared_subtree(trans, root, next, |
| 8983 | generation, level - 1); |
| 8984 | if (ret) { |
David Sterba | 9464732 | 2015-10-08 11:01:36 +0200 | [diff] [blame] | 8985 | btrfs_err_rl(root->fs_info, |
| 8986 | "Error " |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8987 | "%d accounting shared subtree. Quota " |
David Sterba | 9464732 | 2015-10-08 11:01:36 +0200 | [diff] [blame] | 8988 | "is out of sync, rescan required.", |
| 8989 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8990 | } |
| 8991 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8992 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8993 | root->root_key.objectid, level - 1, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8994 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8995 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8996 | btrfs_tree_unlock(next); |
| 8997 | free_extent_buffer(next); |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8998 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8999 | return 1; |
| 9000 | } |
| 9001 | |
| 9002 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 9003 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9004 | * |
| 9005 | * when wc->stage == DROP_REFERENCE, this function drops |
| 9006 | * reference count on the block. |
| 9007 | * |
| 9008 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 9009 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 9010 | * to UPDATE_BACKREF previously while processing the block. |
| 9011 | * |
| 9012 | * NOTE: return value 1 means we should stop walking up. |
| 9013 | */ |
| 9014 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 9015 | struct btrfs_root *root, |
| 9016 | struct btrfs_path *path, |
| 9017 | struct walk_control *wc) |
| 9018 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9019 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9020 | int level = wc->level; |
| 9021 | struct extent_buffer *eb = path->nodes[level]; |
| 9022 | u64 parent = 0; |
| 9023 | |
| 9024 | if (wc->stage == UPDATE_BACKREF) { |
| 9025 | BUG_ON(wc->shared_level < level); |
| 9026 | if (level < wc->shared_level) |
| 9027 | goto out; |
| 9028 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9029 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 9030 | if (ret > 0) |
| 9031 | wc->update_ref = 0; |
| 9032 | |
| 9033 | wc->stage = DROP_REFERENCE; |
| 9034 | wc->shared_level = -1; |
| 9035 | path->slots[level] = 0; |
| 9036 | |
| 9037 | /* |
| 9038 | * check reference count again if the block isn't locked. |
| 9039 | * we should start walking down the tree again if reference |
| 9040 | * count is one. |
| 9041 | */ |
| 9042 | if (!path->locks[level]) { |
| 9043 | BUG_ON(level == 0); |
| 9044 | btrfs_tree_lock(eb); |
| 9045 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9046 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9047 | |
| 9048 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9049 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9050 | &wc->refs[level], |
| 9051 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9052 | if (ret < 0) { |
| 9053 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 9054 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9055 | return ret; |
| 9056 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9057 | BUG_ON(wc->refs[level] == 0); |
| 9058 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9059 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 9060 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9061 | return 1; |
| 9062 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9063 | } |
| 9064 | } |
| 9065 | |
| 9066 | /* wc->stage == DROP_REFERENCE */ |
| 9067 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 9068 | |
| 9069 | if (wc->refs[level] == 1) { |
| 9070 | if (level == 0) { |
| 9071 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 9072 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9073 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 9074 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9075 | BUG_ON(ret); /* -ENOMEM */ |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9076 | ret = account_leaf_items(trans, root, eb); |
| 9077 | if (ret) { |
David Sterba | 9464732 | 2015-10-08 11:01:36 +0200 | [diff] [blame] | 9078 | btrfs_err_rl(root->fs_info, |
| 9079 | "error " |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9080 | "%d accounting leaf items. Quota " |
David Sterba | 9464732 | 2015-10-08 11:01:36 +0200 | [diff] [blame] | 9081 | "is out of sync, rescan required.", |
| 9082 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9083 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9084 | } |
| 9085 | /* make block locked assertion in clean_tree_block happy */ |
| 9086 | if (!path->locks[level] && |
| 9087 | btrfs_header_generation(eb) == trans->transid) { |
| 9088 | btrfs_tree_lock(eb); |
| 9089 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9090 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9091 | } |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 9092 | clean_tree_block(trans, root->fs_info, eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9093 | } |
| 9094 | |
| 9095 | if (eb == root->node) { |
| 9096 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 9097 | parent = eb->start; |
| 9098 | else |
| 9099 | BUG_ON(root->root_key.objectid != |
| 9100 | btrfs_header_owner(eb)); |
| 9101 | } else { |
| 9102 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 9103 | parent = path->nodes[level + 1]->start; |
| 9104 | else |
| 9105 | BUG_ON(root->root_key.objectid != |
| 9106 | btrfs_header_owner(path->nodes[level + 1])); |
| 9107 | } |
| 9108 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 9109 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9110 | out: |
| 9111 | wc->refs[level] = 0; |
| 9112 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9113 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9114 | } |
| 9115 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9116 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 9117 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9118 | struct btrfs_path *path, |
| 9119 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9120 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9121 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9122 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9123 | int ret; |
| 9124 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9125 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9126 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9127 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9128 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9129 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9130 | if (level == 0) |
| 9131 | break; |
| 9132 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 9133 | if (path->slots[level] >= |
| 9134 | btrfs_header_nritems(path->nodes[level])) |
| 9135 | break; |
| 9136 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9137 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9138 | if (ret > 0) { |
| 9139 | path->slots[level]++; |
| 9140 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 9141 | } else if (ret < 0) |
| 9142 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9143 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9144 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9145 | return 0; |
| 9146 | } |
| 9147 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9148 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 9149 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9150 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9151 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9152 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9153 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9154 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9155 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9156 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 9157 | while (level < max_level && path->nodes[level]) { |
| 9158 | wc->level = level; |
| 9159 | if (path->slots[level] + 1 < |
| 9160 | btrfs_header_nritems(path->nodes[level])) { |
| 9161 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9162 | return 0; |
| 9163 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9164 | ret = walk_up_proc(trans, root, path, wc); |
| 9165 | if (ret > 0) |
| 9166 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 9167 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9168 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9169 | btrfs_tree_unlock_rw(path->nodes[level], |
| 9170 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9171 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9172 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9173 | free_extent_buffer(path->nodes[level]); |
| 9174 | path->nodes[level] = NULL; |
| 9175 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9176 | } |
| 9177 | } |
| 9178 | return 1; |
| 9179 | } |
| 9180 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9181 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9182 | * drop a subvolume tree. |
| 9183 | * |
| 9184 | * this function traverses the tree freeing any blocks that only |
| 9185 | * referenced by the tree. |
| 9186 | * |
| 9187 | * when a shared tree block is found. this function decreases its |
| 9188 | * reference count by one. if update_ref is true, this function |
| 9189 | * also make sure backrefs for the shared block and all lower level |
| 9190 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9191 | * |
| 9192 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9193 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9194 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9195 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 9196 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9197 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9198 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9199 | struct btrfs_trans_handle *trans; |
| 9200 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9201 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9202 | struct walk_control *wc; |
| 9203 | struct btrfs_key key; |
| 9204 | int err = 0; |
| 9205 | int ret; |
| 9206 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9207 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9208 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9209 | btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid); |
| 9210 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9211 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9212 | if (!path) { |
| 9213 | err = -ENOMEM; |
| 9214 | goto out; |
| 9215 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9216 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9217 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9218 | if (!wc) { |
| 9219 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9220 | err = -ENOMEM; |
| 9221 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9222 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9223 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9224 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9225 | if (IS_ERR(trans)) { |
| 9226 | err = PTR_ERR(trans); |
| 9227 | goto out_free; |
| 9228 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 9229 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9230 | if (block_rsv) |
| 9231 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9232 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9233 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9234 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9235 | path->nodes[level] = btrfs_lock_root_node(root); |
| 9236 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9237 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9238 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9239 | memset(&wc->update_progress, 0, |
| 9240 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9241 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9242 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9243 | memcpy(&wc->update_progress, &key, |
| 9244 | sizeof(wc->update_progress)); |
| 9245 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9246 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9247 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9248 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9249 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 9250 | path->lowest_level = 0; |
| 9251 | if (ret < 0) { |
| 9252 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9253 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9254 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9255 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9256 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9257 | /* |
| 9258 | * unlock our path, this is safe because only this |
| 9259 | * function is allowed to delete this snapshot |
| 9260 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9261 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9262 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9263 | level = btrfs_header_level(root->node); |
| 9264 | while (1) { |
| 9265 | btrfs_tree_lock(path->nodes[level]); |
| 9266 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9267 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9268 | |
| 9269 | ret = btrfs_lookup_extent_info(trans, root, |
| 9270 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9271 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9272 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9273 | if (ret < 0) { |
| 9274 | err = ret; |
| 9275 | goto out_end_trans; |
| 9276 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9277 | BUG_ON(wc->refs[level] == 0); |
| 9278 | |
| 9279 | if (level == root_item->drop_level) |
| 9280 | break; |
| 9281 | |
| 9282 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9283 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9284 | WARN_ON(wc->refs[level] != 1); |
| 9285 | level--; |
| 9286 | } |
| 9287 | } |
| 9288 | |
| 9289 | wc->level = level; |
| 9290 | wc->shared_level = -1; |
| 9291 | wc->stage = DROP_REFERENCE; |
| 9292 | wc->update_ref = update_ref; |
| 9293 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9294 | wc->for_reloc = for_reloc; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9295 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9296 | |
| 9297 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9298 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9299 | ret = walk_down_tree(trans, root, path, wc); |
| 9300 | if (ret < 0) { |
| 9301 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 9302 | break; |
| 9303 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9304 | |
| 9305 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 9306 | if (ret < 0) { |
| 9307 | err = ret; |
| 9308 | break; |
| 9309 | } |
| 9310 | |
| 9311 | if (ret > 0) { |
| 9312 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 9313 | break; |
| 9314 | } |
| 9315 | |
| 9316 | if (wc->stage == DROP_REFERENCE) { |
| 9317 | level = wc->level; |
| 9318 | btrfs_node_key(path->nodes[level], |
| 9319 | &root_item->drop_progress, |
| 9320 | path->slots[level]); |
| 9321 | root_item->drop_level = level; |
| 9322 | } |
| 9323 | |
| 9324 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9325 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 9326 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9327 | ret = btrfs_update_root(trans, tree_root, |
| 9328 | &root->root_key, |
| 9329 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9330 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9331 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9332 | err = ret; |
| 9333 | goto out_end_trans; |
| 9334 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9335 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9336 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9337 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 9338 | pr_debug("BTRFS: drop snapshot early exit\n"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9339 | err = -EAGAIN; |
| 9340 | goto out_free; |
| 9341 | } |
| 9342 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9343 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9344 | if (IS_ERR(trans)) { |
| 9345 | err = PTR_ERR(trans); |
| 9346 | goto out_free; |
| 9347 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9348 | if (block_rsv) |
| 9349 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 9350 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9351 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9352 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9353 | if (err) |
| 9354 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9355 | |
| 9356 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9357 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9358 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9359 | goto out_end_trans; |
| 9360 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9361 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9362 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 9363 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 9364 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9365 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9366 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9367 | err = ret; |
| 9368 | goto out_end_trans; |
| 9369 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 9370 | /* if we fail to delete the orphan item this time |
| 9371 | * around, it'll get picked up the next time. |
| 9372 | * |
| 9373 | * The most common failure here is just -ENOENT. |
| 9374 | */ |
| 9375 | btrfs_del_orphan_item(trans, tree_root, |
| 9376 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9377 | } |
| 9378 | } |
| 9379 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 9380 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Josef Bacik | 2b9dbef | 2015-09-15 10:07:04 -0400 | [diff] [blame] | 9381 | btrfs_add_dropped_root(trans, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9382 | } else { |
| 9383 | free_extent_buffer(root->node); |
| 9384 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 9385 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9386 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9387 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9388 | out_end_trans: |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9389 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9390 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9391 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9392 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9393 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9394 | /* |
| 9395 | * So if we need to stop dropping the snapshot for whatever reason we |
| 9396 | * need to make sure to add it back to the dead root list so that we |
| 9397 | * keep trying to do the work later. This also cleans up roots if we |
| 9398 | * don't have it in the radix (like when we recover after a power fail |
| 9399 | * or unmount) so we don't leak memory. |
| 9400 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 9401 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9402 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 9403 | if (err && err != -EAGAIN) |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 9404 | btrfs_handle_fs_error(root->fs_info, err, NULL); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9405 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9406 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9407 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9408 | /* |
| 9409 | * drop subtree rooted at tree block 'node'. |
| 9410 | * |
| 9411 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9412 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9413 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9414 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 9415 | struct btrfs_root *root, |
| 9416 | struct extent_buffer *node, |
| 9417 | struct extent_buffer *parent) |
| 9418 | { |
| 9419 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9420 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9421 | int level; |
| 9422 | int parent_level; |
| 9423 | int ret = 0; |
| 9424 | int wret; |
| 9425 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9426 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 9427 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9428 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9429 | if (!path) |
| 9430 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9431 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9432 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9433 | if (!wc) { |
| 9434 | btrfs_free_path(path); |
| 9435 | return -ENOMEM; |
| 9436 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9437 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9438 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9439 | parent_level = btrfs_header_level(parent); |
| 9440 | extent_buffer_get(parent); |
| 9441 | path->nodes[parent_level] = parent; |
| 9442 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 9443 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9444 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9445 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9446 | path->nodes[level] = node; |
| 9447 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9448 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9449 | |
| 9450 | wc->refs[parent_level] = 1; |
| 9451 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 9452 | wc->level = level; |
| 9453 | wc->shared_level = -1; |
| 9454 | wc->stage = DROP_REFERENCE; |
| 9455 | wc->update_ref = 0; |
| 9456 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9457 | wc->for_reloc = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9458 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9459 | |
| 9460 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9461 | wret = walk_down_tree(trans, root, path, wc); |
| 9462 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9463 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9464 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9465 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9466 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9467 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9468 | if (wret < 0) |
| 9469 | ret = wret; |
| 9470 | if (wret != 0) |
| 9471 | break; |
| 9472 | } |
| 9473 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9474 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9475 | btrfs_free_path(path); |
| 9476 | return ret; |
| 9477 | } |
| 9478 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9479 | static u64 update_block_group_flags(struct btrfs_root *root, u64 flags) |
| 9480 | { |
| 9481 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9482 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9483 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9484 | /* |
| 9485 | * if restripe for this chunk_type is on pick target profile and |
| 9486 | * return, otherwise do the usual balance |
| 9487 | */ |
| 9488 | stripped = get_restripe_target(root->fs_info, flags); |
| 9489 | if (stripped) |
| 9490 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 9491 | |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 9492 | num_devices = root->fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 9493 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9494 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9495 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9496 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 9497 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9498 | if (num_devices == 1) { |
| 9499 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9500 | stripped = flags & ~stripped; |
| 9501 | |
| 9502 | /* turn raid0 into single device chunks */ |
| 9503 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 9504 | return stripped; |
| 9505 | |
| 9506 | /* turn mirroring into duplication */ |
| 9507 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9508 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9509 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9510 | } else { |
| 9511 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9512 | if (flags & stripped) |
| 9513 | return flags; |
| 9514 | |
| 9515 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9516 | stripped = flags & ~stripped; |
| 9517 | |
| 9518 | /* switch duplicated blocks with raid1 */ |
| 9519 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 9520 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 9521 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9522 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9523 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9524 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9525 | return flags; |
| 9526 | } |
| 9527 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9528 | static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9529 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9530 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9531 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9532 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9533 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9534 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9535 | /* |
| 9536 | * We need some metadata space and system metadata space for |
| 9537 | * allocating chunks in some corner cases until we force to set |
| 9538 | * it to be readonly. |
| 9539 | */ |
| 9540 | if ((sinfo->flags & |
| 9541 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 9542 | !force) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 9543 | min_allocable_bytes = SZ_1M; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9544 | else |
| 9545 | min_allocable_bytes = 0; |
| 9546 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9547 | spin_lock(&sinfo->lock); |
| 9548 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9549 | |
| 9550 | if (cache->ro) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9551 | cache->ro++; |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9552 | ret = 0; |
| 9553 | goto out; |
| 9554 | } |
| 9555 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9556 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 9557 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9558 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9559 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 9560 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 9561 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9562 | sinfo->bytes_readonly += num_bytes; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9563 | cache->ro++; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9564 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9565 | ret = 0; |
| 9566 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9567 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9568 | spin_unlock(&cache->lock); |
| 9569 | spin_unlock(&sinfo->lock); |
| 9570 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9571 | } |
| 9572 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9573 | int btrfs_inc_block_group_ro(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9574 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9575 | |
| 9576 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9577 | struct btrfs_trans_handle *trans; |
| 9578 | u64 alloc_flags; |
| 9579 | int ret; |
| 9580 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9581 | again: |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 9582 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9583 | if (IS_ERR(trans)) |
| 9584 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9585 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9586 | /* |
| 9587 | * we're not allowed to set block groups readonly after the dirty |
| 9588 | * block groups cache has started writing. If it already started, |
| 9589 | * back off and let this transaction commit |
| 9590 | */ |
| 9591 | mutex_lock(&root->fs_info->ro_block_group_mutex); |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 9592 | if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9593 | u64 transid = trans->transid; |
| 9594 | |
| 9595 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
| 9596 | btrfs_end_transaction(trans, root); |
| 9597 | |
| 9598 | ret = btrfs_wait_for_commit(root, transid); |
| 9599 | if (ret) |
| 9600 | return ret; |
| 9601 | goto again; |
| 9602 | } |
| 9603 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9604 | /* |
| 9605 | * if we are changing raid levels, try to allocate a corresponding |
| 9606 | * block group with the new raid level. |
| 9607 | */ |
| 9608 | alloc_flags = update_block_group_flags(root, cache->flags); |
| 9609 | if (alloc_flags != cache->flags) { |
| 9610 | ret = do_chunk_alloc(trans, root, alloc_flags, |
| 9611 | CHUNK_ALLOC_FORCE); |
| 9612 | /* |
| 9613 | * ENOSPC is allowed here, we may have enough space |
| 9614 | * already allocated at the new raid level to |
| 9615 | * carry on |
| 9616 | */ |
| 9617 | if (ret == -ENOSPC) |
| 9618 | ret = 0; |
| 9619 | if (ret < 0) |
| 9620 | goto out; |
| 9621 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9622 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9623 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9624 | if (!ret) |
| 9625 | goto out; |
| 9626 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 9627 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 9628 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9629 | if (ret < 0) |
| 9630 | goto out; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9631 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9632 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9633 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
| 9634 | alloc_flags = update_block_group_flags(root, cache->flags); |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 9635 | lock_chunks(root->fs_info->chunk_root); |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 9636 | check_system_chunk(trans, root, alloc_flags); |
Filipe Manana | a962959 | 2015-05-18 19:11:40 +0100 | [diff] [blame] | 9637 | unlock_chunks(root->fs_info->chunk_root); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9638 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9639 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9640 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9641 | btrfs_end_transaction(trans, root); |
| 9642 | return ret; |
| 9643 | } |
| 9644 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9645 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 9646 | struct btrfs_root *root, u64 type) |
| 9647 | { |
| 9648 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 9649 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 9650 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9651 | } |
| 9652 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9653 | /* |
| 9654 | * 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] | 9655 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9656 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9657 | 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] | 9658 | { |
| 9659 | struct btrfs_block_group_cache *block_group; |
| 9660 | u64 free_bytes = 0; |
| 9661 | int factor; |
| 9662 | |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 9663 | /* It's df, we don't care if it's racy */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9664 | if (list_empty(&sinfo->ro_bgs)) |
| 9665 | return 0; |
| 9666 | |
| 9667 | spin_lock(&sinfo->lock); |
| 9668 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9669 | spin_lock(&block_group->lock); |
| 9670 | |
| 9671 | if (!block_group->ro) { |
| 9672 | spin_unlock(&block_group->lock); |
| 9673 | continue; |
| 9674 | } |
| 9675 | |
| 9676 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9677 | BTRFS_BLOCK_GROUP_RAID10 | |
| 9678 | BTRFS_BLOCK_GROUP_DUP)) |
| 9679 | factor = 2; |
| 9680 | else |
| 9681 | factor = 1; |
| 9682 | |
| 9683 | free_bytes += (block_group->key.offset - |
| 9684 | btrfs_block_group_used(&block_group->item)) * |
| 9685 | factor; |
| 9686 | |
| 9687 | spin_unlock(&block_group->lock); |
| 9688 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9689 | spin_unlock(&sinfo->lock); |
| 9690 | |
| 9691 | return free_bytes; |
| 9692 | } |
| 9693 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9694 | void btrfs_dec_block_group_ro(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9695 | struct btrfs_block_group_cache *cache) |
| 9696 | { |
| 9697 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9698 | u64 num_bytes; |
| 9699 | |
| 9700 | BUG_ON(!cache->ro); |
| 9701 | |
| 9702 | spin_lock(&sinfo->lock); |
| 9703 | spin_lock(&cache->lock); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9704 | if (!--cache->ro) { |
| 9705 | num_bytes = cache->key.offset - cache->reserved - |
| 9706 | cache->pinned - cache->bytes_super - |
| 9707 | btrfs_block_group_used(&cache->item); |
| 9708 | sinfo->bytes_readonly -= num_bytes; |
| 9709 | list_del_init(&cache->ro_list); |
| 9710 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9711 | spin_unlock(&cache->lock); |
| 9712 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9713 | } |
| 9714 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9715 | /* |
| 9716 | * checks to see if its even possible to relocate this block group. |
| 9717 | * |
| 9718 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 9719 | * ok to go ahead and try. |
| 9720 | */ |
| 9721 | int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9722 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9723 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9724 | struct btrfs_space_info *space_info; |
| 9725 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 9726 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9727 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9728 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9729 | u64 dev_min = 1; |
| 9730 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9731 | u64 target; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9732 | int debug; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9733 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9734 | int full = 0; |
| 9735 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9736 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 9737 | debug = btrfs_test_opt(root->fs_info, ENOSPC_DEBUG); |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9738 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9739 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9740 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9741 | /* odd, couldn't find the block group, leave it alone */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9742 | if (!block_group) { |
| 9743 | if (debug) |
| 9744 | btrfs_warn(root->fs_info, |
| 9745 | "can't find block group for bytenr %llu", |
| 9746 | bytenr); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9747 | return -1; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9748 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9749 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9750 | min_free = btrfs_block_group_used(&block_group->item); |
| 9751 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9752 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9753 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9754 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9755 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9756 | space_info = block_group->space_info; |
| 9757 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9758 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9759 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9760 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9761 | /* |
| 9762 | * 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] | 9763 | * relocate it unless we're able to allocate a new chunk below. |
| 9764 | * |
| 9765 | * Otherwise, we need to make sure we have room in the space to handle |
| 9766 | * 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] | 9767 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9768 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9769 | (space_info->bytes_used + space_info->bytes_reserved + |
| 9770 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 9771 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9772 | spin_unlock(&space_info->lock); |
| 9773 | goto out; |
| 9774 | } |
| 9775 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9776 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9777 | /* |
| 9778 | * ok we don't have enough space, but maybe we have free space on our |
| 9779 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9780 | * alloc devices and guess if we have enough space. if this block |
| 9781 | * group is going to be restriped, run checks against the target |
| 9782 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9783 | */ |
| 9784 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 9785 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9786 | /* |
| 9787 | * index: |
| 9788 | * 0: raid10 |
| 9789 | * 1: raid1 |
| 9790 | * 2: dup |
| 9791 | * 3: raid0 |
| 9792 | * 4: single |
| 9793 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9794 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 9795 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 9796 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9797 | } else { |
| 9798 | /* |
| 9799 | * this is just a balance, so if we were marked as full |
| 9800 | * we know there is no space for a new chunk |
| 9801 | */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9802 | if (full) { |
| 9803 | if (debug) |
| 9804 | btrfs_warn(root->fs_info, |
| 9805 | "no space to alloc new chunk for block group %llu", |
| 9806 | block_group->key.objectid); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9807 | goto out; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9808 | } |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9809 | |
| 9810 | index = get_block_group_index(block_group); |
| 9811 | } |
| 9812 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9813 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9814 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9815 | /* Divide by 2 */ |
| 9816 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9817 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9818 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9819 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9820 | /* Multiply by 2 */ |
| 9821 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9822 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9823 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9824 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9825 | } |
| 9826 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9827 | /* We need to do this so that we can look at pending chunks */ |
| 9828 | trans = btrfs_join_transaction(root); |
| 9829 | if (IS_ERR(trans)) { |
| 9830 | ret = PTR_ERR(trans); |
| 9831 | goto out; |
| 9832 | } |
| 9833 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9834 | mutex_lock(&root->fs_info->chunk_mutex); |
| 9835 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9836 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9837 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9838 | /* |
| 9839 | * check to make sure we can actually find a chunk with enough |
| 9840 | * space to fit our block group in. |
| 9841 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9842 | if (device->total_bytes > device->bytes_used + min_free && |
| 9843 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9844 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9845 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9846 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9847 | dev_nr++; |
| 9848 | |
| 9849 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9850 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9851 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9852 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9853 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9854 | } |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9855 | if (debug && ret == -1) |
| 9856 | btrfs_warn(root->fs_info, |
| 9857 | "no space to allocate a new chunk for block group %llu", |
| 9858 | block_group->key.objectid); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9859 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9860 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9861 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9862 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9863 | return ret; |
| 9864 | } |
| 9865 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 9866 | static int find_first_block_group(struct btrfs_root *root, |
| 9867 | struct btrfs_path *path, struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9868 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9869 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9870 | struct btrfs_key found_key; |
| 9871 | struct extent_buffer *leaf; |
| 9872 | int slot; |
| 9873 | |
| 9874 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9875 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9876 | goto out; |
| 9877 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9878 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9879 | slot = path->slots[0]; |
| 9880 | leaf = path->nodes[0]; |
| 9881 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9882 | ret = btrfs_next_leaf(root, path); |
| 9883 | if (ret == 0) |
| 9884 | continue; |
| 9885 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9886 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9887 | break; |
| 9888 | } |
| 9889 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9890 | |
| 9891 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9892 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9893 | struct extent_map_tree *em_tree; |
| 9894 | struct extent_map *em; |
| 9895 | |
| 9896 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9897 | read_lock(&em_tree->lock); |
| 9898 | em = lookup_extent_mapping(em_tree, found_key.objectid, |
| 9899 | found_key.offset); |
| 9900 | read_unlock(&em_tree->lock); |
| 9901 | if (!em) { |
| 9902 | btrfs_err(root->fs_info, |
| 9903 | "logical %llu len %llu found bg but no related chunk", |
| 9904 | found_key.objectid, found_key.offset); |
| 9905 | ret = -ENOENT; |
| 9906 | } else { |
| 9907 | ret = 0; |
| 9908 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9909 | goto out; |
| 9910 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9911 | path->slots[0]++; |
| 9912 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9913 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9914 | return ret; |
| 9915 | } |
| 9916 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9917 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 9918 | { |
| 9919 | struct btrfs_block_group_cache *block_group; |
| 9920 | u64 last = 0; |
| 9921 | |
| 9922 | while (1) { |
| 9923 | struct inode *inode; |
| 9924 | |
| 9925 | block_group = btrfs_lookup_first_block_group(info, last); |
| 9926 | while (block_group) { |
| 9927 | spin_lock(&block_group->lock); |
| 9928 | if (block_group->iref) |
| 9929 | break; |
| 9930 | spin_unlock(&block_group->lock); |
| 9931 | block_group = next_block_group(info->tree_root, |
| 9932 | block_group); |
| 9933 | } |
| 9934 | if (!block_group) { |
| 9935 | if (last == 0) |
| 9936 | break; |
| 9937 | last = 0; |
| 9938 | continue; |
| 9939 | } |
| 9940 | |
| 9941 | inode = block_group->inode; |
| 9942 | block_group->iref = 0; |
| 9943 | block_group->inode = NULL; |
| 9944 | spin_unlock(&block_group->lock); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9945 | ASSERT(block_group->io_ctl.inode == NULL); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9946 | iput(inode); |
| 9947 | last = block_group->key.objectid + block_group->key.offset; |
| 9948 | btrfs_put_block_group(block_group); |
| 9949 | } |
| 9950 | } |
| 9951 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9952 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 9953 | { |
| 9954 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9955 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9956 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9957 | struct rb_node *n; |
| 9958 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9959 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9960 | while (!list_empty(&info->caching_block_groups)) { |
| 9961 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 9962 | struct btrfs_caching_control, list); |
| 9963 | list_del(&caching_ctl->list); |
| 9964 | put_caching_control(caching_ctl); |
| 9965 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9966 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9967 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9968 | spin_lock(&info->unused_bgs_lock); |
| 9969 | while (!list_empty(&info->unused_bgs)) { |
| 9970 | block_group = list_first_entry(&info->unused_bgs, |
| 9971 | struct btrfs_block_group_cache, |
| 9972 | bg_list); |
| 9973 | list_del_init(&block_group->bg_list); |
| 9974 | btrfs_put_block_group(block_group); |
| 9975 | } |
| 9976 | spin_unlock(&info->unused_bgs_lock); |
| 9977 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9978 | spin_lock(&info->block_group_cache_lock); |
| 9979 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 9980 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 9981 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9982 | rb_erase(&block_group->cache_node, |
| 9983 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9984 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9985 | spin_unlock(&info->block_group_cache_lock); |
| 9986 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9987 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9988 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9989 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 9990 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9991 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9992 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9993 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9994 | /* |
| 9995 | * We haven't cached this block group, which means we could |
| 9996 | * possibly have excluded extents on this block group. |
| 9997 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 9998 | if (block_group->cached == BTRFS_CACHE_NO || |
| 9999 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10000 | free_excluded_extents(info->extent_root, block_group); |
| 10001 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10002 | btrfs_remove_free_space_cache(block_group); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 10003 | ASSERT(list_empty(&block_group->dirty_list)); |
| 10004 | ASSERT(list_empty(&block_group->io_list)); |
| 10005 | ASSERT(list_empty(&block_group->bg_list)); |
| 10006 | ASSERT(atomic_read(&block_group->count) == 1); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 10007 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 10008 | |
| 10009 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10010 | } |
| 10011 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10012 | |
| 10013 | /* now that all the block groups are freed, go through and |
| 10014 | * free all the space_info structs. This is only called during |
| 10015 | * the final stages of unmount, and so we know nobody is |
| 10016 | * using them. We call synchronize_rcu() once before we start, |
| 10017 | * just to be on the safe side. |
| 10018 | */ |
| 10019 | synchronize_rcu(); |
| 10020 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 10021 | release_global_block_rsv(info); |
| 10022 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 10023 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10024 | int i; |
| 10025 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10026 | space_info = list_entry(info->space_info.next, |
| 10027 | struct btrfs_space_info, |
| 10028 | list); |
Josef Bacik | d555b6c3 | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 10029 | |
| 10030 | /* |
| 10031 | * Do not hide this behind enospc_debug, this is actually |
| 10032 | * important and indicates a real bug if this happens. |
| 10033 | */ |
| 10034 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 10035 | space_info->bytes_reserved > 0 || |
Josef Bacik | d555b6c3 | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 10036 | space_info->bytes_may_use > 0)) |
| 10037 | dump_space_info(space_info, 0, 0); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10038 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10039 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 10040 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10041 | kobj = space_info->block_group_kobjs[i]; |
| 10042 | space_info->block_group_kobjs[i] = NULL; |
| 10043 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10044 | kobject_del(kobj); |
| 10045 | kobject_put(kobj); |
| 10046 | } |
| 10047 | } |
| 10048 | kobject_del(&space_info->kobj); |
| 10049 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10050 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10051 | return 0; |
| 10052 | } |
| 10053 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10054 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 10055 | struct btrfs_block_group_cache *cache) |
| 10056 | { |
| 10057 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 10058 | bool first = false; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10059 | |
| 10060 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 10061 | if (list_empty(&space_info->block_groups[index])) |
| 10062 | first = true; |
| 10063 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 10064 | up_write(&space_info->groups_sem); |
| 10065 | |
| 10066 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10067 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10068 | int ret; |
| 10069 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10070 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 10071 | if (!rkobj) |
| 10072 | goto out_err; |
| 10073 | rkobj->raid_type = index; |
| 10074 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 10075 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 10076 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10077 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10078 | kobject_put(&rkobj->kobj); |
| 10079 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10080 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10081 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10082 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10083 | |
| 10084 | return; |
| 10085 | out_err: |
| 10086 | pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n"); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10087 | } |
| 10088 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10089 | static struct btrfs_block_group_cache * |
| 10090 | btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size) |
| 10091 | { |
| 10092 | struct btrfs_block_group_cache *cache; |
| 10093 | |
| 10094 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 10095 | if (!cache) |
| 10096 | return NULL; |
| 10097 | |
| 10098 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 10099 | GFP_NOFS); |
| 10100 | if (!cache->free_space_ctl) { |
| 10101 | kfree(cache); |
| 10102 | return NULL; |
| 10103 | } |
| 10104 | |
| 10105 | cache->key.objectid = start; |
| 10106 | cache->key.offset = size; |
| 10107 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 10108 | |
| 10109 | cache->sectorsize = root->sectorsize; |
| 10110 | cache->fs_info = root->fs_info; |
| 10111 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 10112 | &root->fs_info->mapping_tree, |
| 10113 | start); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10114 | set_free_space_tree_thresholds(cache); |
| 10115 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10116 | atomic_set(&cache->count, 1); |
| 10117 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 10118 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10119 | INIT_LIST_HEAD(&cache->list); |
| 10120 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10121 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 10122 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10123 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 10124 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10125 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10126 | atomic_set(&cache->trimming, 0); |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 10127 | mutex_init(&cache->free_space_lock); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10128 | |
| 10129 | return cache; |
| 10130 | } |
| 10131 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10132 | int btrfs_read_block_groups(struct btrfs_root *root) |
| 10133 | { |
| 10134 | struct btrfs_path *path; |
| 10135 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10136 | struct btrfs_block_group_cache *cache; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 10137 | struct btrfs_fs_info *info = root->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10138 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10139 | struct btrfs_key key; |
| 10140 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10141 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10142 | int need_clear = 0; |
| 10143 | u64 cache_gen; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10144 | |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 10145 | root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10146 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10147 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 10148 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10149 | path = btrfs_alloc_path(); |
| 10150 | if (!path) |
| 10151 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 10152 | path->reada = READA_FORWARD; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10153 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10154 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10155 | if (btrfs_test_opt(root->fs_info, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10156 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10157 | need_clear = 1; |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10158 | if (btrfs_test_opt(root->fs_info, CLEAR_CACHE)) |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 10159 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10160 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 10161 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10162 | ret = find_first_block_group(root, path, &key); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10163 | if (ret > 0) |
| 10164 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10165 | if (ret != 0) |
| 10166 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10167 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10168 | leaf = path->nodes[0]; |
| 10169 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10170 | |
| 10171 | cache = btrfs_create_block_group_cache(root, found_key.objectid, |
| 10172 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10173 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10174 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10175 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10176 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10177 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10178 | if (need_clear) { |
| 10179 | /* |
| 10180 | * When we mount with old space cache, we need to |
| 10181 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 10182 | * |
| 10183 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 10184 | * truncate the old free space cache inode and |
| 10185 | * setup a new one. |
| 10186 | * b) Setting 'dirty flag' makes sure that we flush |
| 10187 | * the new space cache info onto disk. |
| 10188 | */ |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10189 | if (btrfs_test_opt(root->fs_info, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10190 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10191 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10192 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10193 | read_extent_buffer(leaf, &cache->item, |
| 10194 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 10195 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10196 | cache->flags = btrfs_block_group_flags(&cache->item); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10197 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10198 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10199 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10200 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10201 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10202 | * We need to exclude the super stripes now so that the space |
| 10203 | * info has super bytes accounted for, otherwise we'll think |
| 10204 | * we have more space than we actually do. |
| 10205 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10206 | ret = exclude_super_stripes(root, cache); |
| 10207 | if (ret) { |
| 10208 | /* |
| 10209 | * We may have excluded something, so call this just in |
| 10210 | * case. |
| 10211 | */ |
| 10212 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10213 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10214 | goto error; |
| 10215 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10216 | |
| 10217 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10218 | * check for two cases, either we are full, and therefore |
| 10219 | * don't need to bother with the caching work since we won't |
| 10220 | * find any space, or we are empty, and we can just add all |
| 10221 | * the space in and be done with it. This saves us _alot_ of |
| 10222 | * time, particularly in the full case. |
| 10223 | */ |
| 10224 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10225 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10226 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10227 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10228 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10229 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10230 | cache->cached = BTRFS_CACHE_FINISHED; |
| 10231 | add_new_free_space(cache, root->fs_info, |
| 10232 | found_key.objectid, |
| 10233 | found_key.objectid + |
| 10234 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10235 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10236 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10237 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10238 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 10239 | if (ret) { |
| 10240 | btrfs_remove_free_space_cache(cache); |
| 10241 | btrfs_put_block_group(cache); |
| 10242 | goto error; |
| 10243 | } |
| 10244 | |
Josef Bacik | c83f8ef | 2016-03-25 13:25:52 -0400 | [diff] [blame] | 10245 | trace_btrfs_add_block_group(root->fs_info, cache, 0); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10246 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 10247 | btrfs_block_group_used(&cache->item), |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10248 | cache->bytes_super, &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10249 | if (ret) { |
| 10250 | btrfs_remove_free_space_cache(cache); |
| 10251 | spin_lock(&info->block_group_cache_lock); |
| 10252 | rb_erase(&cache->cache_node, |
| 10253 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10254 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10255 | spin_unlock(&info->block_group_cache_lock); |
| 10256 | btrfs_put_block_group(cache); |
| 10257 | goto error; |
| 10258 | } |
| 10259 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10260 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10261 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10262 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10263 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 10264 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10265 | if (btrfs_chunk_readonly(root, cache->key.objectid)) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10266 | inc_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10267 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
| 10268 | spin_lock(&info->unused_bgs_lock); |
| 10269 | /* Should always be true but just in case. */ |
| 10270 | if (list_empty(&cache->bg_list)) { |
| 10271 | btrfs_get_block_group(cache); |
| 10272 | list_add_tail(&cache->bg_list, |
| 10273 | &info->unused_bgs); |
| 10274 | } |
| 10275 | spin_unlock(&info->unused_bgs_lock); |
| 10276 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10277 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10278 | |
| 10279 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 10280 | if (!(get_alloc_profile(root, space_info->flags) & |
| 10281 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 10282 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 10283 | BTRFS_BLOCK_GROUP_RAID5 | |
| 10284 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10285 | BTRFS_BLOCK_GROUP_DUP))) |
| 10286 | continue; |
| 10287 | /* |
| 10288 | * avoid allocating from un-mirrored block group if there are |
| 10289 | * mirrored block groups. |
| 10290 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10291 | list_for_each_entry(cache, |
| 10292 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 10293 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10294 | inc_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10295 | list_for_each_entry(cache, |
| 10296 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 10297 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10298 | inc_block_group_ro(cache, 1); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10299 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10300 | |
| 10301 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10302 | ret = 0; |
| 10303 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10304 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10305 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10306 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10307 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10308 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
| 10309 | struct btrfs_root *root) |
| 10310 | { |
| 10311 | struct btrfs_block_group_cache *block_group, *tmp; |
| 10312 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 10313 | struct btrfs_block_group_item item; |
| 10314 | struct btrfs_key key; |
| 10315 | int ret = 0; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10316 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10317 | |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10318 | trans->can_flush_pending_bgs = false; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10319 | list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10320 | if (ret) |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10321 | goto next; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10322 | |
| 10323 | spin_lock(&block_group->lock); |
| 10324 | memcpy(&item, &block_group->item, sizeof(item)); |
| 10325 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10326 | spin_unlock(&block_group->lock); |
| 10327 | |
| 10328 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 10329 | sizeof(item)); |
| 10330 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10331 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 10332 | ret = btrfs_finish_chunk_alloc(trans, extent_root, |
| 10333 | key.objectid, key.offset); |
| 10334 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10335 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10336 | add_block_group_free_space(trans, root->fs_info, block_group); |
| 10337 | /* already aborted the transaction if it failed. */ |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10338 | next: |
| 10339 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10340 | } |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10341 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10342 | } |
| 10343 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10344 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
| 10345 | struct btrfs_root *root, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 10346 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10347 | u64 size) |
| 10348 | { |
| 10349 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10350 | struct btrfs_root *extent_root; |
| 10351 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10352 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10353 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 10354 | btrfs_set_log_full_commit(root->fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 10355 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10356 | cache = btrfs_create_block_group_cache(root, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 10357 | if (!cache) |
| 10358 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10359 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10360 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10361 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10362 | btrfs_set_block_group_flags(&cache->item, type); |
| 10363 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10364 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10365 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10366 | cache->cached = BTRFS_CACHE_FINISHED; |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10367 | cache->needs_free_space = 1; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10368 | ret = exclude_super_stripes(root, cache); |
| 10369 | if (ret) { |
| 10370 | /* |
| 10371 | * We may have excluded something, so call this just in |
| 10372 | * case. |
| 10373 | */ |
| 10374 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10375 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10376 | return ret; |
| 10377 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10378 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10379 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 10380 | chunk_offset + size); |
| 10381 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10382 | free_excluded_extents(root, cache); |
| 10383 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10384 | #ifdef CONFIG_BTRFS_DEBUG |
| 10385 | if (btrfs_should_fragment_free_space(root, cache)) { |
| 10386 | u64 new_bytes_used = size - bytes_used; |
| 10387 | |
| 10388 | bytes_used += new_bytes_used >> 1; |
| 10389 | fragment_free_space(root, cache); |
| 10390 | } |
| 10391 | #endif |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10392 | /* |
| 10393 | * Call to ensure the corresponding space_info object is created and |
| 10394 | * assigned to our block group, but don't update its counters just yet. |
| 10395 | * We want our bg to be added to the rbtree with its ->space_info set. |
| 10396 | */ |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10397 | ret = update_space_info(root->fs_info, cache->flags, 0, 0, 0, |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10398 | &cache->space_info); |
| 10399 | if (ret) { |
| 10400 | btrfs_remove_free_space_cache(cache); |
| 10401 | btrfs_put_block_group(cache); |
| 10402 | return ret; |
| 10403 | } |
| 10404 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10405 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 10406 | if (ret) { |
| 10407 | btrfs_remove_free_space_cache(cache); |
| 10408 | btrfs_put_block_group(cache); |
| 10409 | return ret; |
| 10410 | } |
| 10411 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10412 | /* |
| 10413 | * Now that our block group has its ->space_info set and is inserted in |
| 10414 | * the rbtree, update the space info's counters. |
| 10415 | */ |
Josef Bacik | c83f8ef | 2016-03-25 13:25:52 -0400 | [diff] [blame] | 10416 | trace_btrfs_add_block_group(root->fs_info, cache, 1); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10417 | ret = update_space_info(root->fs_info, cache->flags, size, bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10418 | cache->bytes_super, &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10419 | if (ret) { |
| 10420 | btrfs_remove_free_space_cache(cache); |
| 10421 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 10422 | rb_erase(&cache->cache_node, |
| 10423 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10424 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10425 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 10426 | btrfs_put_block_group(cache); |
| 10427 | return ret; |
| 10428 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 10429 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10430 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10431 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10432 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10433 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10434 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 10435 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10436 | return 0; |
| 10437 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10438 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10439 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 10440 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 10441 | u64 extra_flags = chunk_to_extended(flags) & |
| 10442 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10443 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10444 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10445 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 10446 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 10447 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 10448 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 10449 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 10450 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10451 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10452 | } |
| 10453 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10454 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10455 | struct btrfs_root *root, u64 group_start, |
| 10456 | struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10457 | { |
| 10458 | struct btrfs_path *path; |
| 10459 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10460 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10461 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10462 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10463 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10464 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10465 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10466 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10467 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10468 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10469 | bool remove_em; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10470 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10471 | root = root->fs_info->extent_root; |
| 10472 | |
| 10473 | block_group = btrfs_lookup_block_group(root->fs_info, group_start); |
| 10474 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10475 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10476 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10477 | /* |
| 10478 | * Free the reserved super bytes from this block group before |
| 10479 | * remove it. |
| 10480 | */ |
| 10481 | free_excluded_extents(root, block_group); |
| 10482 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10483 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10484 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10485 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 10486 | BTRFS_BLOCK_GROUP_RAID1 | |
| 10487 | BTRFS_BLOCK_GROUP_RAID10)) |
| 10488 | factor = 2; |
| 10489 | else |
| 10490 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10491 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10492 | /* make sure this block group isn't part of an allocation cluster */ |
| 10493 | cluster = &root->fs_info->data_alloc_cluster; |
| 10494 | spin_lock(&cluster->refill_lock); |
| 10495 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10496 | spin_unlock(&cluster->refill_lock); |
| 10497 | |
| 10498 | /* |
| 10499 | * make sure this block group isn't part of a metadata |
| 10500 | * allocation cluster |
| 10501 | */ |
| 10502 | cluster = &root->fs_info->meta_alloc_cluster; |
| 10503 | spin_lock(&cluster->refill_lock); |
| 10504 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10505 | spin_unlock(&cluster->refill_lock); |
| 10506 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10507 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 10508 | if (!path) { |
| 10509 | ret = -ENOMEM; |
| 10510 | goto out; |
| 10511 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10512 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10513 | /* |
| 10514 | * get the inode first so any iput calls done for the io_list |
| 10515 | * aren't the final iput (no unlinks allowed now) |
| 10516 | */ |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 10517 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10518 | |
| 10519 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 10520 | /* |
| 10521 | * make sure our free spache cache IO is done before remove the |
| 10522 | * free space inode |
| 10523 | */ |
| 10524 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10525 | if (!list_empty(&block_group->io_list)) { |
| 10526 | list_del_init(&block_group->io_list); |
| 10527 | |
| 10528 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 10529 | |
| 10530 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10531 | btrfs_wait_cache_io(root, trans, block_group, |
| 10532 | &block_group->io_ctl, path, |
| 10533 | block_group->key.objectid); |
| 10534 | btrfs_put_block_group(block_group); |
| 10535 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10536 | } |
| 10537 | |
| 10538 | if (!list_empty(&block_group->dirty_list)) { |
| 10539 | list_del_init(&block_group->dirty_list); |
| 10540 | btrfs_put_block_group(block_group); |
| 10541 | } |
| 10542 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10543 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 10544 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10545 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 10546 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 10547 | if (ret) { |
| 10548 | btrfs_add_delayed_iput(inode); |
| 10549 | goto out; |
| 10550 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10551 | clear_nlink(inode); |
| 10552 | /* One for the block groups ref */ |
| 10553 | spin_lock(&block_group->lock); |
| 10554 | if (block_group->iref) { |
| 10555 | block_group->iref = 0; |
| 10556 | block_group->inode = NULL; |
| 10557 | spin_unlock(&block_group->lock); |
| 10558 | iput(inode); |
| 10559 | } else { |
| 10560 | spin_unlock(&block_group->lock); |
| 10561 | } |
| 10562 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 10563 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10564 | } |
| 10565 | |
| 10566 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 10567 | key.offset = block_group->key.objectid; |
| 10568 | key.type = 0; |
| 10569 | |
| 10570 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 10571 | if (ret < 0) |
| 10572 | goto out; |
| 10573 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10574 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10575 | if (ret == 0) { |
| 10576 | ret = btrfs_del_item(trans, tree_root, path); |
| 10577 | if (ret) |
| 10578 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10579 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10580 | } |
| 10581 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 10582 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10583 | rb_erase(&block_group->cache_node, |
| 10584 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 10585 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 10586 | |
| 10587 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 10588 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 10589 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10590 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10591 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10592 | /* |
| 10593 | * we must use list_del_init so people can check to see if they |
| 10594 | * are still on the list after taking the semaphore |
| 10595 | */ |
| 10596 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10597 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10598 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 10599 | block_group->space_info->block_group_kobjs[index] = NULL; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10600 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10601 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10602 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10603 | if (kobj) { |
| 10604 | kobject_del(kobj); |
| 10605 | kobject_put(kobj); |
| 10606 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10607 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10608 | if (block_group->has_caching_ctl) |
| 10609 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10610 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10611 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10612 | if (block_group->has_caching_ctl) { |
| 10613 | down_write(&root->fs_info->commit_root_sem); |
| 10614 | if (!caching_ctl) { |
| 10615 | struct btrfs_caching_control *ctl; |
| 10616 | |
| 10617 | list_for_each_entry(ctl, |
| 10618 | &root->fs_info->caching_block_groups, list) |
| 10619 | if (ctl->block_group == block_group) { |
| 10620 | caching_ctl = ctl; |
| 10621 | atomic_inc(&caching_ctl->count); |
| 10622 | break; |
| 10623 | } |
| 10624 | } |
| 10625 | if (caching_ctl) |
| 10626 | list_del_init(&caching_ctl->list); |
| 10627 | up_write(&root->fs_info->commit_root_sem); |
| 10628 | if (caching_ctl) { |
| 10629 | /* Once for the caching bgs list and once for us. */ |
| 10630 | put_caching_control(caching_ctl); |
| 10631 | put_caching_control(caching_ctl); |
| 10632 | } |
| 10633 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10634 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10635 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10636 | if (!list_empty(&block_group->dirty_list)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10637 | WARN_ON(1); |
| 10638 | } |
| 10639 | if (!list_empty(&block_group->io_list)) { |
| 10640 | WARN_ON(1); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10641 | } |
| 10642 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10643 | btrfs_remove_free_space_cache(block_group); |
| 10644 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10645 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 10646 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10647 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10648 | if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) { |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10649 | WARN_ON(block_group->space_info->total_bytes |
| 10650 | < block_group->key.offset); |
| 10651 | WARN_ON(block_group->space_info->bytes_readonly |
| 10652 | < block_group->key.offset); |
| 10653 | WARN_ON(block_group->space_info->disk_total |
| 10654 | < block_group->key.offset * factor); |
| 10655 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10656 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 10657 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10658 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10659 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10660 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 10661 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10662 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10663 | |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10664 | lock_chunks(root); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 10665 | if (!list_empty(&em->list)) { |
| 10666 | /* We're in the transaction->pending_chunks list. */ |
| 10667 | free_extent_map(em); |
| 10668 | } |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10669 | spin_lock(&block_group->lock); |
| 10670 | block_group->removed = 1; |
| 10671 | /* |
| 10672 | * At this point trimming can't start on this block group, because we |
| 10673 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 10674 | * so no one can't find it anymore and even if someone already got this |
| 10675 | * block group before we removed it from the rbtree, they have already |
| 10676 | * incremented block_group->trimming - if they didn't, they won't find |
| 10677 | * any free space entries because we already removed them all when we |
| 10678 | * called btrfs_remove_free_space_cache(). |
| 10679 | * |
| 10680 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 10681 | * to prevent the same logical address range and physical device space |
| 10682 | * ranges from being reused for a new block group. This is because our |
| 10683 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 10684 | * completely transactionless, so while it is trimming a range the |
| 10685 | * currently running transaction might finish and a new one start, |
| 10686 | * allowing for new block groups to be created that can reuse the same |
| 10687 | * physical device locations unless we take this special care. |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10688 | * |
| 10689 | * There may also be an implicit trim operation if the file system |
| 10690 | * is mounted with -odiscard. The same protections must remain |
| 10691 | * in place until the extents have been discarded completely when |
| 10692 | * the transaction commit has completed. |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10693 | */ |
| 10694 | remove_em = (atomic_read(&block_group->trimming) == 0); |
| 10695 | /* |
| 10696 | * Make sure a trimmer task always sees the em in the pinned_chunks list |
| 10697 | * if it sees block_group->removed == 1 (needs to lock block_group->lock |
| 10698 | * before checking block_group->removed). |
| 10699 | */ |
| 10700 | if (!remove_em) { |
| 10701 | /* |
| 10702 | * Our em might be in trans->transaction->pending_chunks which |
| 10703 | * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks), |
| 10704 | * and so is the fs_info->pinned_chunks list. |
| 10705 | * |
| 10706 | * So at this point we must be holding the chunk_mutex to avoid |
| 10707 | * any races with chunk allocation (more specifically at |
| 10708 | * volumes.c:contains_pending_extent()), to ensure it always |
| 10709 | * sees the em, either in the pending_chunks list or in the |
| 10710 | * pinned_chunks list. |
| 10711 | */ |
| 10712 | list_move_tail(&em->list, &root->fs_info->pinned_chunks); |
| 10713 | } |
| 10714 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10715 | |
| 10716 | if (remove_em) { |
| 10717 | struct extent_map_tree *em_tree; |
| 10718 | |
| 10719 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 10720 | write_lock(&em_tree->lock); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10721 | /* |
| 10722 | * The em might be in the pending_chunks list, so make sure the |
| 10723 | * chunk mutex is locked, since remove_extent_mapping() will |
| 10724 | * delete us from that list. |
| 10725 | */ |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10726 | remove_extent_mapping(em_tree, em); |
| 10727 | write_unlock(&em_tree->lock); |
| 10728 | /* once for the tree */ |
| 10729 | free_extent_map(em); |
| 10730 | } |
| 10731 | |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10732 | unlock_chunks(root); |
| 10733 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10734 | ret = remove_block_group_free_space(trans, root->fs_info, block_group); |
| 10735 | if (ret) |
| 10736 | goto out; |
| 10737 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 10738 | btrfs_put_block_group(block_group); |
| 10739 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10740 | |
| 10741 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 10742 | if (ret > 0) |
| 10743 | ret = -EIO; |
| 10744 | if (ret < 0) |
| 10745 | goto out; |
| 10746 | |
| 10747 | ret = btrfs_del_item(trans, root, path); |
| 10748 | out: |
| 10749 | btrfs_free_path(path); |
| 10750 | return ret; |
| 10751 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10752 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10753 | struct btrfs_trans_handle * |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10754 | btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info, |
| 10755 | const u64 chunk_offset) |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10756 | { |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10757 | struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree; |
| 10758 | struct extent_map *em; |
| 10759 | struct map_lookup *map; |
| 10760 | unsigned int num_items; |
| 10761 | |
| 10762 | read_lock(&em_tree->lock); |
| 10763 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 10764 | read_unlock(&em_tree->lock); |
| 10765 | ASSERT(em && em->start == chunk_offset); |
| 10766 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10767 | /* |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10768 | * We need to reserve 3 + N units from the metadata space info in order |
| 10769 | * to remove a block group (done at btrfs_remove_chunk() and at |
| 10770 | * btrfs_remove_block_group()), which are used for: |
| 10771 | * |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10772 | * 1 unit for adding the free space inode's orphan (located in the tree |
| 10773 | * of tree roots). |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10774 | * 1 unit for deleting the block group item (located in the extent |
| 10775 | * tree). |
| 10776 | * 1 unit for deleting the free space item (located in tree of tree |
| 10777 | * roots). |
| 10778 | * N units for deleting N device extent items corresponding to each |
| 10779 | * stripe (located in the device tree). |
| 10780 | * |
| 10781 | * In order to remove a block group we also need to reserve units in the |
| 10782 | * system space info in order to update the chunk tree (update one or |
| 10783 | * more device items and remove one chunk item), but this is done at |
| 10784 | * btrfs_remove_chunk() through a call to check_system_chunk(). |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10785 | */ |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 10786 | map = em->map_lookup; |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10787 | num_items = 3 + map->num_stripes; |
| 10788 | free_extent_map(em); |
| 10789 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10790 | return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root, |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10791 | num_items, 1); |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10792 | } |
| 10793 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10794 | /* |
| 10795 | * Process the unused_bgs list and remove any that don't have any allocated |
| 10796 | * space inside of them. |
| 10797 | */ |
| 10798 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 10799 | { |
| 10800 | struct btrfs_block_group_cache *block_group; |
| 10801 | struct btrfs_space_info *space_info; |
| 10802 | struct btrfs_root *root = fs_info->extent_root; |
| 10803 | struct btrfs_trans_handle *trans; |
| 10804 | int ret = 0; |
| 10805 | |
| 10806 | if (!fs_info->open) |
| 10807 | return; |
| 10808 | |
| 10809 | spin_lock(&fs_info->unused_bgs_lock); |
| 10810 | while (!list_empty(&fs_info->unused_bgs)) { |
| 10811 | u64 start, end; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10812 | int trimming; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10813 | |
| 10814 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 10815 | struct btrfs_block_group_cache, |
| 10816 | bg_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10817 | list_del_init(&block_group->bg_list); |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10818 | |
| 10819 | space_info = block_group->space_info; |
| 10820 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10821 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 10822 | btrfs_put_block_group(block_group); |
| 10823 | continue; |
| 10824 | } |
| 10825 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10826 | |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10827 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10828 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10829 | /* Don't want to race with allocators so take the groups_sem */ |
| 10830 | down_write(&space_info->groups_sem); |
| 10831 | spin_lock(&block_group->lock); |
| 10832 | if (block_group->reserved || |
| 10833 | btrfs_block_group_used(&block_group->item) || |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10834 | block_group->ro || |
| 10835 | list_is_singular(&block_group->list)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10836 | /* |
| 10837 | * We want to bail if we made new allocations or have |
| 10838 | * outstanding allocations in this block group. We do |
| 10839 | * the ro check in case balance is currently acting on |
| 10840 | * this block group. |
| 10841 | */ |
| 10842 | spin_unlock(&block_group->lock); |
| 10843 | up_write(&space_info->groups_sem); |
| 10844 | goto next; |
| 10845 | } |
| 10846 | spin_unlock(&block_group->lock); |
| 10847 | |
| 10848 | /* We don't want to force the issue, only flip if it's ok. */ |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10849 | ret = inc_block_group_ro(block_group, 0); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10850 | up_write(&space_info->groups_sem); |
| 10851 | if (ret < 0) { |
| 10852 | ret = 0; |
| 10853 | goto next; |
| 10854 | } |
| 10855 | |
| 10856 | /* |
| 10857 | * Want to do this before we do anything else so we can recover |
| 10858 | * properly if we fail to join the transaction. |
| 10859 | */ |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10860 | trans = btrfs_start_trans_remove_block_group(fs_info, |
| 10861 | block_group->key.objectid); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10862 | if (IS_ERR(trans)) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10863 | btrfs_dec_block_group_ro(root, block_group); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10864 | ret = PTR_ERR(trans); |
| 10865 | goto next; |
| 10866 | } |
| 10867 | |
| 10868 | /* |
| 10869 | * We could have pending pinned extents for this block group, |
| 10870 | * just delete them, we don't care about them anymore. |
| 10871 | */ |
| 10872 | start = block_group->key.objectid; |
| 10873 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10874 | /* |
| 10875 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 10876 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 10877 | * another task might be running finish_extent_commit() for the |
| 10878 | * previous transaction N - 1, and have seen a range belonging |
| 10879 | * to the block group in freed_extents[] before we were able to |
| 10880 | * clear the whole block group range from freed_extents[]. This |
| 10881 | * means that task can lookup for the block group after we |
| 10882 | * unpinned it from freed_extents[] and removed it, leading to |
| 10883 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 10884 | */ |
| 10885 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10886 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10887 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10888 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10889 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10890 | btrfs_dec_block_group_ro(root, block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10891 | goto end_trans; |
| 10892 | } |
| 10893 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10894 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10895 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10896 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10897 | btrfs_dec_block_group_ro(root, block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10898 | goto end_trans; |
| 10899 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10900 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10901 | |
| 10902 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10903 | spin_lock(&space_info->lock); |
| 10904 | spin_lock(&block_group->lock); |
| 10905 | |
| 10906 | space_info->bytes_pinned -= block_group->pinned; |
| 10907 | space_info->bytes_readonly += block_group->pinned; |
| 10908 | percpu_counter_add(&space_info->total_bytes_pinned, |
| 10909 | -block_group->pinned); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10910 | block_group->pinned = 0; |
| 10911 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10912 | spin_unlock(&block_group->lock); |
| 10913 | spin_unlock(&space_info->lock); |
| 10914 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10915 | /* DISCARD can flip during remount */ |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10916 | trimming = btrfs_test_opt(root->fs_info, DISCARD); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10917 | |
| 10918 | /* Implicit trim during transaction commit. */ |
| 10919 | if (trimming) |
| 10920 | btrfs_get_block_group_trimming(block_group); |
| 10921 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10922 | /* |
| 10923 | * Btrfs_remove_chunk will abort the transaction if things go |
| 10924 | * horribly wrong. |
| 10925 | */ |
| 10926 | ret = btrfs_remove_chunk(trans, root, |
| 10927 | block_group->key.objectid); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10928 | |
| 10929 | if (ret) { |
| 10930 | if (trimming) |
| 10931 | btrfs_put_block_group_trimming(block_group); |
| 10932 | goto end_trans; |
| 10933 | } |
| 10934 | |
| 10935 | /* |
| 10936 | * If we're not mounted with -odiscard, we can just forget |
| 10937 | * about this block group. Otherwise we'll need to wait |
| 10938 | * until transaction commit to do the actual discard. |
| 10939 | */ |
| 10940 | if (trimming) { |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10941 | spin_lock(&fs_info->unused_bgs_lock); |
| 10942 | /* |
| 10943 | * A concurrent scrub might have added us to the list |
| 10944 | * fs_info->unused_bgs, so use a list_move operation |
| 10945 | * to add the block group to the deleted_bgs list. |
| 10946 | */ |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10947 | list_move(&block_group->bg_list, |
| 10948 | &trans->transaction->deleted_bgs); |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10949 | spin_unlock(&fs_info->unused_bgs_lock); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10950 | btrfs_get_block_group(block_group); |
| 10951 | } |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10952 | end_trans: |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10953 | btrfs_end_transaction(trans, root); |
| 10954 | next: |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10955 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10956 | btrfs_put_block_group(block_group); |
| 10957 | spin_lock(&fs_info->unused_bgs_lock); |
| 10958 | } |
| 10959 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10960 | } |
| 10961 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10962 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 10963 | { |
| 10964 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10965 | struct btrfs_super_block *disk_super; |
| 10966 | u64 features; |
| 10967 | u64 flags; |
| 10968 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10969 | int ret; |
| 10970 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10971 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10972 | if (!btrfs_super_root(disk_super)) |
Dan Carpenter | 0dc924c5 | 2016-01-13 15:21:17 +0300 | [diff] [blame] | 10973 | return -EINVAL; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10974 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10975 | features = btrfs_super_incompat_flags(disk_super); |
| 10976 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 10977 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10978 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10979 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10980 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10981 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10982 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10983 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10984 | if (mixed) { |
| 10985 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10986 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10987 | } else { |
| 10988 | flags = BTRFS_BLOCK_GROUP_METADATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10989 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10990 | if (ret) |
| 10991 | goto out; |
| 10992 | |
| 10993 | flags = BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10994 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10995 | } |
| 10996 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10997 | return ret; |
| 10998 | } |
| 10999 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 11000 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 11001 | { |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 11002 | return unpin_extent_range(root, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 11003 | } |
| 11004 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11005 | /* |
| 11006 | * It used to be that old block groups would be left around forever. |
| 11007 | * Iterating over them would be enough to trim unused space. Since we |
| 11008 | * now automatically remove them, we also need to iterate over unallocated |
| 11009 | * space. |
| 11010 | * |
| 11011 | * We don't want a transaction for this since the discard may take a |
| 11012 | * substantial amount of time. We don't require that a transaction be |
| 11013 | * running, but we do need to take a running transaction into account |
| 11014 | * to ensure that we're not discarding chunks that were released in |
| 11015 | * the current transaction. |
| 11016 | * |
| 11017 | * Holding the chunks lock will prevent other threads from allocating |
| 11018 | * or releasing chunks, but it won't prevent a running transaction |
| 11019 | * from committing and releasing the memory that the pending chunks |
| 11020 | * list head uses. For that, we need to take a reference to the |
| 11021 | * transaction. |
| 11022 | */ |
| 11023 | static int btrfs_trim_free_extents(struct btrfs_device *device, |
| 11024 | u64 minlen, u64 *trimmed) |
| 11025 | { |
| 11026 | u64 start = 0, len = 0; |
| 11027 | int ret; |
| 11028 | |
| 11029 | *trimmed = 0; |
| 11030 | |
| 11031 | /* Not writeable = nothing to do. */ |
| 11032 | if (!device->writeable) |
| 11033 | return 0; |
| 11034 | |
| 11035 | /* No free space = nothing to do. */ |
| 11036 | if (device->total_bytes <= device->bytes_used) |
| 11037 | return 0; |
| 11038 | |
| 11039 | ret = 0; |
| 11040 | |
| 11041 | while (1) { |
| 11042 | struct btrfs_fs_info *fs_info = device->dev_root->fs_info; |
| 11043 | struct btrfs_transaction *trans; |
| 11044 | u64 bytes; |
| 11045 | |
| 11046 | ret = mutex_lock_interruptible(&fs_info->chunk_mutex); |
| 11047 | if (ret) |
| 11048 | return ret; |
| 11049 | |
| 11050 | down_read(&fs_info->commit_root_sem); |
| 11051 | |
| 11052 | spin_lock(&fs_info->trans_lock); |
| 11053 | trans = fs_info->running_transaction; |
| 11054 | if (trans) |
| 11055 | atomic_inc(&trans->use_count); |
| 11056 | spin_unlock(&fs_info->trans_lock); |
| 11057 | |
| 11058 | ret = find_free_dev_extent_start(trans, device, minlen, start, |
| 11059 | &start, &len); |
| 11060 | if (trans) |
| 11061 | btrfs_put_transaction(trans); |
| 11062 | |
| 11063 | if (ret) { |
| 11064 | up_read(&fs_info->commit_root_sem); |
| 11065 | mutex_unlock(&fs_info->chunk_mutex); |
| 11066 | if (ret == -ENOSPC) |
| 11067 | ret = 0; |
| 11068 | break; |
| 11069 | } |
| 11070 | |
| 11071 | ret = btrfs_issue_discard(device->bdev, start, len, &bytes); |
| 11072 | up_read(&fs_info->commit_root_sem); |
| 11073 | mutex_unlock(&fs_info->chunk_mutex); |
| 11074 | |
| 11075 | if (ret) |
| 11076 | break; |
| 11077 | |
| 11078 | start += len; |
| 11079 | *trimmed += bytes; |
| 11080 | |
| 11081 | if (fatal_signal_pending(current)) { |
| 11082 | ret = -ERESTARTSYS; |
| 11083 | break; |
| 11084 | } |
| 11085 | |
| 11086 | cond_resched(); |
| 11087 | } |
| 11088 | |
| 11089 | return ret; |
| 11090 | } |
| 11091 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11092 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 11093 | { |
| 11094 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 11095 | struct btrfs_block_group_cache *cache = NULL; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11096 | struct btrfs_device *device; |
| 11097 | struct list_head *devices; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11098 | u64 group_trimmed; |
| 11099 | u64 start; |
| 11100 | u64 end; |
| 11101 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 11102 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11103 | int ret = 0; |
| 11104 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 11105 | /* |
| 11106 | * try to trim all FS space, our block group may start from non-zero. |
| 11107 | */ |
| 11108 | if (range->len == total_bytes) |
| 11109 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 11110 | else |
| 11111 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11112 | |
| 11113 | while (cache) { |
| 11114 | if (cache->key.objectid >= (range->start + range->len)) { |
| 11115 | btrfs_put_block_group(cache); |
| 11116 | break; |
| 11117 | } |
| 11118 | |
| 11119 | start = max(range->start, cache->key.objectid); |
| 11120 | end = min(range->start + range->len, |
| 11121 | cache->key.objectid + cache->key.offset); |
| 11122 | |
| 11123 | if (end - start >= range->minlen) { |
| 11124 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 11125 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 11126 | if (ret) { |
| 11127 | btrfs_put_block_group(cache); |
| 11128 | break; |
| 11129 | } |
| 11130 | ret = wait_block_group_cache_done(cache); |
| 11131 | if (ret) { |
| 11132 | btrfs_put_block_group(cache); |
| 11133 | break; |
| 11134 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11135 | } |
| 11136 | ret = btrfs_trim_block_group(cache, |
| 11137 | &group_trimmed, |
| 11138 | start, |
| 11139 | end, |
| 11140 | range->minlen); |
| 11141 | |
| 11142 | trimmed += group_trimmed; |
| 11143 | if (ret) { |
| 11144 | btrfs_put_block_group(cache); |
| 11145 | break; |
| 11146 | } |
| 11147 | } |
| 11148 | |
| 11149 | cache = next_block_group(fs_info->tree_root, cache); |
| 11150 | } |
| 11151 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11152 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
| 11153 | devices = &root->fs_info->fs_devices->alloc_list; |
| 11154 | list_for_each_entry(device, devices, dev_alloc_list) { |
| 11155 | ret = btrfs_trim_free_extents(device, range->minlen, |
| 11156 | &group_trimmed); |
| 11157 | if (ret) |
| 11158 | break; |
| 11159 | |
| 11160 | trimmed += group_trimmed; |
| 11161 | } |
| 11162 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
| 11163 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11164 | range->len = trimmed; |
| 11165 | return ret; |
| 11166 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11167 | |
| 11168 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11169 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 11170 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 11171 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 11172 | * but flush the data into disk after the snapshot creation, or to prevent |
| 11173 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 11174 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11175 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11176 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11177 | { |
| 11178 | percpu_counter_dec(&root->subv_writers->counter); |
| 11179 | /* |
David Sterba | a83342a | 2015-02-16 19:36:47 +0100 | [diff] [blame] | 11180 | * Make sure counter is updated before we wake up waiters. |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11181 | */ |
| 11182 | smp_mb(); |
| 11183 | if (waitqueue_active(&root->subv_writers->wait)) |
| 11184 | wake_up(&root->subv_writers->wait); |
| 11185 | } |
| 11186 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11187 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11188 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11189 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11190 | return 0; |
| 11191 | |
| 11192 | percpu_counter_inc(&root->subv_writers->counter); |
| 11193 | /* |
| 11194 | * Make sure counter is updated before we check for snapshot creation. |
| 11195 | */ |
| 11196 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11197 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11198 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11199 | return 0; |
| 11200 | } |
| 11201 | return 1; |
| 11202 | } |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11203 | |
| 11204 | static int wait_snapshoting_atomic_t(atomic_t *a) |
| 11205 | { |
| 11206 | schedule(); |
| 11207 | return 0; |
| 11208 | } |
| 11209 | |
| 11210 | void btrfs_wait_for_snapshot_creation(struct btrfs_root *root) |
| 11211 | { |
| 11212 | while (true) { |
| 11213 | int ret; |
| 11214 | |
| 11215 | ret = btrfs_start_write_no_snapshoting(root); |
| 11216 | if (ret) |
| 11217 | break; |
| 11218 | wait_on_atomic_t(&root->will_be_snapshoted, |
| 11219 | wait_snapshoting_atomic_t, |
| 11220 | TASK_UNINTERRUPTIBLE); |
| 11221 | } |
| 11222 | } |