David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 Oracle. All rights reserved. |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 4 | */ |
David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 5 | |
Zach Brown | ec6b910 | 2007-07-11 10:00:37 -0400 | [diff] [blame] | 6 | #include <linux/sched.h> |
Ingo Molnar | f361bf4 | 2017-02-03 23:47:37 +0100 | [diff] [blame] | 7 | #include <linux/sched/signal.h> |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 8 | #include <linux/pagemap.h> |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9 | #include <linux/writeback.h> |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 10 | #include <linux/blkdev.h> |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 11 | #include <linux/sort.h> |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 12 | #include <linux/rcupdate.h> |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 13 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
David Sterba | dff51cd | 2011-06-14 12:52:17 +0200 | [diff] [blame] | 15 | #include <linux/ratelimit.h> |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 16 | #include <linux/percpu_counter.h> |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 17 | #include <linux/lockdep.h> |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 18 | #include <linux/crc32c.h> |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 19 | #include "tree-log.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 20 | #include "disk-io.h" |
| 21 | #include "print-tree.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 22 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 23 | #include "raid56.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 24 | #include "locking.h" |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 25 | #include "free-space-cache.h" |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 26 | #include "free-space-tree.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 27 | #include "math.h" |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 28 | #include "sysfs.h" |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 29 | #include "qgroup.h" |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 30 | #include "ref-verify.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 31 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 32 | #undef SCRAMBLE_DELAYED_REFS |
| 33 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 34 | /* |
| 35 | * control flags for do_chunk_alloc's force field |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 36 | * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk |
| 37 | * if we really need one. |
| 38 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 39 | * CHUNK_ALLOC_LIMITED means to only try and allocate one |
| 40 | * if we have very few chunks already allocated. This is |
| 41 | * used as part of the clustering code to help make sure |
| 42 | * we have a good pool of storage to cluster in, without |
| 43 | * filling the FS with empty chunks |
| 44 | * |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 45 | * CHUNK_ALLOC_FORCE means it must try to allocate one |
| 46 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 47 | */ |
| 48 | enum { |
| 49 | CHUNK_ALLOC_NO_FORCE = 0, |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 50 | CHUNK_ALLOC_LIMITED = 1, |
| 51 | CHUNK_ALLOC_FORCE = 2, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 52 | }; |
| 53 | |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 54 | /* |
| 55 | * Declare a helper function to detect underflow of various space info members |
| 56 | */ |
| 57 | #define DECLARE_SPACE_INFO_UPDATE(name) \ |
| 58 | static inline void update_##name(struct btrfs_space_info *sinfo, \ |
| 59 | s64 bytes) \ |
| 60 | { \ |
| 61 | if (bytes < 0 && sinfo->name < -bytes) { \ |
| 62 | WARN_ON(1); \ |
| 63 | sinfo->name = 0; \ |
| 64 | return; \ |
| 65 | } \ |
| 66 | sinfo->name += bytes; \ |
| 67 | } |
| 68 | |
| 69 | DECLARE_SPACE_INFO_UPDATE(bytes_may_use); |
Lu Fengqi | e2907c1 | 2018-10-24 20:24:02 +0800 | [diff] [blame] | 70 | DECLARE_SPACE_INFO_UPDATE(bytes_pinned); |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 71 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 72 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | e72cb92 | 2018-06-20 15:48:57 +0300 | [diff] [blame] | 73 | struct btrfs_delayed_ref_node *node, u64 parent, |
| 74 | u64 root_objectid, u64 owner_objectid, |
| 75 | u64 owner_offset, int refs_to_drop, |
| 76 | struct btrfs_delayed_extent_op *extra_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 77 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 78 | struct extent_buffer *leaf, |
| 79 | struct btrfs_extent_item *ei); |
| 80 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 81 | u64 parent, u64 root_objectid, |
| 82 | u64 flags, u64 owner, u64 offset, |
| 83 | struct btrfs_key *ins, int ref_mod); |
| 84 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 85 | struct btrfs_delayed_ref_node *node, |
Nikolay Borisov | 21ebfbe | 2018-05-21 12:27:22 +0300 | [diff] [blame] | 86 | struct btrfs_delayed_extent_op *extent_op); |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 87 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 88 | int force); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 89 | static int find_next_key(struct btrfs_path *path, int level, |
| 90 | struct btrfs_key *key); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 91 | static void dump_space_info(struct btrfs_fs_info *fs_info, |
| 92 | struct btrfs_space_info *info, u64 bytes, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 93 | int dump_block_groups); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 94 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 95 | u64 num_bytes); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 96 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 97 | struct btrfs_space_info *space_info, |
| 98 | u64 num_bytes); |
| 99 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 100 | struct btrfs_space_info *space_info, |
| 101 | u64 num_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 102 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 103 | static noinline int |
| 104 | block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 105 | { |
| 106 | smp_mb(); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 107 | return cache->cached == BTRFS_CACHE_FINISHED || |
| 108 | cache->cached == BTRFS_CACHE_ERROR; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 109 | } |
| 110 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 111 | static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits) |
| 112 | { |
| 113 | return (cache->flags & bits) == bits; |
| 114 | } |
| 115 | |
Filipe Manana | 758f2df | 2015-11-19 11:45:48 +0000 | [diff] [blame] | 116 | void btrfs_get_block_group(struct btrfs_block_group_cache *cache) |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 117 | { |
| 118 | atomic_inc(&cache->count); |
| 119 | } |
| 120 | |
| 121 | void btrfs_put_block_group(struct btrfs_block_group_cache *cache) |
| 122 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 123 | if (atomic_dec_and_test(&cache->count)) { |
| 124 | WARN_ON(cache->pinned > 0); |
| 125 | WARN_ON(cache->reserved > 0); |
Qu Wenruo | 0966a7b | 2017-04-14 08:35:54 +0800 | [diff] [blame] | 126 | |
| 127 | /* |
| 128 | * If not empty, someone is still holding mutex of |
| 129 | * full_stripe_lock, which can only be released by caller. |
| 130 | * And it will definitely cause use-after-free when caller |
| 131 | * tries to release full stripe lock. |
| 132 | * |
| 133 | * No better way to resolve, but only to warn. |
| 134 | */ |
| 135 | WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root)); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 136 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 137 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 138 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 141 | /* |
| 142 | * this adds the block group to the fs_info rb tree for the block group |
| 143 | * cache |
| 144 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 145 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 146 | struct btrfs_block_group_cache *block_group) |
| 147 | { |
| 148 | struct rb_node **p; |
| 149 | struct rb_node *parent = NULL; |
| 150 | struct btrfs_block_group_cache *cache; |
| 151 | |
| 152 | spin_lock(&info->block_group_cache_lock); |
| 153 | p = &info->block_group_cache_tree.rb_node; |
| 154 | |
| 155 | while (*p) { |
| 156 | parent = *p; |
| 157 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 158 | cache_node); |
| 159 | if (block_group->key.objectid < cache->key.objectid) { |
| 160 | p = &(*p)->rb_left; |
| 161 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 162 | p = &(*p)->rb_right; |
| 163 | } else { |
| 164 | spin_unlock(&info->block_group_cache_lock); |
| 165 | return -EEXIST; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | rb_link_node(&block_group->cache_node, parent, p); |
| 170 | rb_insert_color(&block_group->cache_node, |
| 171 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 172 | |
| 173 | if (info->first_logical_byte > block_group->key.objectid) |
| 174 | info->first_logical_byte = block_group->key.objectid; |
| 175 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 176 | spin_unlock(&info->block_group_cache_lock); |
| 177 | |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | /* |
| 182 | * This will return the block group at or after bytenr if contains is 0, else |
| 183 | * it will return the block group that contains the bytenr |
| 184 | */ |
| 185 | static struct btrfs_block_group_cache * |
| 186 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 187 | int contains) |
| 188 | { |
| 189 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 190 | struct rb_node *n; |
| 191 | u64 end, start; |
| 192 | |
| 193 | spin_lock(&info->block_group_cache_lock); |
| 194 | n = info->block_group_cache_tree.rb_node; |
| 195 | |
| 196 | while (n) { |
| 197 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 198 | cache_node); |
| 199 | end = cache->key.objectid + cache->key.offset - 1; |
| 200 | start = cache->key.objectid; |
| 201 | |
| 202 | if (bytenr < start) { |
| 203 | if (!contains && (!ret || start < ret->key.objectid)) |
| 204 | ret = cache; |
| 205 | n = n->rb_left; |
| 206 | } else if (bytenr > start) { |
| 207 | if (contains && bytenr <= end) { |
| 208 | ret = cache; |
| 209 | break; |
| 210 | } |
| 211 | n = n->rb_right; |
| 212 | } else { |
| 213 | ret = cache; |
| 214 | break; |
| 215 | } |
| 216 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 217 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 218 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 219 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 220 | info->first_logical_byte = ret->key.objectid; |
| 221 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 222 | spin_unlock(&info->block_group_cache_lock); |
| 223 | |
| 224 | return ret; |
| 225 | } |
| 226 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 227 | static int add_excluded_extent(struct btrfs_fs_info *fs_info, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 228 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 229 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 230 | u64 end = start + num_bytes - 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 231 | set_extent_bits(&fs_info->freed_extents[0], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 232 | start, end, EXTENT_UPTODATE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 233 | set_extent_bits(&fs_info->freed_extents[1], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 234 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 235 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 236 | } |
| 237 | |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 238 | static void free_excluded_extents(struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 239 | { |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 240 | struct btrfs_fs_info *fs_info = cache->fs_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 241 | u64 start, end; |
| 242 | |
| 243 | start = cache->key.objectid; |
| 244 | end = start + cache->key.offset - 1; |
| 245 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 246 | clear_extent_bits(&fs_info->freed_extents[0], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 247 | start, end, EXTENT_UPTODATE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 248 | clear_extent_bits(&fs_info->freed_extents[1], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 249 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 250 | } |
| 251 | |
Nikolay Borisov | 3c4da65 | 2018-06-20 15:49:09 +0300 | [diff] [blame] | 252 | static int exclude_super_stripes(struct btrfs_block_group_cache *cache) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 253 | { |
Nikolay Borisov | 3c4da65 | 2018-06-20 15:49:09 +0300 | [diff] [blame] | 254 | struct btrfs_fs_info *fs_info = cache->fs_info; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 255 | u64 bytenr; |
| 256 | u64 *logical; |
| 257 | int stripe_len; |
| 258 | int i, nr, ret; |
| 259 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 260 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 261 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 262 | cache->bytes_super += stripe_len; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 263 | ret = add_excluded_extent(fs_info, cache->key.objectid, |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 264 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 265 | if (ret) |
| 266 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 269 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 270 | bytenr = btrfs_sb_offset(i); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 271 | ret = btrfs_rmap_block(fs_info, cache->key.objectid, |
Nikolay Borisov | 63a9c7b | 2018-05-04 10:53:05 +0300 | [diff] [blame] | 272 | bytenr, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 273 | if (ret) |
| 274 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 275 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 276 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 277 | u64 start, len; |
| 278 | |
| 279 | if (logical[nr] > cache->key.objectid + |
| 280 | cache->key.offset) |
| 281 | continue; |
| 282 | |
| 283 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 284 | continue; |
| 285 | |
| 286 | start = logical[nr]; |
| 287 | if (start < cache->key.objectid) { |
| 288 | start = cache->key.objectid; |
| 289 | len = (logical[nr] + stripe_len) - start; |
| 290 | } else { |
| 291 | len = min_t(u64, stripe_len, |
| 292 | cache->key.objectid + |
| 293 | cache->key.offset - start); |
| 294 | } |
| 295 | |
| 296 | cache->bytes_super += len; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 297 | ret = add_excluded_extent(fs_info, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 298 | if (ret) { |
| 299 | kfree(logical); |
| 300 | return ret; |
| 301 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 302 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 303 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 304 | kfree(logical); |
| 305 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 306 | return 0; |
| 307 | } |
| 308 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 309 | static struct btrfs_caching_control * |
| 310 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 311 | { |
| 312 | struct btrfs_caching_control *ctl; |
| 313 | |
| 314 | spin_lock(&cache->lock); |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 315 | if (!cache->caching_ctl) { |
| 316 | spin_unlock(&cache->lock); |
| 317 | return NULL; |
| 318 | } |
| 319 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 320 | ctl = cache->caching_ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 321 | refcount_inc(&ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 322 | spin_unlock(&cache->lock); |
| 323 | return ctl; |
| 324 | } |
| 325 | |
| 326 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 327 | { |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 328 | if (refcount_dec_and_test(&ctl->count)) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 329 | kfree(ctl); |
| 330 | } |
| 331 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 332 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 333 | static void fragment_free_space(struct btrfs_block_group_cache *block_group) |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 334 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 335 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 336 | u64 start = block_group->key.objectid; |
| 337 | u64 len = block_group->key.offset; |
| 338 | u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ? |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 339 | fs_info->nodesize : fs_info->sectorsize; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 340 | u64 step = chunk << 1; |
| 341 | |
| 342 | while (len > chunk) { |
| 343 | btrfs_remove_free_space(block_group, start, chunk); |
| 344 | start += step; |
| 345 | if (len < step) |
| 346 | len = 0; |
| 347 | else |
| 348 | len -= step; |
| 349 | } |
| 350 | } |
| 351 | #endif |
| 352 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 353 | /* |
| 354 | * this is only called by cache_block_group, since we could have freed extents |
| 355 | * we need to check the pinned_extents for any extents that can't be used yet |
| 356 | * since their free space will be released as soon as the transaction commits. |
| 357 | */ |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 358 | u64 add_new_free_space(struct btrfs_block_group_cache *block_group, |
Nikolay Borisov | 4457c1c | 2018-05-10 15:44:45 +0300 | [diff] [blame] | 359 | u64 start, u64 end) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 360 | { |
Nikolay Borisov | 4457c1c | 2018-05-10 15:44:45 +0300 | [diff] [blame] | 361 | struct btrfs_fs_info *info = block_group->fs_info; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 362 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 363 | int ret; |
| 364 | |
| 365 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 366 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 367 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 368 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 369 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 370 | if (ret) |
| 371 | break; |
| 372 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 373 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 374 | start = extent_end + 1; |
| 375 | } else if (extent_start > start && extent_start < end) { |
| 376 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 377 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 378 | ret = btrfs_add_free_space(block_group, start, |
| 379 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 380 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 381 | start = extent_end + 1; |
| 382 | } else { |
| 383 | break; |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | if (start < end) { |
| 388 | size = end - 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, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 391 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 392 | } |
| 393 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 394 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 395 | } |
| 396 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 397 | static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 398 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 399 | struct btrfs_block_group_cache *block_group = caching_ctl->block_group; |
| 400 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
| 401 | struct btrfs_root *extent_root = fs_info->extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 402 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 403 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 404 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 405 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 406 | u64 last = 0; |
| 407 | u32 nritems; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 408 | int ret; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 409 | bool wakeup = true; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 410 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 411 | path = btrfs_alloc_path(); |
| 412 | if (!path) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 413 | return -ENOMEM; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 414 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 415 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 416 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 417 | #ifdef CONFIG_BTRFS_DEBUG |
| 418 | /* |
| 419 | * If we're fragmenting we don't want to make anybody think we can |
| 420 | * allocate from this block group until we've had a chance to fragment |
| 421 | * the free space. |
| 422 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 423 | if (btrfs_should_fragment_free_space(block_group)) |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 424 | wakeup = false; |
| 425 | #endif |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 426 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 427 | * We don't want to deadlock with somebody trying to allocate a new |
| 428 | * extent for the extent root while also trying to search the extent |
| 429 | * root to add free space. So we skip locking and search the commit |
| 430 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 431 | */ |
| 432 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 433 | path->search_commit_root = 1; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 434 | path->reada = READA_FORWARD; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 435 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 436 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 437 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 438 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 439 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 440 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 441 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 442 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 443 | goto out; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 444 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 445 | leaf = path->nodes[0]; |
| 446 | nritems = btrfs_header_nritems(leaf); |
| 447 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 448 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 449 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 450 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 451 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 452 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 453 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 454 | if (path->slots[0] < nritems) { |
| 455 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 456 | } else { |
| 457 | ret = find_next_key(path, 0, &key); |
| 458 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 459 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 460 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 461 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 462 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 463 | if (wakeup) |
| 464 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 465 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 466 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 467 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 468 | cond_resched(); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 469 | mutex_lock(&caching_ctl->mutex); |
| 470 | down_read(&fs_info->commit_root_sem); |
| 471 | goto next; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 472 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 473 | |
| 474 | ret = btrfs_next_leaf(extent_root, path); |
| 475 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 476 | goto out; |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 477 | if (ret) |
| 478 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 479 | leaf = path->nodes[0]; |
| 480 | nritems = btrfs_header_nritems(leaf); |
| 481 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 482 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 483 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 484 | if (key.objectid < last) { |
| 485 | key.objectid = last; |
| 486 | key.offset = 0; |
| 487 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 488 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 489 | if (wakeup) |
| 490 | caching_ctl->progress = last; |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 491 | btrfs_release_path(path); |
| 492 | goto next; |
| 493 | } |
| 494 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 495 | if (key.objectid < block_group->key.objectid) { |
| 496 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 497 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 498 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 499 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 500 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 501 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 502 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 503 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 504 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 505 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Nikolay Borisov | 4457c1c | 2018-05-10 15:44:45 +0300 | [diff] [blame] | 506 | total_found += add_new_free_space(block_group, last, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 507 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 508 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 509 | last = key.objectid + |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 510 | fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 511 | else |
| 512 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 513 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 514 | if (total_found > CACHING_CTL_WAKE_UP) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 515 | total_found = 0; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 516 | if (wakeup) |
| 517 | wake_up(&caching_ctl->wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 518 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 519 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 520 | path->slots[0]++; |
| 521 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 522 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 523 | |
Nikolay Borisov | 4457c1c | 2018-05-10 15:44:45 +0300 | [diff] [blame] | 524 | total_found += add_new_free_space(block_group, last, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 525 | block_group->key.objectid + |
| 526 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 527 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 528 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 529 | out: |
| 530 | btrfs_free_path(path); |
| 531 | return ret; |
| 532 | } |
| 533 | |
| 534 | static noinline void caching_thread(struct btrfs_work *work) |
| 535 | { |
| 536 | struct btrfs_block_group_cache *block_group; |
| 537 | struct btrfs_fs_info *fs_info; |
| 538 | struct btrfs_caching_control *caching_ctl; |
| 539 | int ret; |
| 540 | |
| 541 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 542 | block_group = caching_ctl->block_group; |
| 543 | fs_info = block_group->fs_info; |
| 544 | |
| 545 | mutex_lock(&caching_ctl->mutex); |
| 546 | down_read(&fs_info->commit_root_sem); |
| 547 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 548 | if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) |
| 549 | ret = load_free_space_tree(caching_ctl); |
| 550 | else |
| 551 | ret = load_extent_tree_free(caching_ctl); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 552 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 553 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 554 | block_group->caching_ctl = NULL; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 555 | block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 556 | spin_unlock(&block_group->lock); |
| 557 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 558 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 559 | if (btrfs_should_fragment_free_space(block_group)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 560 | u64 bytes_used; |
| 561 | |
| 562 | spin_lock(&block_group->space_info->lock); |
| 563 | spin_lock(&block_group->lock); |
| 564 | bytes_used = block_group->key.offset - |
| 565 | btrfs_block_group_used(&block_group->item); |
| 566 | block_group->space_info->bytes_used += bytes_used >> 1; |
| 567 | spin_unlock(&block_group->lock); |
| 568 | spin_unlock(&block_group->space_info->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 569 | fragment_free_space(block_group); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 570 | } |
| 571 | #endif |
| 572 | |
| 573 | caching_ctl->progress = (u64)-1; |
Chris Mason | f7d3d2f | 2015-12-18 11:11:10 -0800 | [diff] [blame] | 574 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 575 | up_read(&fs_info->commit_root_sem); |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 576 | free_excluded_extents(block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 577 | mutex_unlock(&caching_ctl->mutex); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 578 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 579 | wake_up(&caching_ctl->wait); |
| 580 | |
| 581 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 582 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 583 | } |
| 584 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 585 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 586 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 587 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 588 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 589 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 590 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 591 | int ret = 0; |
| 592 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 593 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 594 | if (!caching_ctl) |
| 595 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 596 | |
| 597 | INIT_LIST_HEAD(&caching_ctl->list); |
| 598 | mutex_init(&caching_ctl->mutex); |
| 599 | init_waitqueue_head(&caching_ctl->wait); |
| 600 | caching_ctl->block_group = cache; |
| 601 | caching_ctl->progress = cache->key.objectid; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 602 | refcount_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 603 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 604 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 605 | |
| 606 | spin_lock(&cache->lock); |
| 607 | /* |
| 608 | * This should be a rare occasion, but this could happen I think in the |
| 609 | * case where one thread starts to load the space cache info, and then |
| 610 | * some other thread starts a transaction commit which tries to do an |
| 611 | * allocation while the other thread is still loading the space cache |
| 612 | * info. The previous loop should have kept us from choosing this block |
| 613 | * group, but if we've moved to the state where we will wait on caching |
| 614 | * block groups we need to first check if we're doing a fast load here, |
| 615 | * so we can wait for it to finish, otherwise we could end up allocating |
| 616 | * from a block group who's cache gets evicted for one reason or |
| 617 | * another. |
| 618 | */ |
| 619 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 620 | struct btrfs_caching_control *ctl; |
| 621 | |
| 622 | ctl = cache->caching_ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 623 | refcount_inc(&ctl->count); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 624 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 625 | spin_unlock(&cache->lock); |
| 626 | |
| 627 | schedule(); |
| 628 | |
| 629 | finish_wait(&ctl->wait, &wait); |
| 630 | put_caching_control(ctl); |
| 631 | spin_lock(&cache->lock); |
| 632 | } |
| 633 | |
| 634 | if (cache->cached != BTRFS_CACHE_NO) { |
| 635 | spin_unlock(&cache->lock); |
| 636 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 637 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 638 | } |
| 639 | WARN_ON(cache->caching_ctl); |
| 640 | cache->caching_ctl = caching_ctl; |
| 641 | cache->cached = BTRFS_CACHE_FAST; |
| 642 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 643 | |
Satoru Takeuchi | d8953d6 | 2017-09-12 20:08:08 +0900 | [diff] [blame] | 644 | if (btrfs_test_opt(fs_info, SPACE_CACHE)) { |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 645 | mutex_lock(&caching_ctl->mutex); |
David Sterba | bb6cb1c | 2019-03-20 13:47:15 +0100 | [diff] [blame] | 646 | ret = load_free_space_cache(cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 647 | |
| 648 | spin_lock(&cache->lock); |
| 649 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 650 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 651 | cache->cached = BTRFS_CACHE_FINISHED; |
| 652 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 653 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 654 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 655 | if (load_cache_only) { |
| 656 | cache->caching_ctl = NULL; |
| 657 | cache->cached = BTRFS_CACHE_NO; |
| 658 | } else { |
| 659 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 660 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 661 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 662 | } |
| 663 | spin_unlock(&cache->lock); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 664 | #ifdef CONFIG_BTRFS_DEBUG |
| 665 | if (ret == 1 && |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 666 | btrfs_should_fragment_free_space(cache)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 667 | u64 bytes_used; |
| 668 | |
| 669 | spin_lock(&cache->space_info->lock); |
| 670 | spin_lock(&cache->lock); |
| 671 | bytes_used = cache->key.offset - |
| 672 | btrfs_block_group_used(&cache->item); |
| 673 | cache->space_info->bytes_used += bytes_used >> 1; |
| 674 | spin_unlock(&cache->lock); |
| 675 | spin_unlock(&cache->space_info->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 676 | fragment_free_space(cache); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 677 | } |
| 678 | #endif |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 679 | mutex_unlock(&caching_ctl->mutex); |
| 680 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 681 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 682 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 683 | put_caching_control(caching_ctl); |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 684 | free_excluded_extents(cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 685 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 686 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 687 | } else { |
| 688 | /* |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 689 | * We're either using the free space tree or no caching at all. |
| 690 | * Set cached to the appropriate value and wakeup any waiters. |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 691 | */ |
| 692 | spin_lock(&cache->lock); |
| 693 | if (load_cache_only) { |
| 694 | cache->caching_ctl = NULL; |
| 695 | cache->cached = BTRFS_CACHE_NO; |
| 696 | } else { |
| 697 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 698 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 699 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 700 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 701 | wake_up(&caching_ctl->wait); |
| 702 | } |
| 703 | |
| 704 | if (load_cache_only) { |
| 705 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 706 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 707 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 708 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 709 | down_write(&fs_info->commit_root_sem); |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 710 | refcount_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 711 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 712 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 713 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 714 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 715 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 716 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 717 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 718 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 719 | } |
| 720 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 721 | /* |
| 722 | * return the block group that starts at or after bytenr |
| 723 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 724 | static struct btrfs_block_group_cache * |
| 725 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 726 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 727 | return block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 728 | } |
| 729 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 730 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 731 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 732 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 733 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 734 | struct btrfs_fs_info *info, |
| 735 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 736 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 737 | return block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 738 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 739 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 740 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 741 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 742 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 743 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 744 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 745 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 746 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 747 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 748 | rcu_read_lock(); |
| 749 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 750 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 751 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 752 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 753 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 754 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 755 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 756 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 757 | } |
| 758 | |
Omar Sandoval | 0d9f824 | 2017-06-06 16:45:26 -0700 | [diff] [blame] | 759 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, s64 num_bytes, |
Nikolay Borisov | 29d2b84 | 2018-03-30 12:58:47 +0300 | [diff] [blame] | 760 | bool metadata, u64 root_objectid) |
Omar Sandoval | 0d9f824 | 2017-06-06 16:45:26 -0700 | [diff] [blame] | 761 | { |
| 762 | struct btrfs_space_info *space_info; |
| 763 | u64 flags; |
| 764 | |
Nikolay Borisov | 29d2b84 | 2018-03-30 12:58:47 +0300 | [diff] [blame] | 765 | if (metadata) { |
Omar Sandoval | 0d9f824 | 2017-06-06 16:45:26 -0700 | [diff] [blame] | 766 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 767 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 768 | else |
| 769 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 770 | } else { |
| 771 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 772 | } |
| 773 | |
| 774 | space_info = __find_space_info(fs_info, flags); |
Omar Sandoval | 55e8196 | 2017-06-06 16:45:27 -0700 | [diff] [blame] | 775 | ASSERT(space_info); |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 776 | percpu_counter_add_batch(&space_info->total_bytes_pinned, num_bytes, |
| 777 | BTRFS_TOTAL_BYTES_PINNED_BATCH); |
Omar Sandoval | 0d9f824 | 2017-06-06 16:45:26 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 780 | /* |
| 781 | * after adding space to the filesystem, we need to clear the full flags |
| 782 | * on all the space infos. |
| 783 | */ |
| 784 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 785 | { |
| 786 | struct list_head *head = &info->space_info; |
| 787 | struct btrfs_space_info *found; |
| 788 | |
| 789 | rcu_read_lock(); |
| 790 | list_for_each_entry_rcu(found, head, list) |
| 791 | found->full = 0; |
| 792 | rcu_read_unlock(); |
| 793 | } |
| 794 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 795 | /* simple helper to search for an existing data extent at a given offset */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 796 | int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 797 | { |
| 798 | int ret; |
| 799 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 800 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 801 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 802 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 803 | if (!path) |
| 804 | return -ENOMEM; |
| 805 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 806 | key.objectid = start; |
| 807 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 808 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 809 | ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 810 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 811 | return ret; |
| 812 | } |
| 813 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 814 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 815 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 816 | * |
| 817 | * the head node for delayed ref is used to store the sum of all the |
| 818 | * reference count modifications queued up in the rbtree. the head |
| 819 | * node may also store the extent flags to set. This way you can check |
| 820 | * to see what the reference count and extent flags would be if all of |
| 821 | * the delayed refs are not processed. |
| 822 | */ |
| 823 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 824 | struct btrfs_fs_info *fs_info, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 825 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 826 | { |
| 827 | struct btrfs_delayed_ref_head *head; |
| 828 | struct btrfs_delayed_ref_root *delayed_refs; |
| 829 | struct btrfs_path *path; |
| 830 | struct btrfs_extent_item *ei; |
| 831 | struct extent_buffer *leaf; |
| 832 | struct btrfs_key key; |
| 833 | u32 item_size; |
| 834 | u64 num_refs; |
| 835 | u64 extent_flags; |
| 836 | int ret; |
| 837 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 838 | /* |
| 839 | * If we don't have skinny metadata, don't bother doing anything |
| 840 | * different |
| 841 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 842 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) { |
| 843 | offset = fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 844 | metadata = 0; |
| 845 | } |
| 846 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 847 | path = btrfs_alloc_path(); |
| 848 | if (!path) |
| 849 | return -ENOMEM; |
| 850 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 851 | if (!trans) { |
| 852 | path->skip_locking = 1; |
| 853 | path->search_commit_root = 1; |
| 854 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 855 | |
| 856 | search_again: |
| 857 | key.objectid = bytenr; |
| 858 | key.offset = offset; |
| 859 | if (metadata) |
| 860 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 861 | else |
| 862 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 863 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 864 | ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 865 | if (ret < 0) |
| 866 | goto out_free; |
| 867 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 868 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 869 | if (path->slots[0]) { |
| 870 | path->slots[0]--; |
| 871 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 872 | path->slots[0]); |
| 873 | if (key.objectid == bytenr && |
| 874 | key.type == BTRFS_EXTENT_ITEM_KEY && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 875 | key.offset == fs_info->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 876 | ret = 0; |
| 877 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 878 | } |
| 879 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 880 | if (ret == 0) { |
| 881 | leaf = path->nodes[0]; |
| 882 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 883 | if (item_size >= sizeof(*ei)) { |
| 884 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 885 | struct btrfs_extent_item); |
| 886 | num_refs = btrfs_extent_refs(leaf, ei); |
| 887 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 888 | } else { |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 889 | ret = -EINVAL; |
| 890 | btrfs_print_v0_err(fs_info); |
| 891 | if (trans) |
| 892 | btrfs_abort_transaction(trans, ret); |
| 893 | else |
| 894 | btrfs_handle_fs_error(fs_info, ret, NULL); |
| 895 | |
| 896 | goto out_free; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 897 | } |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 898 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 899 | BUG_ON(num_refs == 0); |
| 900 | } else { |
| 901 | num_refs = 0; |
| 902 | extent_flags = 0; |
| 903 | ret = 0; |
| 904 | } |
| 905 | |
| 906 | if (!trans) |
| 907 | goto out; |
| 908 | |
| 909 | delayed_refs = &trans->transaction->delayed_refs; |
| 910 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 911 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 912 | if (head) { |
| 913 | if (!mutex_trylock(&head->mutex)) { |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 914 | refcount_inc(&head->refs); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 915 | spin_unlock(&delayed_refs->lock); |
| 916 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 917 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 918 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 919 | /* |
| 920 | * Mutex was contended, block until it's released and try |
| 921 | * again |
| 922 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 923 | mutex_lock(&head->mutex); |
| 924 | mutex_unlock(&head->mutex); |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 925 | btrfs_put_delayed_ref_head(head); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 926 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 927 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 928 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 929 | if (head->extent_op && head->extent_op->update_flags) |
| 930 | extent_flags |= head->extent_op->flags_to_set; |
| 931 | else |
| 932 | BUG_ON(num_refs == 0); |
| 933 | |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 934 | num_refs += head->ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 935 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 936 | mutex_unlock(&head->mutex); |
| 937 | } |
| 938 | spin_unlock(&delayed_refs->lock); |
| 939 | out: |
| 940 | WARN_ON(num_refs == 0); |
| 941 | if (refs) |
| 942 | *refs = num_refs; |
| 943 | if (flags) |
| 944 | *flags = extent_flags; |
| 945 | out_free: |
| 946 | btrfs_free_path(path); |
| 947 | return ret; |
| 948 | } |
| 949 | |
| 950 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 951 | * Back reference rules. Back refs have three main goals: |
| 952 | * |
| 953 | * 1) differentiate between all holders of references to an extent so that |
| 954 | * when a reference is dropped we can make sure it was a valid reference |
| 955 | * before freeing the extent. |
| 956 | * |
| 957 | * 2) Provide enough information to quickly find the holders of an extent |
| 958 | * if we notice a given block is corrupted or bad. |
| 959 | * |
| 960 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 961 | * maintenance. This is actually the same as #2, but with a slightly |
| 962 | * different use case. |
| 963 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 964 | * There are two kinds of back refs. The implicit back refs is optimized |
| 965 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 966 | * back refs of this kind provide information about the block's owner tree |
| 967 | * and the pointer's key. These information allow us to find the block by |
| 968 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 969 | * referenced by their owner trees. The location of tree block is recorded |
| 970 | * in the back refs. Actually the full back refs is generic, and can be |
| 971 | * used in all cases the implicit back refs is used. The major shortcoming |
| 972 | * of the full back refs is its overhead. Every time a tree block gets |
| 973 | * COWed, we have to update back refs entry for all pointers in it. |
| 974 | * |
| 975 | * For a newly allocated tree block, we use implicit back refs for |
| 976 | * pointers in it. This means most tree related operations only involve |
| 977 | * implicit back refs. For a tree block created in old transaction, the |
| 978 | * only way to drop a reference to it is COW it. So we can detect the |
| 979 | * event that tree block loses its owner tree's reference and do the |
| 980 | * back refs conversion. |
| 981 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 982 | * 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] | 983 | * |
| 984 | * The reference count of the block is one and the tree is the block's |
| 985 | * owner tree. Nothing to do in this case. |
| 986 | * |
| 987 | * The reference count of the block is one and the tree is not the |
| 988 | * block's owner tree. In this case, full back refs is used for pointers |
| 989 | * in the block. Remove these full back refs, add implicit back refs for |
| 990 | * every pointers in the new block. |
| 991 | * |
| 992 | * The reference count of the block is greater than one and the tree is |
| 993 | * the block's owner tree. In this case, implicit back refs is used for |
| 994 | * pointers in the block. Add full back refs for every pointers in the |
| 995 | * block, increase lower level extents' reference counts. The original |
| 996 | * implicit back refs are entailed to the new block. |
| 997 | * |
| 998 | * The reference count of the block is greater than one and the tree is |
| 999 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 1000 | * the new block, increase lower level extents' reference count. |
| 1001 | * |
| 1002 | * Back Reference Key composing: |
| 1003 | * |
| 1004 | * The key objectid corresponds to the first byte in the extent, |
| 1005 | * The key type is used to differentiate between types of back refs. |
| 1006 | * There are different meanings of the key offset for different types |
| 1007 | * of back refs. |
| 1008 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1009 | * File extents can be referenced by: |
| 1010 | * |
| 1011 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1012 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1013 | * - different offsets inside a file (bookend extents in file.c) |
| 1014 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1015 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1016 | * |
| 1017 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1018 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1019 | * - original offset in the file |
| 1020 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1021 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1022 | * The key offset for the implicit back refs is hash of the first |
| 1023 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1024 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1025 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1026 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1027 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1028 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1029 | * The key offset for the implicit back refs is the first byte of |
| 1030 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1031 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1032 | * When a file extent is allocated, The implicit back refs is used. |
| 1033 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1034 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1035 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 1036 | * |
| 1037 | * When a file extent is removed file truncation, we find the |
| 1038 | * corresponding implicit back refs and check the following fields: |
| 1039 | * |
| 1040 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1041 | * |
| 1042 | * Btree extents can be referenced by: |
| 1043 | * |
| 1044 | * - Different subvolumes |
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 | * Both the implicit back refs and the full back refs for tree blocks |
| 1047 | * only consist of key. The key offset for the implicit back refs is |
| 1048 | * objectid of block's owner tree. The key offset for the full back refs |
| 1049 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1050 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1051 | * When implicit back refs is used, information about the lowest key and |
| 1052 | * level of the tree block are required. These information are stored in |
| 1053 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1054 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1055 | |
Liu Bo | 167ce95 | 2017-08-18 15:15:18 -0600 | [diff] [blame] | 1056 | /* |
| 1057 | * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required, |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 1058 | * is_data == BTRFS_REF_TYPE_DATA, data type is requiried, |
Liu Bo | 167ce95 | 2017-08-18 15:15:18 -0600 | [diff] [blame] | 1059 | * is_data == BTRFS_REF_TYPE_ANY, either type is OK. |
| 1060 | */ |
| 1061 | int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb, |
| 1062 | struct btrfs_extent_inline_ref *iref, |
| 1063 | enum btrfs_inline_ref_type is_data) |
| 1064 | { |
| 1065 | int type = btrfs_extent_inline_ref_type(eb, iref); |
Liu Bo | 64ecdb6 | 2017-08-18 15:15:24 -0600 | [diff] [blame] | 1066 | u64 offset = btrfs_extent_inline_ref_offset(eb, iref); |
Liu Bo | 167ce95 | 2017-08-18 15:15:18 -0600 | [diff] [blame] | 1067 | |
| 1068 | if (type == BTRFS_TREE_BLOCK_REF_KEY || |
| 1069 | type == BTRFS_SHARED_BLOCK_REF_KEY || |
| 1070 | type == BTRFS_SHARED_DATA_REF_KEY || |
| 1071 | type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1072 | if (is_data == BTRFS_REF_TYPE_BLOCK) { |
Liu Bo | 64ecdb6 | 2017-08-18 15:15:24 -0600 | [diff] [blame] | 1073 | if (type == BTRFS_TREE_BLOCK_REF_KEY) |
Liu Bo | 167ce95 | 2017-08-18 15:15:18 -0600 | [diff] [blame] | 1074 | return type; |
Liu Bo | 64ecdb6 | 2017-08-18 15:15:24 -0600 | [diff] [blame] | 1075 | if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1076 | ASSERT(eb->fs_info); |
| 1077 | /* |
| 1078 | * Every shared one has parent tree |
| 1079 | * block, which must be aligned to |
| 1080 | * nodesize. |
| 1081 | */ |
| 1082 | if (offset && |
| 1083 | IS_ALIGNED(offset, eb->fs_info->nodesize)) |
| 1084 | return type; |
| 1085 | } |
Liu Bo | 167ce95 | 2017-08-18 15:15:18 -0600 | [diff] [blame] | 1086 | } else if (is_data == BTRFS_REF_TYPE_DATA) { |
Liu Bo | 64ecdb6 | 2017-08-18 15:15:24 -0600 | [diff] [blame] | 1087 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
Liu Bo | 167ce95 | 2017-08-18 15:15:18 -0600 | [diff] [blame] | 1088 | return type; |
Liu Bo | 64ecdb6 | 2017-08-18 15:15:24 -0600 | [diff] [blame] | 1089 | if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1090 | ASSERT(eb->fs_info); |
| 1091 | /* |
| 1092 | * Every shared one has parent tree |
| 1093 | * block, which must be aligned to |
| 1094 | * nodesize. |
| 1095 | */ |
| 1096 | if (offset && |
| 1097 | IS_ALIGNED(offset, eb->fs_info->nodesize)) |
| 1098 | return type; |
| 1099 | } |
Liu Bo | 167ce95 | 2017-08-18 15:15:18 -0600 | [diff] [blame] | 1100 | } else { |
| 1101 | ASSERT(is_data == BTRFS_REF_TYPE_ANY); |
| 1102 | return type; |
| 1103 | } |
| 1104 | } |
| 1105 | |
| 1106 | btrfs_print_leaf((struct extent_buffer *)eb); |
| 1107 | btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d", |
| 1108 | eb->start, type); |
| 1109 | WARN_ON(1); |
| 1110 | |
| 1111 | return BTRFS_REF_TYPE_INVALID; |
| 1112 | } |
| 1113 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1114 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1115 | { |
| 1116 | u32 high_crc = ~(u32)0; |
| 1117 | u32 low_crc = ~(u32)0; |
| 1118 | __le64 lenum; |
| 1119 | |
| 1120 | lenum = cpu_to_le64(root_objectid); |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 1121 | high_crc = crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1122 | lenum = cpu_to_le64(owner); |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 1123 | low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1124 | lenum = cpu_to_le64(offset); |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 1125 | low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1126 | |
| 1127 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1128 | } |
| 1129 | |
| 1130 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1131 | struct btrfs_extent_data_ref *ref) |
| 1132 | { |
| 1133 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1134 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1135 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1136 | } |
| 1137 | |
| 1138 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1139 | struct btrfs_extent_data_ref *ref, |
| 1140 | u64 root_objectid, u64 owner, u64 offset) |
| 1141 | { |
| 1142 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1143 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1144 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1145 | return 0; |
| 1146 | return 1; |
| 1147 | } |
| 1148 | |
| 1149 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1150 | struct btrfs_path *path, |
| 1151 | u64 bytenr, u64 parent, |
| 1152 | u64 root_objectid, |
| 1153 | u64 owner, u64 offset) |
| 1154 | { |
Nikolay Borisov | bd1d53e | 2018-06-20 15:48:51 +0300 | [diff] [blame] | 1155 | struct btrfs_root *root = trans->fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1156 | struct btrfs_key key; |
| 1157 | struct btrfs_extent_data_ref *ref; |
| 1158 | struct extent_buffer *leaf; |
| 1159 | u32 nritems; |
| 1160 | int ret; |
| 1161 | int recow; |
| 1162 | int err = -ENOENT; |
| 1163 | |
| 1164 | key.objectid = bytenr; |
| 1165 | if (parent) { |
| 1166 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1167 | key.offset = parent; |
| 1168 | } else { |
| 1169 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1170 | key.offset = hash_extent_data_ref(root_objectid, |
| 1171 | owner, offset); |
| 1172 | } |
| 1173 | again: |
| 1174 | recow = 0; |
| 1175 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1176 | if (ret < 0) { |
| 1177 | err = ret; |
| 1178 | goto fail; |
| 1179 | } |
| 1180 | |
| 1181 | if (parent) { |
| 1182 | if (!ret) |
| 1183 | return 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1184 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1185 | } |
| 1186 | |
| 1187 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1188 | nritems = btrfs_header_nritems(leaf); |
| 1189 | while (1) { |
| 1190 | if (path->slots[0] >= nritems) { |
| 1191 | ret = btrfs_next_leaf(root, path); |
| 1192 | if (ret < 0) |
| 1193 | err = ret; |
| 1194 | if (ret) |
| 1195 | goto fail; |
| 1196 | |
| 1197 | leaf = path->nodes[0]; |
| 1198 | nritems = btrfs_header_nritems(leaf); |
| 1199 | recow = 1; |
| 1200 | } |
| 1201 | |
| 1202 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1203 | if (key.objectid != bytenr || |
| 1204 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1205 | goto fail; |
| 1206 | |
| 1207 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1208 | struct btrfs_extent_data_ref); |
| 1209 | |
| 1210 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1211 | owner, offset)) { |
| 1212 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1213 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1214 | goto again; |
| 1215 | } |
| 1216 | err = 0; |
| 1217 | break; |
| 1218 | } |
| 1219 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1220 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1221 | fail: |
| 1222 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1223 | } |
| 1224 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1225 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1226 | struct btrfs_path *path, |
| 1227 | u64 bytenr, u64 parent, |
| 1228 | u64 root_objectid, u64 owner, |
| 1229 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1230 | { |
Nikolay Borisov | 62b895a | 2018-06-20 15:48:44 +0300 | [diff] [blame] | 1231 | struct btrfs_root *root = trans->fs_info->extent_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1232 | struct btrfs_key key; |
| 1233 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1234 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1235 | u32 num_refs; |
| 1236 | int ret; |
| 1237 | |
| 1238 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1239 | if (parent) { |
| 1240 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1241 | key.offset = parent; |
| 1242 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1243 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1244 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1245 | key.offset = hash_extent_data_ref(root_objectid, |
| 1246 | owner, offset); |
| 1247 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1248 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1249 | |
| 1250 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1251 | if (ret && ret != -EEXIST) |
| 1252 | goto fail; |
| 1253 | |
| 1254 | leaf = path->nodes[0]; |
| 1255 | if (parent) { |
| 1256 | struct btrfs_shared_data_ref *ref; |
| 1257 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1258 | struct btrfs_shared_data_ref); |
| 1259 | if (ret == 0) { |
| 1260 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1261 | } else { |
| 1262 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1263 | num_refs += refs_to_add; |
| 1264 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1265 | } |
| 1266 | } else { |
| 1267 | struct btrfs_extent_data_ref *ref; |
| 1268 | while (ret == -EEXIST) { |
| 1269 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1270 | struct btrfs_extent_data_ref); |
| 1271 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1272 | owner, offset)) |
| 1273 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1274 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1275 | key.offset++; |
| 1276 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1277 | size); |
| 1278 | if (ret && ret != -EEXIST) |
| 1279 | goto fail; |
| 1280 | |
| 1281 | leaf = path->nodes[0]; |
| 1282 | } |
| 1283 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1284 | struct btrfs_extent_data_ref); |
| 1285 | if (ret == 0) { |
| 1286 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1287 | root_objectid); |
| 1288 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1289 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1290 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1291 | } else { |
| 1292 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1293 | num_refs += refs_to_add; |
| 1294 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1295 | } |
| 1296 | } |
| 1297 | btrfs_mark_buffer_dirty(leaf); |
| 1298 | ret = 0; |
| 1299 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1300 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1301 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1302 | } |
| 1303 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1304 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1305 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1306 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1307 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1308 | struct btrfs_key key; |
| 1309 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1310 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1311 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1312 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1313 | int ret = 0; |
| 1314 | |
| 1315 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1316 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1317 | |
| 1318 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1319 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1320 | struct btrfs_extent_data_ref); |
| 1321 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1322 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1323 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1324 | struct btrfs_shared_data_ref); |
| 1325 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
David Sterba | 6d8ff4e | 2018-06-26 16:20:59 +0200 | [diff] [blame] | 1326 | } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) { |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 1327 | btrfs_print_v0_err(trans->fs_info); |
| 1328 | btrfs_abort_transaction(trans, -EINVAL); |
| 1329 | return -EINVAL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1330 | } else { |
| 1331 | BUG(); |
| 1332 | } |
| 1333 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1334 | BUG_ON(num_refs < refs_to_drop); |
| 1335 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1336 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1337 | if (num_refs == 0) { |
Nikolay Borisov | e9f6290 | 2018-06-20 15:48:46 +0300 | [diff] [blame] | 1338 | ret = btrfs_del_item(trans, trans->fs_info->extent_root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1339 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1340 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1341 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1342 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1343 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1344 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1345 | btrfs_mark_buffer_dirty(leaf); |
| 1346 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1347 | return ret; |
| 1348 | } |
| 1349 | |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 1350 | static noinline u32 extent_data_ref_count(struct btrfs_path *path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1351 | struct btrfs_extent_inline_ref *iref) |
| 1352 | { |
| 1353 | struct btrfs_key key; |
| 1354 | struct extent_buffer *leaf; |
| 1355 | struct btrfs_extent_data_ref *ref1; |
| 1356 | struct btrfs_shared_data_ref *ref2; |
| 1357 | u32 num_refs = 0; |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 1358 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1359 | |
| 1360 | leaf = path->nodes[0]; |
| 1361 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 1362 | |
| 1363 | BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1364 | if (iref) { |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 1365 | /* |
| 1366 | * If type is invalid, we should have bailed out earlier than |
| 1367 | * this call. |
| 1368 | */ |
| 1369 | type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA); |
| 1370 | ASSERT(type != BTRFS_REF_TYPE_INVALID); |
| 1371 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1372 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1373 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1374 | } else { |
| 1375 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1376 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1377 | } |
| 1378 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1379 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1380 | struct btrfs_extent_data_ref); |
| 1381 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1382 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1383 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1384 | struct btrfs_shared_data_ref); |
| 1385 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1386 | } else { |
| 1387 | WARN_ON(1); |
| 1388 | } |
| 1389 | return num_refs; |
| 1390 | } |
| 1391 | |
| 1392 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1393 | struct btrfs_path *path, |
| 1394 | u64 bytenr, u64 parent, |
| 1395 | u64 root_objectid) |
| 1396 | { |
Nikolay Borisov | b8582ee | 2018-06-20 15:48:50 +0300 | [diff] [blame] | 1397 | struct btrfs_root *root = trans->fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1398 | struct btrfs_key key; |
| 1399 | int ret; |
| 1400 | |
| 1401 | key.objectid = bytenr; |
| 1402 | if (parent) { |
| 1403 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1404 | key.offset = parent; |
| 1405 | } else { |
| 1406 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1407 | key.offset = root_objectid; |
| 1408 | } |
| 1409 | |
| 1410 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1411 | if (ret > 0) |
| 1412 | ret = -ENOENT; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1413 | return ret; |
| 1414 | } |
| 1415 | |
| 1416 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1417 | struct btrfs_path *path, |
| 1418 | u64 bytenr, u64 parent, |
| 1419 | u64 root_objectid) |
| 1420 | { |
| 1421 | struct btrfs_key key; |
| 1422 | int ret; |
| 1423 | |
| 1424 | key.objectid = bytenr; |
| 1425 | if (parent) { |
| 1426 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1427 | key.offset = parent; |
| 1428 | } else { |
| 1429 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1430 | key.offset = root_objectid; |
| 1431 | } |
| 1432 | |
Nikolay Borisov | 1072840 | 2018-06-20 15:48:43 +0300 | [diff] [blame] | 1433 | ret = btrfs_insert_empty_item(trans, trans->fs_info->extent_root, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1434 | path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1435 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1436 | return ret; |
| 1437 | } |
| 1438 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1439 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1440 | { |
| 1441 | int type; |
| 1442 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1443 | if (parent > 0) |
| 1444 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1445 | else |
| 1446 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1447 | } else { |
| 1448 | if (parent > 0) |
| 1449 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1450 | else |
| 1451 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1452 | } |
| 1453 | return type; |
| 1454 | } |
| 1455 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1456 | static int find_next_key(struct btrfs_path *path, int level, |
| 1457 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1458 | |
| 1459 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1460 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1461 | if (!path->nodes[level]) |
| 1462 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1463 | if (path->slots[level] + 1 >= |
| 1464 | btrfs_header_nritems(path->nodes[level])) |
| 1465 | continue; |
| 1466 | if (level == 0) |
| 1467 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1468 | path->slots[level] + 1); |
| 1469 | else |
| 1470 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1471 | path->slots[level] + 1); |
| 1472 | return 0; |
| 1473 | } |
| 1474 | return 1; |
| 1475 | } |
| 1476 | |
| 1477 | /* |
| 1478 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1479 | * to the address of inline back ref, and 0 is returned. |
| 1480 | * |
| 1481 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1482 | * should be inserted, and -ENOENT is returned. |
| 1483 | * |
| 1484 | * if insert is true and there are too many inline back refs, the path |
| 1485 | * points to the extent item, and -EAGAIN is returned. |
| 1486 | * |
| 1487 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1488 | * items in the tree are ordered. |
| 1489 | */ |
| 1490 | static noinline_for_stack |
| 1491 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1492 | struct btrfs_path *path, |
| 1493 | struct btrfs_extent_inline_ref **ref_ret, |
| 1494 | u64 bytenr, u64 num_bytes, |
| 1495 | u64 parent, u64 root_objectid, |
| 1496 | u64 owner, u64 offset, int insert) |
| 1497 | { |
Nikolay Borisov | 867cc1f | 2018-06-20 15:48:48 +0300 | [diff] [blame] | 1498 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1499 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1500 | struct btrfs_key key; |
| 1501 | struct extent_buffer *leaf; |
| 1502 | struct btrfs_extent_item *ei; |
| 1503 | struct btrfs_extent_inline_ref *iref; |
| 1504 | u64 flags; |
| 1505 | u64 item_size; |
| 1506 | unsigned long ptr; |
| 1507 | unsigned long end; |
| 1508 | int extra_size; |
| 1509 | int type; |
| 1510 | int want; |
| 1511 | int ret; |
| 1512 | int err = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1513 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 1514 | int needed; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1515 | |
| 1516 | key.objectid = bytenr; |
| 1517 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1518 | key.offset = num_bytes; |
| 1519 | |
| 1520 | want = extent_ref_type(parent, owner); |
| 1521 | if (insert) { |
| 1522 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1523 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1524 | } else |
| 1525 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1526 | |
| 1527 | /* |
Nikolay Borisov | 16d1c06 | 2018-06-18 14:59:26 +0300 | [diff] [blame] | 1528 | * Owner is our level, so we can just add one to get the level for the |
| 1529 | * block we are interested in. |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1530 | */ |
| 1531 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1532 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1533 | key.offset = owner; |
| 1534 | } |
| 1535 | |
| 1536 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1537 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1538 | if (ret < 0) { |
| 1539 | err = ret; |
| 1540 | goto out; |
| 1541 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1542 | |
| 1543 | /* |
| 1544 | * We may be a newly converted file system which still has the old fat |
| 1545 | * extent entries for metadata, so try and see if we have one of those. |
| 1546 | */ |
| 1547 | if (ret > 0 && skinny_metadata) { |
| 1548 | skinny_metadata = false; |
| 1549 | if (path->slots[0]) { |
| 1550 | path->slots[0]--; |
| 1551 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1552 | path->slots[0]); |
| 1553 | if (key.objectid == bytenr && |
| 1554 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1555 | key.offset == num_bytes) |
| 1556 | ret = 0; |
| 1557 | } |
| 1558 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1559 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1560 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1561 | key.offset = num_bytes; |
| 1562 | btrfs_release_path(path); |
| 1563 | goto again; |
| 1564 | } |
| 1565 | } |
| 1566 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1567 | if (ret && !insert) { |
| 1568 | err = -ENOENT; |
| 1569 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1570 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1571 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1572 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1573 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1574 | |
| 1575 | leaf = path->nodes[0]; |
| 1576 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
David Sterba | 6d8ff4e | 2018-06-26 16:20:59 +0200 | [diff] [blame] | 1577 | if (unlikely(item_size < sizeof(*ei))) { |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 1578 | err = -EINVAL; |
| 1579 | btrfs_print_v0_err(fs_info); |
| 1580 | btrfs_abort_transaction(trans, err); |
| 1581 | goto out; |
| 1582 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1583 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1584 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1585 | flags = btrfs_extent_flags(leaf, ei); |
| 1586 | |
| 1587 | ptr = (unsigned long)(ei + 1); |
| 1588 | end = (unsigned long)ei + item_size; |
| 1589 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1590 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1591 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1592 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1593 | } |
| 1594 | |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 1595 | if (owner >= BTRFS_FIRST_FREE_OBJECTID) |
| 1596 | needed = BTRFS_REF_TYPE_DATA; |
| 1597 | else |
| 1598 | needed = BTRFS_REF_TYPE_BLOCK; |
| 1599 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1600 | err = -ENOENT; |
| 1601 | while (1) { |
| 1602 | if (ptr >= end) { |
| 1603 | WARN_ON(ptr > end); |
| 1604 | break; |
| 1605 | } |
| 1606 | iref = (struct btrfs_extent_inline_ref *)ptr; |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 1607 | type = btrfs_get_extent_inline_ref_type(leaf, iref, needed); |
| 1608 | if (type == BTRFS_REF_TYPE_INVALID) { |
Su Yue | af431dc | 2018-06-22 16:18:01 +0800 | [diff] [blame] | 1609 | err = -EUCLEAN; |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 1610 | goto out; |
| 1611 | } |
| 1612 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1613 | if (want < type) |
| 1614 | break; |
| 1615 | if (want > type) { |
| 1616 | ptr += btrfs_extent_inline_ref_size(type); |
| 1617 | continue; |
| 1618 | } |
| 1619 | |
| 1620 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1621 | struct btrfs_extent_data_ref *dref; |
| 1622 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1623 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1624 | owner, offset)) { |
| 1625 | err = 0; |
| 1626 | break; |
| 1627 | } |
| 1628 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1629 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1630 | break; |
| 1631 | } else { |
| 1632 | u64 ref_offset; |
| 1633 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1634 | if (parent > 0) { |
| 1635 | if (parent == ref_offset) { |
| 1636 | err = 0; |
| 1637 | break; |
| 1638 | } |
| 1639 | if (ref_offset < parent) |
| 1640 | break; |
| 1641 | } else { |
| 1642 | if (root_objectid == ref_offset) { |
| 1643 | err = 0; |
| 1644 | break; |
| 1645 | } |
| 1646 | if (ref_offset < root_objectid) |
| 1647 | break; |
| 1648 | } |
| 1649 | } |
| 1650 | ptr += btrfs_extent_inline_ref_size(type); |
| 1651 | } |
| 1652 | if (err == -ENOENT && insert) { |
| 1653 | if (item_size + extra_size >= |
| 1654 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1655 | err = -EAGAIN; |
| 1656 | goto out; |
| 1657 | } |
| 1658 | /* |
| 1659 | * To add new inline back ref, we have to make sure |
| 1660 | * there is no corresponding back ref item. |
| 1661 | * For simplicity, we just do not add new inline back |
| 1662 | * ref if there is any kind of item for this block |
| 1663 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1664 | if (find_next_key(path, 0, &key) == 0 && |
| 1665 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1666 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1667 | err = -EAGAIN; |
| 1668 | goto out; |
| 1669 | } |
| 1670 | } |
| 1671 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1672 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1673 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1674 | path->keep_locks = 0; |
| 1675 | btrfs_unlock_up_safe(path, 1); |
| 1676 | } |
| 1677 | return err; |
| 1678 | } |
| 1679 | |
| 1680 | /* |
| 1681 | * helper to add new inline back ref |
| 1682 | */ |
| 1683 | static noinline_for_stack |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1684 | void setup_inline_extent_backref(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1685 | struct btrfs_path *path, |
| 1686 | struct btrfs_extent_inline_ref *iref, |
| 1687 | u64 parent, u64 root_objectid, |
| 1688 | u64 owner, u64 offset, int refs_to_add, |
| 1689 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1690 | { |
| 1691 | struct extent_buffer *leaf; |
| 1692 | struct btrfs_extent_item *ei; |
| 1693 | unsigned long ptr; |
| 1694 | unsigned long end; |
| 1695 | unsigned long item_offset; |
| 1696 | u64 refs; |
| 1697 | int size; |
| 1698 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1699 | |
| 1700 | leaf = path->nodes[0]; |
| 1701 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1702 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1703 | |
| 1704 | type = extent_ref_type(parent, owner); |
| 1705 | size = btrfs_extent_inline_ref_size(type); |
| 1706 | |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1707 | btrfs_extend_item(fs_info, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1708 | |
| 1709 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1710 | refs = btrfs_extent_refs(leaf, ei); |
| 1711 | refs += refs_to_add; |
| 1712 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1713 | if (extent_op) |
| 1714 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1715 | |
| 1716 | ptr = (unsigned long)ei + item_offset; |
| 1717 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1718 | if (ptr < end - size) |
| 1719 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1720 | end - size - ptr); |
| 1721 | |
| 1722 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1723 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1724 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1725 | struct btrfs_extent_data_ref *dref; |
| 1726 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1727 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1728 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1729 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1730 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1731 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1732 | struct btrfs_shared_data_ref *sref; |
| 1733 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1734 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1735 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1736 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1737 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1738 | } else { |
| 1739 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1740 | } |
| 1741 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1742 | } |
| 1743 | |
| 1744 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1745 | struct btrfs_path *path, |
| 1746 | struct btrfs_extent_inline_ref **ref_ret, |
| 1747 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1748 | u64 root_objectid, u64 owner, u64 offset) |
| 1749 | { |
| 1750 | int ret; |
| 1751 | |
Nikolay Borisov | 867cc1f | 2018-06-20 15:48:48 +0300 | [diff] [blame] | 1752 | ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr, |
| 1753 | num_bytes, parent, root_objectid, |
| 1754 | owner, offset, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1755 | if (ret != -ENOENT) |
| 1756 | return ret; |
| 1757 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1758 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1759 | *ref_ret = NULL; |
| 1760 | |
| 1761 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Nikolay Borisov | b8582ee | 2018-06-20 15:48:50 +0300 | [diff] [blame] | 1762 | ret = lookup_tree_block_ref(trans, path, bytenr, parent, |
| 1763 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1764 | } else { |
Nikolay Borisov | bd1d53e | 2018-06-20 15:48:51 +0300 | [diff] [blame] | 1765 | ret = lookup_extent_data_ref(trans, path, bytenr, parent, |
| 1766 | root_objectid, owner, offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1767 | } |
| 1768 | return ret; |
| 1769 | } |
| 1770 | |
| 1771 | /* |
| 1772 | * helper to update/remove inline back ref |
| 1773 | */ |
| 1774 | static noinline_for_stack |
Nikolay Borisov | 61a18f1 | 2018-06-20 15:48:49 +0300 | [diff] [blame] | 1775 | void update_inline_extent_backref(struct btrfs_path *path, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1776 | struct btrfs_extent_inline_ref *iref, |
| 1777 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1778 | struct btrfs_delayed_extent_op *extent_op, |
| 1779 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1780 | { |
Nikolay Borisov | 61a18f1 | 2018-06-20 15:48:49 +0300 | [diff] [blame] | 1781 | struct extent_buffer *leaf = path->nodes[0]; |
| 1782 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1783 | struct btrfs_extent_item *ei; |
| 1784 | struct btrfs_extent_data_ref *dref = NULL; |
| 1785 | struct btrfs_shared_data_ref *sref = NULL; |
| 1786 | unsigned long ptr; |
| 1787 | unsigned long end; |
| 1788 | u32 item_size; |
| 1789 | int size; |
| 1790 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1791 | u64 refs; |
| 1792 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1793 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1794 | refs = btrfs_extent_refs(leaf, ei); |
| 1795 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1796 | refs += refs_to_mod; |
| 1797 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1798 | if (extent_op) |
| 1799 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1800 | |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 1801 | /* |
| 1802 | * If type is invalid, we should have bailed out after |
| 1803 | * lookup_inline_extent_backref(). |
| 1804 | */ |
| 1805 | type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY); |
| 1806 | ASSERT(type != BTRFS_REF_TYPE_INVALID); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1807 | |
| 1808 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1809 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1810 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1811 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1812 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1813 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1814 | } else { |
| 1815 | refs = 1; |
| 1816 | BUG_ON(refs_to_mod != -1); |
| 1817 | } |
| 1818 | |
| 1819 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1820 | refs += refs_to_mod; |
| 1821 | |
| 1822 | if (refs > 0) { |
| 1823 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1824 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1825 | else |
| 1826 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1827 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1828 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1829 | size = btrfs_extent_inline_ref_size(type); |
| 1830 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1831 | ptr = (unsigned long)iref; |
| 1832 | end = (unsigned long)ei + item_size; |
| 1833 | if (ptr + size < end) |
| 1834 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1835 | end - ptr - size); |
| 1836 | item_size -= size; |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1837 | btrfs_truncate_item(fs_info, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1838 | } |
| 1839 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | static noinline_for_stack |
| 1843 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1844 | struct btrfs_path *path, |
| 1845 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1846 | u64 root_objectid, u64 owner, |
| 1847 | u64 offset, int refs_to_add, |
| 1848 | struct btrfs_delayed_extent_op *extent_op) |
| 1849 | { |
| 1850 | struct btrfs_extent_inline_ref *iref; |
| 1851 | int ret; |
| 1852 | |
Nikolay Borisov | 867cc1f | 2018-06-20 15:48:48 +0300 | [diff] [blame] | 1853 | ret = lookup_inline_extent_backref(trans, path, &iref, bytenr, |
| 1854 | num_bytes, parent, root_objectid, |
| 1855 | owner, offset, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1856 | if (ret == 0) { |
| 1857 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Nikolay Borisov | 61a18f1 | 2018-06-20 15:48:49 +0300 | [diff] [blame] | 1858 | update_inline_extent_backref(path, iref, refs_to_add, |
| 1859 | extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1860 | } else if (ret == -ENOENT) { |
Nikolay Borisov | a639cde | 2018-06-20 15:49:10 +0300 | [diff] [blame] | 1861 | setup_inline_extent_backref(trans->fs_info, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1862 | root_objectid, owner, offset, |
| 1863 | refs_to_add, extent_op); |
| 1864 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1865 | } |
| 1866 | return ret; |
| 1867 | } |
| 1868 | |
| 1869 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1870 | struct btrfs_path *path, |
| 1871 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1872 | u64 owner, u64 offset, int refs_to_add) |
| 1873 | { |
| 1874 | int ret; |
| 1875 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1876 | BUG_ON(refs_to_add != 1); |
Nikolay Borisov | 1072840 | 2018-06-20 15:48:43 +0300 | [diff] [blame] | 1877 | ret = insert_tree_block_ref(trans, path, bytenr, parent, |
| 1878 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1879 | } else { |
Nikolay Borisov | 62b895a | 2018-06-20 15:48:44 +0300 | [diff] [blame] | 1880 | ret = insert_extent_data_ref(trans, path, bytenr, parent, |
| 1881 | root_objectid, owner, offset, |
| 1882 | refs_to_add); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1883 | } |
| 1884 | return ret; |
| 1885 | } |
| 1886 | |
| 1887 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1888 | struct btrfs_path *path, |
| 1889 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1890 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1891 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1892 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1893 | |
| 1894 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1895 | if (iref) { |
Nikolay Borisov | 61a18f1 | 2018-06-20 15:48:49 +0300 | [diff] [blame] | 1896 | update_inline_extent_backref(path, iref, -refs_to_drop, NULL, |
| 1897 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1898 | } else if (is_data) { |
Nikolay Borisov | e9f6290 | 2018-06-20 15:48:46 +0300 | [diff] [blame] | 1899 | ret = remove_extent_data_ref(trans, path, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1900 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1901 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1902 | *last_ref = 1; |
Nikolay Borisov | 87cc7a8 | 2018-06-20 15:49:12 +0300 | [diff] [blame] | 1903 | ret = btrfs_del_item(trans, trans->fs_info->extent_root, path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1904 | } |
| 1905 | return ret; |
| 1906 | } |
| 1907 | |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1908 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1909 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1910 | { |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1911 | int j, ret = 0; |
| 1912 | u64 bytes_left, end; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1913 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1914 | |
| 1915 | if (WARN_ON(start != aligned_start)) { |
| 1916 | len -= aligned_start - start; |
| 1917 | len = round_down(len, 1 << 9); |
| 1918 | start = aligned_start; |
| 1919 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1920 | |
| 1921 | *discarded_bytes = 0; |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1922 | |
| 1923 | if (!len) |
| 1924 | return 0; |
| 1925 | |
| 1926 | end = start + len; |
| 1927 | bytes_left = len; |
| 1928 | |
| 1929 | /* Skip any superblocks on this device. */ |
| 1930 | for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) { |
| 1931 | u64 sb_start = btrfs_sb_offset(j); |
| 1932 | u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE; |
| 1933 | u64 size = sb_start - start; |
| 1934 | |
| 1935 | if (!in_range(sb_start, start, bytes_left) && |
| 1936 | !in_range(sb_end, start, bytes_left) && |
| 1937 | !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE)) |
| 1938 | continue; |
| 1939 | |
| 1940 | /* |
| 1941 | * Superblock spans beginning of range. Adjust start and |
| 1942 | * try again. |
| 1943 | */ |
| 1944 | if (sb_start <= start) { |
| 1945 | start += sb_end - start; |
| 1946 | if (start > end) { |
| 1947 | bytes_left = 0; |
| 1948 | break; |
| 1949 | } |
| 1950 | bytes_left = end - start; |
| 1951 | continue; |
| 1952 | } |
| 1953 | |
| 1954 | if (size) { |
| 1955 | ret = blkdev_issue_discard(bdev, start >> 9, size >> 9, |
| 1956 | GFP_NOFS, 0); |
| 1957 | if (!ret) |
| 1958 | *discarded_bytes += size; |
| 1959 | else if (ret != -EOPNOTSUPP) |
| 1960 | return ret; |
| 1961 | } |
| 1962 | |
| 1963 | start = sb_end; |
| 1964 | if (start > end) { |
| 1965 | bytes_left = 0; |
| 1966 | break; |
| 1967 | } |
| 1968 | bytes_left = end - start; |
| 1969 | } |
| 1970 | |
| 1971 | if (bytes_left) { |
| 1972 | ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9, |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1973 | GFP_NOFS, 0); |
| 1974 | if (!ret) |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1975 | *discarded_bytes += bytes_left; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1976 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1977 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1978 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1979 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1980 | int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr, |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 1981 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1982 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1983 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 1984 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1985 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1986 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 1987 | |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 1988 | /* |
| 1989 | * Avoid races with device replace and make sure our bbio has devices |
| 1990 | * associated to its stripes that don't go away while we are discarding. |
| 1991 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1992 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1993 | /* Tell the block device(s) that the sectors can be discarded */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1994 | ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes, |
| 1995 | &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1996 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1997 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 1998 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 1999 | int i; |
| 2000 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2001 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2002 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2003 | u64 bytes; |
Anand Jain | 38b5f68 | 2017-11-29 18:53:43 +0800 | [diff] [blame] | 2004 | struct request_queue *req_q; |
| 2005 | |
Filipe Manana | 627e087 | 2018-01-30 18:40:22 +0000 | [diff] [blame] | 2006 | if (!stripe->dev->bdev) { |
| 2007 | ASSERT(btrfs_test_opt(fs_info, DEGRADED)); |
| 2008 | continue; |
| 2009 | } |
Anand Jain | 38b5f68 | 2017-11-29 18:53:43 +0800 | [diff] [blame] | 2010 | req_q = bdev_get_queue(stripe->dev->bdev); |
| 2011 | if (!blk_queue_discard(req_q)) |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2012 | continue; |
| 2013 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2014 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 2015 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2016 | stripe->length, |
| 2017 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2018 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2019 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2020 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2021 | 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] | 2022 | |
| 2023 | /* |
| 2024 | * Just in case we get back EOPNOTSUPP for some reason, |
| 2025 | * just ignore the return value so we don't screw up |
| 2026 | * people calling discard_extent. |
| 2027 | */ |
| 2028 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2029 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2030 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2031 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2032 | btrfs_bio_counter_dec(fs_info); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2033 | |
| 2034 | if (actual_bytes) |
| 2035 | *actual_bytes = discarded_bytes; |
| 2036 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2037 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2038 | if (ret == -EOPNOTSUPP) |
| 2039 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2040 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2041 | } |
| 2042 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2043 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2044 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 2045 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2046 | u64 bytenr, u64 num_bytes, u64 parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2047 | u64 root_objectid, u64 owner, u64 offset) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2048 | { |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 2049 | struct btrfs_fs_info *fs_info = root->fs_info; |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 2050 | int old_ref_mod, new_ref_mod; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2051 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2052 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2053 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 2054 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2055 | |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 2056 | btrfs_ref_tree_mod(root, bytenr, num_bytes, parent, root_objectid, |
| 2057 | owner, offset, BTRFS_ADD_DELAYED_REF); |
| 2058 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2059 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Nikolay Borisov | 44e1c47 | 2018-06-20 15:48:53 +0300 | [diff] [blame] | 2060 | ret = btrfs_add_delayed_tree_ref(trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 2061 | num_bytes, parent, |
| 2062 | root_objectid, (int)owner, |
| 2063 | BTRFS_ADD_DELAYED_REF, NULL, |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 2064 | &old_ref_mod, &new_ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2065 | } else { |
Nikolay Borisov | 88a979c | 2018-06-20 15:48:54 +0300 | [diff] [blame] | 2066 | ret = btrfs_add_delayed_data_ref(trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 2067 | num_bytes, parent, |
| 2068 | root_objectid, owner, offset, |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 2069 | 0, BTRFS_ADD_DELAYED_REF, |
| 2070 | &old_ref_mod, &new_ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2071 | } |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 2072 | |
Nikolay Borisov | 29d2b84 | 2018-03-30 12:58:47 +0300 | [diff] [blame] | 2073 | if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0) { |
| 2074 | bool metadata = owner < BTRFS_FIRST_FREE_OBJECTID; |
| 2075 | |
| 2076 | add_pinned_bytes(fs_info, -num_bytes, metadata, root_objectid); |
| 2077 | } |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 2078 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2079 | return ret; |
| 2080 | } |
| 2081 | |
Nikolay Borisov | bd3c685 | 2018-06-18 14:59:25 +0300 | [diff] [blame] | 2082 | /* |
| 2083 | * __btrfs_inc_extent_ref - insert backreference for a given extent |
| 2084 | * |
| 2085 | * @trans: Handle of transaction |
| 2086 | * |
| 2087 | * @node: The delayed ref node used to get the bytenr/length for |
| 2088 | * extent whose references are incremented. |
| 2089 | * |
| 2090 | * @parent: If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/ |
| 2091 | * BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical |
| 2092 | * bytenr of the parent block. Since new extents are always |
| 2093 | * created with indirect references, this will only be the case |
| 2094 | * when relocating a shared extent. In that case, root_objectid |
| 2095 | * will be BTRFS_TREE_RELOC_OBJECTID. Otheriwse, parent must |
| 2096 | * be 0 |
| 2097 | * |
| 2098 | * @root_objectid: The id of the root where this modification has originated, |
| 2099 | * this can be either one of the well-known metadata trees or |
| 2100 | * the subvolume id which references this extent. |
| 2101 | * |
| 2102 | * @owner: For data extents it is the inode number of the owning file. |
| 2103 | * For metadata extents this parameter holds the level in the |
| 2104 | * tree of the extent. |
| 2105 | * |
| 2106 | * @offset: For metadata extents the offset is ignored and is currently |
| 2107 | * always passed as 0. For data extents it is the fileoffset |
| 2108 | * this extent belongs to. |
| 2109 | * |
| 2110 | * @refs_to_add Number of references to add |
| 2111 | * |
| 2112 | * @extent_op Pointer to a structure, holding information necessary when |
| 2113 | * updating a tree block's flags |
| 2114 | * |
| 2115 | */ |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2116 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2117 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2118 | u64 parent, u64 root_objectid, |
| 2119 | u64 owner, u64 offset, int refs_to_add, |
| 2120 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2121 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2122 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2123 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2124 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2125 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2126 | u64 bytenr = node->bytenr; |
| 2127 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2128 | u64 refs; |
| 2129 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2130 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2131 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2132 | if (!path) |
| 2133 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2134 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2135 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2136 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2137 | /* this will setup the path even if it fails to insert the back ref */ |
Nikolay Borisov | a639cde | 2018-06-20 15:49:10 +0300 | [diff] [blame] | 2138 | ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes, |
| 2139 | parent, root_objectid, owner, |
| 2140 | offset, refs_to_add, extent_op); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 2141 | if ((ret < 0 && ret != -EAGAIN) || !ret) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2142 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2143 | |
| 2144 | /* |
| 2145 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2146 | * inline extent ref, so just update the reference count and add a |
| 2147 | * normal backref. |
| 2148 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2149 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2150 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2151 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2152 | refs = btrfs_extent_refs(leaf, item); |
| 2153 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2154 | if (extent_op) |
| 2155 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2156 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2157 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2158 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2159 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2160 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2161 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2162 | /* now insert the actual backref */ |
Nikolay Borisov | 3759341 | 2018-06-20 15:48:45 +0300 | [diff] [blame] | 2163 | ret = insert_extent_backref(trans, path, bytenr, parent, root_objectid, |
| 2164 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2165 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2166 | btrfs_abort_transaction(trans, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2167 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2168 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2169 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2170 | } |
| 2171 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2172 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2173 | struct btrfs_delayed_ref_node *node, |
| 2174 | struct btrfs_delayed_extent_op *extent_op, |
| 2175 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2176 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2177 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2178 | struct btrfs_delayed_data_ref *ref; |
| 2179 | struct btrfs_key ins; |
| 2180 | u64 parent = 0; |
| 2181 | u64 ref_root = 0; |
| 2182 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2183 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2184 | ins.objectid = node->bytenr; |
| 2185 | ins.offset = node->num_bytes; |
| 2186 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2187 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2188 | ref = btrfs_delayed_node_to_data_ref(node); |
Nikolay Borisov | 2bf98ef | 2018-06-20 15:49:00 +0300 | [diff] [blame] | 2189 | trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2190 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2191 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2192 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2193 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2194 | |
| 2195 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2196 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2197 | flags |= extent_op->flags_to_set; |
Nikolay Borisov | ef89b82 | 2018-06-20 15:48:58 +0300 | [diff] [blame] | 2198 | ret = alloc_reserved_file_extent(trans, parent, ref_root, |
| 2199 | flags, ref->objectid, |
| 2200 | ref->offset, &ins, |
| 2201 | node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2202 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Nikolay Borisov | 2590d0f | 2018-06-20 15:48:59 +0300 | [diff] [blame] | 2203 | ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root, |
| 2204 | ref->objectid, ref->offset, |
| 2205 | node->ref_mod, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2206 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Nikolay Borisov | e72cb92 | 2018-06-20 15:48:57 +0300 | [diff] [blame] | 2207 | ret = __btrfs_free_extent(trans, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2208 | ref_root, ref->objectid, |
| 2209 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2210 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2211 | } else { |
| 2212 | BUG(); |
| 2213 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2214 | return ret; |
| 2215 | } |
| 2216 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2217 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2218 | struct extent_buffer *leaf, |
| 2219 | struct btrfs_extent_item *ei) |
| 2220 | { |
| 2221 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2222 | if (extent_op->update_flags) { |
| 2223 | flags |= extent_op->flags_to_set; |
| 2224 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2225 | } |
| 2226 | |
| 2227 | if (extent_op->update_key) { |
| 2228 | struct btrfs_tree_block_info *bi; |
| 2229 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2230 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2231 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2232 | } |
| 2233 | } |
| 2234 | |
| 2235 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2236 | struct btrfs_delayed_ref_head *head, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2237 | struct btrfs_delayed_extent_op *extent_op) |
| 2238 | { |
Nikolay Borisov | 20b9a2d | 2018-06-20 15:49:01 +0300 | [diff] [blame] | 2239 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2240 | struct btrfs_key key; |
| 2241 | struct btrfs_path *path; |
| 2242 | struct btrfs_extent_item *ei; |
| 2243 | struct extent_buffer *leaf; |
| 2244 | u32 item_size; |
| 2245 | int ret; |
| 2246 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2247 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2248 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2249 | if (trans->aborted) |
| 2250 | return 0; |
| 2251 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2252 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2253 | metadata = 0; |
| 2254 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2255 | path = btrfs_alloc_path(); |
| 2256 | if (!path) |
| 2257 | return -ENOMEM; |
| 2258 | |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2259 | key.objectid = head->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2260 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2261 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2262 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2263 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2264 | } else { |
| 2265 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2266 | key.offset = head->num_bytes; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2267 | } |
| 2268 | |
| 2269 | again: |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2270 | path->reada = READA_FORWARD; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2271 | path->leave_spinning = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2272 | ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2273 | if (ret < 0) { |
| 2274 | err = ret; |
| 2275 | goto out; |
| 2276 | } |
| 2277 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2278 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2279 | if (path->slots[0] > 0) { |
| 2280 | path->slots[0]--; |
| 2281 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2282 | path->slots[0]); |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2283 | if (key.objectid == head->bytenr && |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2284 | key.type == BTRFS_EXTENT_ITEM_KEY && |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2285 | key.offset == head->num_bytes) |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2286 | ret = 0; |
| 2287 | } |
| 2288 | if (ret > 0) { |
| 2289 | btrfs_release_path(path); |
| 2290 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2291 | |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2292 | key.objectid = head->bytenr; |
| 2293 | key.offset = head->num_bytes; |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2294 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2295 | goto again; |
| 2296 | } |
| 2297 | } else { |
| 2298 | err = -EIO; |
| 2299 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2300 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2301 | } |
| 2302 | |
| 2303 | leaf = path->nodes[0]; |
| 2304 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 2305 | |
David Sterba | 6d8ff4e | 2018-06-26 16:20:59 +0200 | [diff] [blame] | 2306 | if (unlikely(item_size < sizeof(*ei))) { |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 2307 | err = -EINVAL; |
| 2308 | btrfs_print_v0_err(fs_info); |
| 2309 | btrfs_abort_transaction(trans, err); |
| 2310 | goto out; |
| 2311 | } |
| 2312 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2313 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2314 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2315 | |
| 2316 | btrfs_mark_buffer_dirty(leaf); |
| 2317 | out: |
| 2318 | btrfs_free_path(path); |
| 2319 | return err; |
| 2320 | } |
| 2321 | |
| 2322 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2323 | struct btrfs_delayed_ref_node *node, |
| 2324 | struct btrfs_delayed_extent_op *extent_op, |
| 2325 | int insert_reserved) |
| 2326 | { |
| 2327 | int ret = 0; |
| 2328 | struct btrfs_delayed_tree_ref *ref; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2329 | u64 parent = 0; |
| 2330 | u64 ref_root = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2331 | |
| 2332 | ref = btrfs_delayed_node_to_tree_ref(node); |
Nikolay Borisov | f97806f | 2018-06-20 15:49:04 +0300 | [diff] [blame] | 2333 | trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2334 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2335 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2336 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2337 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2338 | |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2339 | if (node->ref_mod != 1) { |
Nikolay Borisov | f97806f | 2018-06-20 15:49:04 +0300 | [diff] [blame] | 2340 | btrfs_err(trans->fs_info, |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2341 | "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu", |
| 2342 | node->bytenr, node->ref_mod, node->action, ref_root, |
| 2343 | parent); |
| 2344 | return -EIO; |
| 2345 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2346 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2347 | BUG_ON(!extent_op || !extent_op->update_flags); |
Nikolay Borisov | 21ebfbe | 2018-05-21 12:27:22 +0300 | [diff] [blame] | 2348 | ret = alloc_reserved_tree_block(trans, node, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2349 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Nikolay Borisov | 2590d0f | 2018-06-20 15:48:59 +0300 | [diff] [blame] | 2350 | ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root, |
| 2351 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2352 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Nikolay Borisov | e72cb92 | 2018-06-20 15:48:57 +0300 | [diff] [blame] | 2353 | ret = __btrfs_free_extent(trans, node, parent, ref_root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2354 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2355 | } else { |
| 2356 | BUG(); |
| 2357 | } |
| 2358 | return ret; |
| 2359 | } |
| 2360 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2361 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2362 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2363 | struct btrfs_delayed_ref_node *node, |
| 2364 | struct btrfs_delayed_extent_op *extent_op, |
| 2365 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2366 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2367 | int ret = 0; |
| 2368 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2369 | if (trans->aborted) { |
| 2370 | if (insert_reserved) |
Nikolay Borisov | 5fac7f9 | 2018-06-20 15:49:11 +0300 | [diff] [blame] | 2371 | btrfs_pin_extent(trans->fs_info, node->bytenr, |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2372 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2373 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2374 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2375 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2376 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2377 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
Nikolay Borisov | f97806f | 2018-06-20 15:49:04 +0300 | [diff] [blame] | 2378 | ret = run_delayed_tree_ref(trans, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2379 | insert_reserved); |
| 2380 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2381 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
Nikolay Borisov | 2bf98ef | 2018-06-20 15:49:00 +0300 | [diff] [blame] | 2382 | ret = run_delayed_data_ref(trans, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2383 | insert_reserved); |
| 2384 | else |
| 2385 | BUG(); |
Josef Bacik | 80ee54b | 2018-10-11 15:54:22 -0400 | [diff] [blame] | 2386 | if (ret && insert_reserved) |
| 2387 | btrfs_pin_extent(trans->fs_info, node->bytenr, |
| 2388 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2389 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2390 | } |
| 2391 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2392 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2393 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2394 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2395 | struct btrfs_delayed_ref_node *ref; |
| 2396 | |
Liu Bo | e3d0396 | 2018-08-23 03:51:50 +0800 | [diff] [blame] | 2397 | if (RB_EMPTY_ROOT(&head->ref_tree.rb_root)) |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2398 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2399 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2400 | /* |
| 2401 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2402 | * This is to prevent a ref count from going down to zero, which deletes |
| 2403 | * the extent item from the extent tree, when there still are references |
| 2404 | * to add, which would fail because they would not find the extent item. |
| 2405 | */ |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2406 | if (!list_empty(&head->ref_add_list)) |
| 2407 | return list_first_entry(&head->ref_add_list, |
| 2408 | struct btrfs_delayed_ref_node, add_list); |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2409 | |
Liu Bo | e3d0396 | 2018-08-23 03:51:50 +0800 | [diff] [blame] | 2410 | ref = rb_entry(rb_first_cached(&head->ref_tree), |
Josef Bacik | 0e0adbc | 2017-10-19 14:16:00 -0400 | [diff] [blame] | 2411 | struct btrfs_delayed_ref_node, ref_node); |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2412 | ASSERT(list_empty(&ref->add_list)); |
| 2413 | return ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2414 | } |
| 2415 | |
Josef Bacik | 2eadaa2 | 2017-09-29 15:43:52 -0400 | [diff] [blame] | 2416 | static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs, |
| 2417 | struct btrfs_delayed_ref_head *head) |
| 2418 | { |
| 2419 | spin_lock(&delayed_refs->lock); |
| 2420 | head->processing = 0; |
| 2421 | delayed_refs->num_heads_ready++; |
| 2422 | spin_unlock(&delayed_refs->lock); |
| 2423 | btrfs_delayed_ref_unlock(head); |
| 2424 | } |
| 2425 | |
Josef Bacik | bedc6617 | 2018-12-03 10:20:31 -0500 | [diff] [blame] | 2426 | static struct btrfs_delayed_extent_op *cleanup_extent_op( |
| 2427 | struct btrfs_delayed_ref_head *head) |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2428 | { |
| 2429 | struct btrfs_delayed_extent_op *extent_op = head->extent_op; |
Josef Bacik | bedc6617 | 2018-12-03 10:20:31 -0500 | [diff] [blame] | 2430 | |
| 2431 | if (!extent_op) |
| 2432 | return NULL; |
| 2433 | |
| 2434 | if (head->must_insert_reserved) { |
| 2435 | head->extent_op = NULL; |
| 2436 | btrfs_free_delayed_extent_op(extent_op); |
| 2437 | return NULL; |
| 2438 | } |
| 2439 | return extent_op; |
| 2440 | } |
| 2441 | |
| 2442 | static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans, |
| 2443 | struct btrfs_delayed_ref_head *head) |
| 2444 | { |
| 2445 | struct btrfs_delayed_extent_op *extent_op; |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2446 | int ret; |
| 2447 | |
Josef Bacik | bedc6617 | 2018-12-03 10:20:31 -0500 | [diff] [blame] | 2448 | extent_op = cleanup_extent_op(head); |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2449 | if (!extent_op) |
| 2450 | return 0; |
| 2451 | head->extent_op = NULL; |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2452 | spin_unlock(&head->lock); |
Nikolay Borisov | 20b9a2d | 2018-06-20 15:49:01 +0300 | [diff] [blame] | 2453 | ret = run_delayed_extent_op(trans, head, extent_op); |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2454 | btrfs_free_delayed_extent_op(extent_op); |
| 2455 | return ret ? ret : 1; |
| 2456 | } |
| 2457 | |
Josef Bacik | 31890da | 2018-11-21 14:05:41 -0500 | [diff] [blame] | 2458 | void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info, |
| 2459 | struct btrfs_delayed_ref_root *delayed_refs, |
| 2460 | struct btrfs_delayed_ref_head *head) |
Josef Bacik | 07c4777 | 2018-12-03 10:20:30 -0500 | [diff] [blame] | 2461 | { |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 2462 | int nr_items = 1; /* Dropping this ref head update. */ |
Josef Bacik | 07c4777 | 2018-12-03 10:20:30 -0500 | [diff] [blame] | 2463 | |
| 2464 | if (head->total_ref_mod < 0) { |
| 2465 | struct btrfs_space_info *space_info; |
| 2466 | u64 flags; |
| 2467 | |
| 2468 | if (head->is_data) |
| 2469 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 2470 | else if (head->is_system) |
| 2471 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 2472 | else |
| 2473 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 2474 | space_info = __find_space_info(fs_info, flags); |
| 2475 | ASSERT(space_info); |
| 2476 | percpu_counter_add_batch(&space_info->total_bytes_pinned, |
| 2477 | -head->num_bytes, |
| 2478 | BTRFS_TOTAL_BYTES_PINNED_BATCH); |
| 2479 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 2480 | /* |
| 2481 | * We had csum deletions accounted for in our delayed refs rsv, |
| 2482 | * we need to drop the csum leaves for this update from our |
| 2483 | * delayed_refs_rsv. |
| 2484 | */ |
Josef Bacik | 07c4777 | 2018-12-03 10:20:30 -0500 | [diff] [blame] | 2485 | if (head->is_data) { |
| 2486 | spin_lock(&delayed_refs->lock); |
| 2487 | delayed_refs->pending_csums -= head->num_bytes; |
| 2488 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 2489 | nr_items += btrfs_csum_bytes_to_leaves(fs_info, |
| 2490 | head->num_bytes); |
Josef Bacik | 07c4777 | 2018-12-03 10:20:30 -0500 | [diff] [blame] | 2491 | } |
| 2492 | } |
| 2493 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 2494 | btrfs_delayed_refs_rsv_release(fs_info, nr_items); |
Josef Bacik | 07c4777 | 2018-12-03 10:20:30 -0500 | [diff] [blame] | 2495 | } |
| 2496 | |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2497 | static int cleanup_ref_head(struct btrfs_trans_handle *trans, |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2498 | struct btrfs_delayed_ref_head *head) |
| 2499 | { |
Nikolay Borisov | f9871ed | 2018-06-20 15:49:03 +0300 | [diff] [blame] | 2500 | |
| 2501 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2502 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2503 | int ret; |
| 2504 | |
| 2505 | delayed_refs = &trans->transaction->delayed_refs; |
| 2506 | |
Josef Bacik | bedc6617 | 2018-12-03 10:20:31 -0500 | [diff] [blame] | 2507 | ret = run_and_cleanup_extent_op(trans, head); |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2508 | if (ret < 0) { |
| 2509 | unselect_delayed_ref_head(delayed_refs, head); |
| 2510 | btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret); |
| 2511 | return ret; |
| 2512 | } else if (ret) { |
| 2513 | return ret; |
| 2514 | } |
| 2515 | |
| 2516 | /* |
| 2517 | * Need to drop our head ref lock and re-acquire the delayed ref lock |
| 2518 | * and then re-check to make sure nobody got added. |
| 2519 | */ |
| 2520 | spin_unlock(&head->lock); |
| 2521 | spin_lock(&delayed_refs->lock); |
| 2522 | spin_lock(&head->lock); |
Liu Bo | e3d0396 | 2018-08-23 03:51:50 +0800 | [diff] [blame] | 2523 | if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) { |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2524 | spin_unlock(&head->lock); |
| 2525 | spin_unlock(&delayed_refs->lock); |
| 2526 | return 1; |
| 2527 | } |
Josef Bacik | d7baffd | 2018-12-03 10:20:29 -0500 | [diff] [blame] | 2528 | btrfs_delete_ref_head(delayed_refs, head); |
Josef Bacik | c1103f7 | 2017-09-29 15:43:56 -0400 | [diff] [blame] | 2529 | spin_unlock(&head->lock); |
Nikolay Borisov | 1e7a142 | 2018-04-11 11:21:18 +0300 | [diff] [blame] | 2530 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | c1103f7 | 2017-09-29 15:43:56 -0400 | [diff] [blame] | 2531 | |
Josef Bacik | c1103f7 | 2017-09-29 15:43:56 -0400 | [diff] [blame] | 2532 | if (head->must_insert_reserved) { |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2533 | btrfs_pin_extent(fs_info, head->bytenr, |
| 2534 | head->num_bytes, 1); |
Josef Bacik | c1103f7 | 2017-09-29 15:43:56 -0400 | [diff] [blame] | 2535 | if (head->is_data) { |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2536 | ret = btrfs_del_csums(trans, fs_info, head->bytenr, |
| 2537 | head->num_bytes); |
Josef Bacik | c1103f7 | 2017-09-29 15:43:56 -0400 | [diff] [blame] | 2538 | } |
| 2539 | } |
| 2540 | |
Josef Bacik | 31890da | 2018-11-21 14:05:41 -0500 | [diff] [blame] | 2541 | btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head); |
Josef Bacik | 07c4777 | 2018-12-03 10:20:30 -0500 | [diff] [blame] | 2542 | |
| 2543 | trace_run_delayed_ref_head(fs_info, head, 0); |
Josef Bacik | c1103f7 | 2017-09-29 15:43:56 -0400 | [diff] [blame] | 2544 | btrfs_delayed_ref_unlock(head); |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2545 | btrfs_put_delayed_ref_head(head); |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2546 | return 0; |
| 2547 | } |
| 2548 | |
Nikolay Borisov | b1cdbcb | 2018-08-15 10:39:54 +0300 | [diff] [blame] | 2549 | static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head( |
| 2550 | struct btrfs_trans_handle *trans) |
| 2551 | { |
| 2552 | struct btrfs_delayed_ref_root *delayed_refs = |
| 2553 | &trans->transaction->delayed_refs; |
| 2554 | struct btrfs_delayed_ref_head *head = NULL; |
| 2555 | int ret; |
| 2556 | |
| 2557 | spin_lock(&delayed_refs->lock); |
Lu Fengqi | 5637c74 | 2018-10-11 13:40:33 +0800 | [diff] [blame] | 2558 | head = btrfs_select_ref_head(delayed_refs); |
Nikolay Borisov | b1cdbcb | 2018-08-15 10:39:54 +0300 | [diff] [blame] | 2559 | if (!head) { |
| 2560 | spin_unlock(&delayed_refs->lock); |
| 2561 | return head; |
| 2562 | } |
| 2563 | |
| 2564 | /* |
| 2565 | * Grab the lock that says we are going to process all the refs for |
| 2566 | * this head |
| 2567 | */ |
Lu Fengqi | 9e920a6 | 2018-10-11 13:40:34 +0800 | [diff] [blame] | 2568 | ret = btrfs_delayed_ref_lock(delayed_refs, head); |
Nikolay Borisov | b1cdbcb | 2018-08-15 10:39:54 +0300 | [diff] [blame] | 2569 | spin_unlock(&delayed_refs->lock); |
| 2570 | |
| 2571 | /* |
| 2572 | * We may have dropped the spin lock to get the head mutex lock, and |
| 2573 | * that might have given someone else time to free the head. If that's |
| 2574 | * true, it has been removed from our list and we can move on. |
| 2575 | */ |
| 2576 | if (ret == -EAGAIN) |
| 2577 | head = ERR_PTR(-EAGAIN); |
| 2578 | |
| 2579 | return head; |
| 2580 | } |
| 2581 | |
Nikolay Borisov | e726138 | 2018-08-15 10:39:55 +0300 | [diff] [blame] | 2582 | static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans, |
| 2583 | struct btrfs_delayed_ref_head *locked_ref, |
| 2584 | unsigned long *run_refs) |
| 2585 | { |
| 2586 | struct btrfs_fs_info *fs_info = trans->fs_info; |
| 2587 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2588 | struct btrfs_delayed_extent_op *extent_op; |
| 2589 | struct btrfs_delayed_ref_node *ref; |
| 2590 | int must_insert_reserved = 0; |
| 2591 | int ret; |
| 2592 | |
| 2593 | delayed_refs = &trans->transaction->delayed_refs; |
| 2594 | |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2595 | lockdep_assert_held(&locked_ref->mutex); |
| 2596 | lockdep_assert_held(&locked_ref->lock); |
| 2597 | |
Nikolay Borisov | e726138 | 2018-08-15 10:39:55 +0300 | [diff] [blame] | 2598 | while ((ref = select_delayed_ref(locked_ref))) { |
| 2599 | if (ref->seq && |
| 2600 | btrfs_check_delayed_seq(fs_info, ref->seq)) { |
| 2601 | spin_unlock(&locked_ref->lock); |
| 2602 | unselect_delayed_ref_head(delayed_refs, locked_ref); |
| 2603 | return -EAGAIN; |
| 2604 | } |
| 2605 | |
| 2606 | (*run_refs)++; |
| 2607 | ref->in_tree = 0; |
| 2608 | rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree); |
| 2609 | RB_CLEAR_NODE(&ref->ref_node); |
| 2610 | if (!list_empty(&ref->add_list)) |
| 2611 | list_del(&ref->add_list); |
| 2612 | /* |
| 2613 | * When we play the delayed ref, also correct the ref_mod on |
| 2614 | * head |
| 2615 | */ |
| 2616 | switch (ref->action) { |
| 2617 | case BTRFS_ADD_DELAYED_REF: |
| 2618 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2619 | locked_ref->ref_mod -= ref->ref_mod; |
| 2620 | break; |
| 2621 | case BTRFS_DROP_DELAYED_REF: |
| 2622 | locked_ref->ref_mod += ref->ref_mod; |
| 2623 | break; |
| 2624 | default: |
| 2625 | WARN_ON(1); |
| 2626 | } |
| 2627 | atomic_dec(&delayed_refs->num_entries); |
| 2628 | |
| 2629 | /* |
| 2630 | * Record the must_insert_reserved flag before we drop the |
| 2631 | * spin lock. |
| 2632 | */ |
| 2633 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2634 | locked_ref->must_insert_reserved = 0; |
| 2635 | |
| 2636 | extent_op = locked_ref->extent_op; |
| 2637 | locked_ref->extent_op = NULL; |
| 2638 | spin_unlock(&locked_ref->lock); |
| 2639 | |
| 2640 | ret = run_one_delayed_ref(trans, ref, extent_op, |
| 2641 | must_insert_reserved); |
| 2642 | |
| 2643 | btrfs_free_delayed_extent_op(extent_op); |
| 2644 | if (ret) { |
| 2645 | unselect_delayed_ref_head(delayed_refs, locked_ref); |
| 2646 | btrfs_put_delayed_ref(ref); |
| 2647 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", |
| 2648 | ret); |
| 2649 | return ret; |
| 2650 | } |
| 2651 | |
| 2652 | btrfs_put_delayed_ref(ref); |
| 2653 | cond_resched(); |
| 2654 | |
| 2655 | spin_lock(&locked_ref->lock); |
| 2656 | btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref); |
| 2657 | } |
| 2658 | |
| 2659 | return 0; |
| 2660 | } |
| 2661 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2662 | /* |
| 2663 | * Returns 0 on success or if called with an already aborted transaction. |
| 2664 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2665 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2666 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2667 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2668 | { |
Nikolay Borisov | 0a1e458 | 2018-03-15 16:00:27 +0200 | [diff] [blame] | 2669 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2670 | struct btrfs_delayed_ref_root *delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2671 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2672 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2673 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2674 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2675 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2676 | |
| 2677 | delayed_refs = &trans->transaction->delayed_refs; |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2678 | do { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2679 | if (!locked_ref) { |
Nikolay Borisov | b1cdbcb | 2018-08-15 10:39:54 +0300 | [diff] [blame] | 2680 | locked_ref = btrfs_obtain_ref_head(trans); |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2681 | if (IS_ERR_OR_NULL(locked_ref)) { |
| 2682 | if (PTR_ERR(locked_ref) == -EAGAIN) { |
| 2683 | continue; |
| 2684 | } else { |
| 2685 | break; |
| 2686 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2687 | } |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2688 | count++; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2689 | } |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2690 | /* |
| 2691 | * We need to try and merge add/drops of the same ref since we |
| 2692 | * can run into issues with relocate dropping the implicit ref |
| 2693 | * and then it being added back again before the drop can |
| 2694 | * finish. If we merged anything we need to re-loop so we can |
| 2695 | * get a good ref. |
| 2696 | * Or we can get node references of the same type that weren't |
| 2697 | * merged when created due to bumps in the tree mod seq, and |
| 2698 | * we need to merge them to prevent adding an inline extent |
| 2699 | * backref before dropping it (triggering a BUG_ON at |
| 2700 | * insert_inline_extent_backref()). |
| 2701 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2702 | spin_lock(&locked_ref->lock); |
Nikolay Borisov | be97f13 | 2018-04-19 11:06:39 +0300 | [diff] [blame] | 2703 | btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2704 | |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2705 | ret = btrfs_run_delayed_refs_for_head(trans, locked_ref, |
| 2706 | &actual_count); |
| 2707 | if (ret < 0 && ret != -EAGAIN) { |
| 2708 | /* |
| 2709 | * Error, btrfs_run_delayed_refs_for_head already |
| 2710 | * unlocked everything so just bail out |
| 2711 | */ |
| 2712 | return ret; |
| 2713 | } else if (!ret) { |
| 2714 | /* |
| 2715 | * Success, perform the usual cleanup of a processed |
| 2716 | * head |
| 2717 | */ |
Nikolay Borisov | f9871ed | 2018-06-20 15:49:03 +0300 | [diff] [blame] | 2718 | ret = cleanup_ref_head(trans, locked_ref); |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2719 | if (ret > 0 ) { |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2720 | /* We dropped our lock, we need to loop. */ |
| 2721 | ret = 0; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2722 | continue; |
Josef Bacik | 194ab0b | 2017-09-29 15:43:54 -0400 | [diff] [blame] | 2723 | } else if (ret) { |
| 2724 | return ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2725 | } |
Josef Bacik | c1103f7 | 2017-09-29 15:43:56 -0400 | [diff] [blame] | 2726 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2727 | |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2728 | /* |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2729 | * Either success case or btrfs_run_delayed_refs_for_head |
| 2730 | * returned -EAGAIN, meaning we need to select another head |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2731 | */ |
Josef Bacik | b00e625 | 2017-09-29 15:43:53 -0400 | [diff] [blame] | 2732 | |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2733 | locked_ref = NULL; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2734 | cond_resched(); |
Nikolay Borisov | 0110a4c | 2018-08-15 10:39:56 +0300 | [diff] [blame] | 2735 | } while ((nr != -1 && count < nr) || locked_ref); |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2736 | |
| 2737 | /* |
| 2738 | * We don't want to include ref heads since we can have empty ref heads |
| 2739 | * and those will drastically skew our runtime down since we just do |
| 2740 | * accounting, no actual extent tree updates. |
| 2741 | */ |
| 2742 | if (actual_count > 0) { |
| 2743 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2744 | u64 avg; |
| 2745 | |
| 2746 | /* |
| 2747 | * We weigh the current average higher than our current runtime |
| 2748 | * to avoid large swings in the average. |
| 2749 | */ |
| 2750 | spin_lock(&delayed_refs->lock); |
| 2751 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2752 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2753 | spin_unlock(&delayed_refs->lock); |
| 2754 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2755 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2756 | } |
| 2757 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2758 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2759 | /* |
| 2760 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2761 | * correlates in most cases to the order added. To expose dependencies on this |
| 2762 | * order, we start to process the tree in the middle instead of the beginning |
| 2763 | */ |
| 2764 | static u64 find_middle(struct rb_root *root) |
| 2765 | { |
| 2766 | struct rb_node *n = root->rb_node; |
| 2767 | struct btrfs_delayed_ref_node *entry; |
| 2768 | int alt = 1; |
| 2769 | u64 middle; |
| 2770 | u64 first = 0, last = 0; |
| 2771 | |
| 2772 | n = rb_first(root); |
| 2773 | if (n) { |
| 2774 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2775 | first = entry->bytenr; |
| 2776 | } |
| 2777 | n = rb_last(root); |
| 2778 | if (n) { |
| 2779 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2780 | last = entry->bytenr; |
| 2781 | } |
| 2782 | n = root->rb_node; |
| 2783 | |
| 2784 | while (n) { |
| 2785 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2786 | WARN_ON(!entry->in_tree); |
| 2787 | |
| 2788 | middle = entry->bytenr; |
| 2789 | |
| 2790 | if (alt) |
| 2791 | n = n->rb_left; |
| 2792 | else |
| 2793 | n = n->rb_right; |
| 2794 | |
| 2795 | alt = 1 - alt; |
| 2796 | } |
| 2797 | return middle; |
| 2798 | } |
| 2799 | #endif |
| 2800 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2801 | static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2802 | { |
| 2803 | u64 num_bytes; |
| 2804 | |
| 2805 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2806 | sizeof(struct btrfs_extent_inline_ref)); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2807 | if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2808 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2809 | |
| 2810 | /* |
| 2811 | * 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] | 2812 | * closer to what we're really going to want to use. |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2813 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2814 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2815 | } |
| 2816 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2817 | /* |
| 2818 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2819 | * would require to store the csums for that many bytes. |
| 2820 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2821 | u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes) |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2822 | { |
| 2823 | u64 csum_size; |
| 2824 | u64 num_csums_per_leaf; |
| 2825 | u64 num_csums; |
| 2826 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2827 | csum_size = BTRFS_MAX_ITEM_SIZE(fs_info); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2828 | num_csums_per_leaf = div64_u64(csum_size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2829 | (u64)btrfs_super_csum_size(fs_info->super_copy)); |
| 2830 | num_csums = div64_u64(csum_bytes, fs_info->sectorsize); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2831 | num_csums += num_csums_per_leaf - 1; |
| 2832 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2833 | return num_csums; |
| 2834 | } |
| 2835 | |
Josef Bacik | 6440361 | 2018-12-03 10:20:36 -0500 | [diff] [blame] | 2836 | bool btrfs_check_space_for_delayed_refs(struct btrfs_fs_info *fs_info) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2837 | { |
Josef Bacik | 6440361 | 2018-12-03 10:20:36 -0500 | [diff] [blame] | 2838 | struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv; |
| 2839 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 2840 | bool ret = false; |
| 2841 | u64 reserved; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2842 | |
| 2843 | spin_lock(&global_rsv->lock); |
Josef Bacik | 6440361 | 2018-12-03 10:20:36 -0500 | [diff] [blame] | 2844 | reserved = global_rsv->reserved; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2845 | spin_unlock(&global_rsv->lock); |
Josef Bacik | 6440361 | 2018-12-03 10:20:36 -0500 | [diff] [blame] | 2846 | |
| 2847 | /* |
| 2848 | * Since the global reserve is just kind of magic we don't really want |
| 2849 | * to rely on it to save our bacon, so if our size is more than the |
| 2850 | * delayed_refs_rsv and the global rsv then it's time to think about |
| 2851 | * bailing. |
| 2852 | */ |
| 2853 | spin_lock(&delayed_refs_rsv->lock); |
| 2854 | reserved += delayed_refs_rsv->reserved; |
| 2855 | if (delayed_refs_rsv->size >= reserved) |
| 2856 | ret = true; |
| 2857 | spin_unlock(&delayed_refs_rsv->lock); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2858 | return ret; |
| 2859 | } |
| 2860 | |
Lu Fengqi | 7c86162 | 2018-10-11 13:40:36 +0800 | [diff] [blame] | 2861 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2862 | { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2863 | u64 num_entries = |
| 2864 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2865 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2866 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2867 | |
| 2868 | smp_mb(); |
Lu Fengqi | 7c86162 | 2018-10-11 13:40:36 +0800 | [diff] [blame] | 2869 | avg_runtime = trans->fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2870 | val = num_entries * avg_runtime; |
Wang Xiaoguang | dc1a90c | 2016-10-26 15:23:01 +0800 | [diff] [blame] | 2871 | if (val >= NSEC_PER_SEC) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2872 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2873 | if (val >= NSEC_PER_SEC / 2) |
| 2874 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2875 | |
Josef Bacik | 6440361 | 2018-12-03 10:20:36 -0500 | [diff] [blame] | 2876 | return btrfs_check_space_for_delayed_refs(trans->fs_info); |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2877 | } |
| 2878 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2879 | /* |
| 2880 | * this starts processing the delayed reference count updates and |
| 2881 | * extent insertions we have queued up so far. count can be |
| 2882 | * 0, which means to process everything in the tree at the start |
| 2883 | * of the run (but not newly added entries), or it can be some target |
| 2884 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2885 | * |
| 2886 | * Returns 0 on success or if called with an aborted transaction |
| 2887 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2888 | */ |
| 2889 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Nikolay Borisov | c79a70b | 2018-03-15 17:27:37 +0200 | [diff] [blame] | 2890 | unsigned long count) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2891 | { |
Nikolay Borisov | c79a70b | 2018-03-15 17:27:37 +0200 | [diff] [blame] | 2892 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2893 | struct rb_node *node; |
| 2894 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2895 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2896 | int ret; |
| 2897 | int run_all = count == (unsigned long)-1; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2898 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2899 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2900 | if (trans->aborted) |
| 2901 | return 0; |
| 2902 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2903 | if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags)) |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 2904 | return 0; |
| 2905 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2906 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2907 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2908 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2909 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2910 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2911 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2912 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2913 | #endif |
Nikolay Borisov | 0a1e458 | 2018-03-15 16:00:27 +0200 | [diff] [blame] | 2914 | ret = __btrfs_run_delayed_refs(trans, count); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2915 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2916 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2917 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2918 | } |
| 2919 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2920 | if (run_all) { |
Josef Bacik | 119e80d | 2018-11-21 14:05:42 -0500 | [diff] [blame] | 2921 | btrfs_create_pending_block_groups(trans); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2922 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2923 | spin_lock(&delayed_refs->lock); |
Liu Bo | 5c9d028 | 2018-08-23 03:51:49 +0800 | [diff] [blame] | 2924 | node = rb_first_cached(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2925 | if (!node) { |
| 2926 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2927 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2928 | } |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2929 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2930 | href_node); |
| 2931 | refcount_inc(&head->refs); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2932 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 2933 | |
| 2934 | /* Mutex was contended, block until it's released and retry. */ |
| 2935 | mutex_lock(&head->mutex); |
| 2936 | mutex_unlock(&head->mutex); |
| 2937 | |
| 2938 | btrfs_put_delayed_ref_head(head); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2939 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2940 | goto again; |
| 2941 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2942 | out: |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2943 | return 0; |
| 2944 | } |
| 2945 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2946 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2947 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2948 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2949 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2950 | { |
| 2951 | struct btrfs_delayed_extent_op *extent_op; |
| 2952 | int ret; |
| 2953 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2954 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2955 | if (!extent_op) |
| 2956 | return -ENOMEM; |
| 2957 | |
| 2958 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 2959 | extent_op->update_flags = true; |
| 2960 | extent_op->update_key = false; |
| 2961 | extent_op->is_data = is_data ? true : false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2962 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2963 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2964 | ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2965 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2966 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2967 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2968 | return ret; |
| 2969 | } |
| 2970 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 2971 | static noinline int check_delayed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2972 | struct btrfs_path *path, |
| 2973 | u64 objectid, u64 offset, u64 bytenr) |
| 2974 | { |
| 2975 | struct btrfs_delayed_ref_head *head; |
| 2976 | struct btrfs_delayed_ref_node *ref; |
| 2977 | struct btrfs_delayed_data_ref *data_ref; |
| 2978 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 2979 | struct btrfs_transaction *cur_trans; |
Josef Bacik | 0e0adbc | 2017-10-19 14:16:00 -0400 | [diff] [blame] | 2980 | struct rb_node *node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2981 | int ret = 0; |
| 2982 | |
ethanwu | 998ac6d | 2018-04-29 15:59:42 +0800 | [diff] [blame] | 2983 | spin_lock(&root->fs_info->trans_lock); |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 2984 | cur_trans = root->fs_info->running_transaction; |
ethanwu | 998ac6d | 2018-04-29 15:59:42 +0800 | [diff] [blame] | 2985 | if (cur_trans) |
| 2986 | refcount_inc(&cur_trans->use_count); |
| 2987 | spin_unlock(&root->fs_info->trans_lock); |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 2988 | if (!cur_trans) |
| 2989 | return 0; |
| 2990 | |
| 2991 | delayed_refs = &cur_trans->delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2992 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 2993 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2994 | if (!head) { |
| 2995 | spin_unlock(&delayed_refs->lock); |
ethanwu | 998ac6d | 2018-04-29 15:59:42 +0800 | [diff] [blame] | 2996 | btrfs_put_transaction(cur_trans); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2997 | return 0; |
| 2998 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2999 | |
| 3000 | if (!mutex_trylock(&head->mutex)) { |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 3001 | refcount_inc(&head->refs); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3002 | spin_unlock(&delayed_refs->lock); |
| 3003 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3004 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3005 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3006 | /* |
| 3007 | * Mutex was contended, block until it's released and let |
| 3008 | * caller try again |
| 3009 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3010 | mutex_lock(&head->mutex); |
| 3011 | mutex_unlock(&head->mutex); |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 3012 | btrfs_put_delayed_ref_head(head); |
ethanwu | 998ac6d | 2018-04-29 15:59:42 +0800 | [diff] [blame] | 3013 | btrfs_put_transaction(cur_trans); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3014 | return -EAGAIN; |
| 3015 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3016 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3017 | |
| 3018 | spin_lock(&head->lock); |
Josef Bacik | 0e0adbc | 2017-10-19 14:16:00 -0400 | [diff] [blame] | 3019 | /* |
| 3020 | * XXX: We should replace this with a proper search function in the |
| 3021 | * future. |
| 3022 | */ |
Liu Bo | e3d0396 | 2018-08-23 03:51:50 +0800 | [diff] [blame] | 3023 | for (node = rb_first_cached(&head->ref_tree); node; |
| 3024 | node = rb_next(node)) { |
Josef Bacik | 0e0adbc | 2017-10-19 14:16:00 -0400 | [diff] [blame] | 3025 | ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3026 | /* If it's a shared ref we know a cross reference exists */ |
| 3027 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 3028 | ret = 1; |
| 3029 | break; |
| 3030 | } |
| 3031 | |
| 3032 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 3033 | |
| 3034 | /* |
| 3035 | * If our ref doesn't match the one we're currently looking at |
| 3036 | * then we have a cross reference. |
| 3037 | */ |
| 3038 | if (data_ref->root != root->root_key.objectid || |
| 3039 | data_ref->objectid != objectid || |
| 3040 | data_ref->offset != offset) { |
| 3041 | ret = 1; |
| 3042 | break; |
| 3043 | } |
| 3044 | } |
| 3045 | spin_unlock(&head->lock); |
| 3046 | mutex_unlock(&head->mutex); |
ethanwu | 998ac6d | 2018-04-29 15:59:42 +0800 | [diff] [blame] | 3047 | btrfs_put_transaction(cur_trans); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3048 | return ret; |
| 3049 | } |
| 3050 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3051 | static noinline int check_committed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3052 | struct btrfs_path *path, |
| 3053 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3054 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3055 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 3056 | struct btrfs_root *extent_root = fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3057 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3058 | struct btrfs_extent_data_ref *ref; |
| 3059 | struct btrfs_extent_inline_ref *iref; |
| 3060 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3061 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3062 | u32 item_size; |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 3063 | int type; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3064 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3065 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3066 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3067 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3068 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3069 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3070 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 3071 | if (ret < 0) |
| 3072 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3073 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 3074 | |
| 3075 | ret = -ENOENT; |
| 3076 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3077 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3078 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3079 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3080 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3081 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3082 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3083 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3084 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3085 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3086 | ret = 1; |
| 3087 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3088 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 3089 | |
| 3090 | if (item_size != sizeof(*ei) + |
| 3091 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 3092 | goto out; |
| 3093 | |
| 3094 | if (btrfs_extent_generation(leaf, ei) <= |
| 3095 | btrfs_root_last_snapshot(&root->root_item)) |
| 3096 | goto out; |
| 3097 | |
| 3098 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
Liu Bo | 3de28d5 | 2017-08-18 15:15:19 -0600 | [diff] [blame] | 3099 | |
| 3100 | type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA); |
| 3101 | if (type != BTRFS_EXTENT_DATA_REF_KEY) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3102 | goto out; |
| 3103 | |
| 3104 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3105 | if (btrfs_extent_refs(leaf, ei) != |
| 3106 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3107 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3108 | root->root_key.objectid || |
| 3109 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3110 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3111 | goto out; |
| 3112 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3113 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3114 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3115 | return ret; |
| 3116 | } |
| 3117 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3118 | int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset, |
| 3119 | u64 bytenr) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3120 | { |
| 3121 | struct btrfs_path *path; |
| 3122 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3123 | |
| 3124 | path = btrfs_alloc_path(); |
| 3125 | if (!path) |
Su Yue | 9132c4f | 2018-05-30 14:49:10 +0800 | [diff] [blame] | 3126 | return -ENOMEM; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3127 | |
| 3128 | do { |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3129 | ret = check_committed_ref(root, path, objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3130 | offset, bytenr); |
| 3131 | if (ret && ret != -ENOENT) |
| 3132 | goto out; |
| 3133 | |
Misono Tomohiro | 380fd06 | 2018-08-30 10:59:16 +0900 | [diff] [blame] | 3134 | ret = check_delayed_ref(root, path, objectid, offset, bytenr); |
| 3135 | } while (ret == -EAGAIN); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3136 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3137 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3138 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3139 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3140 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3141 | return ret; |
| 3142 | } |
| 3143 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3144 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3145 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3146 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3147 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3148 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3149 | struct btrfs_fs_info *fs_info = root->fs_info; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3150 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3151 | u64 num_bytes; |
| 3152 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3153 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3154 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3155 | struct btrfs_key key; |
| 3156 | struct btrfs_file_extent_item *fi; |
| 3157 | int i; |
| 3158 | int level; |
| 3159 | int ret = 0; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3160 | int (*process_func)(struct btrfs_trans_handle *, |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 3161 | struct btrfs_root *, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3162 | u64, u64, u64, u64, u64, u64); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3163 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3164 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3165 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3166 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3167 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3168 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3169 | nritems = btrfs_header_nritems(buf); |
| 3170 | level = btrfs_header_level(buf); |
| 3171 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3172 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3173 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3174 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3175 | if (inc) |
| 3176 | process_func = btrfs_inc_extent_ref; |
| 3177 | else |
| 3178 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3179 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3180 | if (full_backref) |
| 3181 | parent = buf->start; |
| 3182 | else |
| 3183 | parent = 0; |
| 3184 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3185 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3186 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3187 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3188 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3189 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3190 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3191 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3192 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3193 | BTRFS_FILE_EXTENT_INLINE) |
| 3194 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3195 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3196 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3197 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3198 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3199 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3200 | key.offset -= btrfs_file_extent_offset(buf, fi); |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 3201 | ret = process_func(trans, root, bytenr, num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3202 | parent, ref_root, key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3203 | key.offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3204 | if (ret) |
| 3205 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3206 | } else { |
| 3207 | bytenr = btrfs_node_blockptr(buf, i); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3208 | num_bytes = fs_info->nodesize; |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 3209 | ret = process_func(trans, root, bytenr, num_bytes, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3210 | parent, ref_root, level - 1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3211 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3212 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3213 | } |
| 3214 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3215 | return 0; |
| 3216 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3217 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3218 | } |
| 3219 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3220 | 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] | 3221 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3222 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3223 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3224 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3225 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3226 | 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] | 3227 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3228 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3229 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3230 | } |
| 3231 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3232 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3233 | struct btrfs_path *path, |
| 3234 | struct btrfs_block_group_cache *cache) |
| 3235 | { |
David Sterba | 39db232 | 2019-03-20 11:57:46 +0100 | [diff] [blame] | 3236 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3237 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3238 | struct btrfs_root *extent_root = fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3239 | unsigned long bi; |
| 3240 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3241 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3242 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3243 | if (ret) { |
| 3244 | if (ret > 0) |
| 3245 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3246 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3247 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3248 | |
| 3249 | leaf = path->nodes[0]; |
| 3250 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3251 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3252 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3253 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3254 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3255 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3256 | |
| 3257 | } |
| 3258 | |
David Sterba | f87b7eb | 2019-03-20 12:01:07 +0100 | [diff] [blame] | 3259 | static struct btrfs_block_group_cache *next_block_group( |
| 3260 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3261 | { |
David Sterba | f87b7eb | 2019-03-20 12:01:07 +0100 | [diff] [blame] | 3262 | struct btrfs_fs_info *fs_info = cache->fs_info; |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3263 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3264 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3265 | spin_lock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3266 | |
| 3267 | /* If our block group was removed, we need a full search. */ |
| 3268 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3269 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3270 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3271 | spin_unlock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3272 | btrfs_put_block_group(cache); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3273 | cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3274 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3275 | node = rb_next(&cache->cache_node); |
| 3276 | btrfs_put_block_group(cache); |
| 3277 | if (node) { |
| 3278 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3279 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3280 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3281 | } else |
| 3282 | cache = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3283 | spin_unlock(&fs_info->block_group_cache_lock); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3284 | return cache; |
| 3285 | } |
| 3286 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3287 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3288 | struct btrfs_trans_handle *trans, |
| 3289 | struct btrfs_path *path) |
| 3290 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3291 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
| 3292 | struct btrfs_root *root = fs_info->tree_root; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3293 | struct inode *inode = NULL; |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 3294 | struct extent_changeset *data_reserved = NULL; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3295 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3296 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3297 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3298 | int retries = 0; |
| 3299 | int ret = 0; |
| 3300 | |
| 3301 | /* |
| 3302 | * If this block group is smaller than 100 megs don't bother caching the |
| 3303 | * block group. |
| 3304 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3305 | if (block_group->key.offset < (100 * SZ_1M)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3306 | spin_lock(&block_group->lock); |
| 3307 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3308 | spin_unlock(&block_group->lock); |
| 3309 | return 0; |
| 3310 | } |
| 3311 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3312 | if (trans->aborted) |
| 3313 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3314 | again: |
David Sterba | 7949f33 | 2019-03-20 13:40:19 +0100 | [diff] [blame] | 3315 | inode = lookup_free_space_inode(block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3316 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3317 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3318 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3319 | goto out; |
| 3320 | } |
| 3321 | |
| 3322 | if (IS_ERR(inode)) { |
| 3323 | BUG_ON(retries); |
| 3324 | retries++; |
| 3325 | |
| 3326 | if (block_group->ro) |
| 3327 | goto out_free; |
| 3328 | |
David Sterba | 4ca75f1 | 2019-03-20 13:42:57 +0100 | [diff] [blame] | 3329 | ret = create_free_space_inode(trans, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3330 | if (ret) |
| 3331 | goto out_free; |
| 3332 | goto again; |
| 3333 | } |
| 3334 | |
| 3335 | /* |
| 3336 | * We want to set the generation to 0, that way if anything goes wrong |
| 3337 | * from here on out we know not to trust this cache when we load up next |
| 3338 | * time. |
| 3339 | */ |
| 3340 | BTRFS_I(inode)->generation = 0; |
| 3341 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3342 | if (ret) { |
| 3343 | /* |
| 3344 | * So theoretically we could recover from this, simply set the |
| 3345 | * super cache generation to 0 so we know to invalidate the |
| 3346 | * cache, but then we'd have to keep track of the block groups |
| 3347 | * that fail this way so we know we _have_ to reset this cache |
| 3348 | * before the next commit or risk reading stale cache. So to |
| 3349 | * limit our exposure to horrible edge cases lets just abort the |
| 3350 | * transaction, this only happens in really bad situations |
| 3351 | * anyway. |
| 3352 | */ |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3353 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3354 | goto out_put; |
| 3355 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3356 | WARN_ON(ret); |
| 3357 | |
Josef Bacik | 8e138e0 | 2017-11-17 14:50:46 -0500 | [diff] [blame] | 3358 | /* We've already setup this transaction, go ahead and exit */ |
| 3359 | if (block_group->cache_generation == trans->transid && |
| 3360 | i_size_read(inode)) { |
| 3361 | dcs = BTRFS_DC_SETUP; |
| 3362 | goto out_put; |
| 3363 | } |
| 3364 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3365 | if (i_size_read(inode) > 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3366 | ret = btrfs_check_trunc_cache_free_space(fs_info, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3367 | &fs_info->global_block_rsv); |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3368 | if (ret) |
| 3369 | goto out_put; |
| 3370 | |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3371 | ret = btrfs_truncate_free_space_cache(trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3372 | if (ret) |
| 3373 | goto out_put; |
| 3374 | } |
| 3375 | |
| 3376 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3377 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3378 | !btrfs_test_opt(fs_info, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3379 | /* |
| 3380 | * don't bother trying to write stuff out _if_ |
| 3381 | * a) we're not cached, |
Liu Bo | 1a79c1f | 2017-03-06 13:49:02 -0800 | [diff] [blame] | 3382 | * b) we're with nospace_cache mount option, |
| 3383 | * c) we're with v2 space_cache (FREE_SPACE_TREE). |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3384 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3385 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3386 | spin_unlock(&block_group->lock); |
| 3387 | goto out_put; |
| 3388 | } |
| 3389 | spin_unlock(&block_group->lock); |
| 3390 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3391 | /* |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3392 | * We hit an ENOSPC when setting up the cache in this transaction, just |
| 3393 | * skip doing the setup, we've already cleared the cache so we're safe. |
| 3394 | */ |
| 3395 | if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) { |
| 3396 | ret = -ENOSPC; |
| 3397 | goto out_put; |
| 3398 | } |
| 3399 | |
| 3400 | /* |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3401 | * Try to preallocate enough space based on how big the block group is. |
| 3402 | * Keep in mind this has to include any pinned space which could end up |
| 3403 | * taking up quite a bit since it's not folded into the other space |
| 3404 | * cache. |
| 3405 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3406 | num_pages = div_u64(block_group->key.offset, SZ_256M); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3407 | if (!num_pages) |
| 3408 | num_pages = 1; |
| 3409 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3410 | num_pages *= 16; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3411 | num_pages *= PAGE_SIZE; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3412 | |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 3413 | ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3414 | if (ret) |
| 3415 | goto out_put; |
| 3416 | |
| 3417 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3418 | num_pages, num_pages, |
| 3419 | &alloc_hint); |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3420 | /* |
| 3421 | * Our cache requires contiguous chunks so that we don't modify a bunch |
| 3422 | * of metadata or split extents when writing the cache out, which means |
| 3423 | * we can enospc if we are heavily fragmented in addition to just normal |
| 3424 | * out of space conditions. So if we hit this just skip setting up any |
| 3425 | * other block groups for this transaction, maybe we'll unpin enough |
| 3426 | * space the next time around. |
| 3427 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3428 | if (!ret) |
| 3429 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3430 | else if (ret == -ENOSPC) |
| 3431 | set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3432 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3433 | out_put: |
| 3434 | iput(inode); |
| 3435 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3436 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3437 | out: |
| 3438 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3439 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3440 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3441 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3442 | spin_unlock(&block_group->lock); |
| 3443 | |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 3444 | extent_changeset_free(data_reserved); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3445 | return ret; |
| 3446 | } |
| 3447 | |
David Sterba | bbebb3e | 2019-03-20 12:02:55 +0100 | [diff] [blame] | 3448 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3449 | { |
David Sterba | bbebb3e | 2019-03-20 12:02:55 +0100 | [diff] [blame] | 3450 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3451 | struct btrfs_block_group_cache *cache, *tmp; |
| 3452 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3453 | struct btrfs_path *path; |
| 3454 | |
| 3455 | if (list_empty(&cur_trans->dirty_bgs) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3456 | !btrfs_test_opt(fs_info, SPACE_CACHE)) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3457 | return 0; |
| 3458 | |
| 3459 | path = btrfs_alloc_path(); |
| 3460 | if (!path) |
| 3461 | return -ENOMEM; |
| 3462 | |
| 3463 | /* Could add new block groups, use _safe just in case */ |
| 3464 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3465 | dirty_list) { |
| 3466 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3467 | cache_save_setup(cache, trans, path); |
| 3468 | } |
| 3469 | |
| 3470 | btrfs_free_path(path); |
| 3471 | return 0; |
| 3472 | } |
| 3473 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3474 | /* |
| 3475 | * transaction commit does final block group cache writeback during a |
| 3476 | * critical section where nothing is allowed to change the FS. This is |
| 3477 | * required in order for the cache to actually match the block group, |
| 3478 | * but can introduce a lot of latency into the commit. |
| 3479 | * |
| 3480 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3481 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3482 | * block group changes again during the commit, but it greatly reduces |
| 3483 | * the commit latency by getting rid of the easy block groups while |
| 3484 | * we're still allowing others to join the commit. |
| 3485 | */ |
Nikolay Borisov | 2121705 | 2018-02-07 17:55:41 +0200 | [diff] [blame] | 3486 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans) |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3487 | { |
Nikolay Borisov | 2121705 | 2018-02-07 17:55:41 +0200 | [diff] [blame] | 3488 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3489 | struct btrfs_block_group_cache *cache; |
| 3490 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3491 | int ret = 0; |
| 3492 | int should_put; |
| 3493 | struct btrfs_path *path = NULL; |
| 3494 | LIST_HEAD(dirty); |
| 3495 | struct list_head *io = &cur_trans->io_bgs; |
| 3496 | int num_started = 0; |
| 3497 | int loops = 0; |
| 3498 | |
| 3499 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3500 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3501 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3502 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3503 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3504 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3505 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3506 | |
| 3507 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3508 | /* |
| 3509 | * make sure all the block groups on our dirty list actually |
| 3510 | * exist |
| 3511 | */ |
Nikolay Borisov | 6c686b3 | 2018-02-07 17:55:40 +0200 | [diff] [blame] | 3512 | btrfs_create_pending_block_groups(trans); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3513 | |
| 3514 | if (!path) { |
| 3515 | path = btrfs_alloc_path(); |
| 3516 | if (!path) |
| 3517 | return -ENOMEM; |
| 3518 | } |
| 3519 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3520 | /* |
| 3521 | * cache_write_mutex is here only to save us from balance or automatic |
| 3522 | * removal of empty block groups deleting this block group while we are |
| 3523 | * writing out the cache |
| 3524 | */ |
| 3525 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3526 | while (!list_empty(&dirty)) { |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 3527 | bool drop_reserve = true; |
| 3528 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3529 | cache = list_first_entry(&dirty, |
| 3530 | struct btrfs_block_group_cache, |
| 3531 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3532 | /* |
| 3533 | * this can happen if something re-dirties a block |
| 3534 | * group that is already under IO. Just wait for it to |
| 3535 | * finish and then do it all again |
| 3536 | */ |
| 3537 | if (!list_empty(&cache->io_list)) { |
| 3538 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3539 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3540 | btrfs_put_block_group(cache); |
| 3541 | } |
| 3542 | |
| 3543 | |
| 3544 | /* |
| 3545 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3546 | * if it should update the cache_state. Don't delete |
| 3547 | * until after we wait. |
| 3548 | * |
| 3549 | * Since we're not running in the commit critical section |
| 3550 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3551 | */ |
| 3552 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3553 | list_del_init(&cache->dirty_list); |
| 3554 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3555 | |
| 3556 | should_put = 1; |
| 3557 | |
| 3558 | cache_save_setup(cache, trans, path); |
| 3559 | |
| 3560 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3561 | cache->io_ctl.inode = NULL; |
David Sterba | fe04153 | 2019-03-20 13:51:56 +0100 | [diff] [blame] | 3562 | ret = btrfs_write_out_cache(trans, cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3563 | if (ret == 0 && cache->io_ctl.inode) { |
| 3564 | num_started++; |
| 3565 | should_put = 0; |
| 3566 | |
| 3567 | /* |
Nikolay Borisov | 45ae2c1 | 2018-02-08 18:25:18 +0200 | [diff] [blame] | 3568 | * The cache_write_mutex is protecting the |
| 3569 | * io_list, also refer to the definition of |
| 3570 | * btrfs_transaction::io_bgs for more details |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3571 | */ |
| 3572 | list_add_tail(&cache->io_list, io); |
| 3573 | } else { |
| 3574 | /* |
| 3575 | * if we failed to write the cache, the |
| 3576 | * generation will be bad and life goes on |
| 3577 | */ |
| 3578 | ret = 0; |
| 3579 | } |
| 3580 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3581 | if (!ret) { |
David Sterba | 39db232 | 2019-03-20 11:57:46 +0100 | [diff] [blame] | 3582 | ret = write_one_cache_group(trans, path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3583 | /* |
| 3584 | * Our block group might still be attached to the list |
| 3585 | * of new block groups in the transaction handle of some |
| 3586 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3587 | * means its block group item isn't yet in the extent |
| 3588 | * tree. If this happens ignore the error, as we will |
| 3589 | * try again later in the critical section of the |
| 3590 | * transaction commit. |
| 3591 | */ |
| 3592 | if (ret == -ENOENT) { |
| 3593 | ret = 0; |
| 3594 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3595 | if (list_empty(&cache->dirty_list)) { |
| 3596 | list_add_tail(&cache->dirty_list, |
| 3597 | &cur_trans->dirty_bgs); |
| 3598 | btrfs_get_block_group(cache); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 3599 | drop_reserve = false; |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3600 | } |
| 3601 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3602 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3603 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3604 | } |
| 3605 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3606 | |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 3607 | /* if it's not on the io list, we need to put the block group */ |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3608 | if (should_put) |
| 3609 | btrfs_put_block_group(cache); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 3610 | if (drop_reserve) |
| 3611 | btrfs_delayed_refs_rsv_release(fs_info, 1); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3612 | |
| 3613 | if (ret) |
| 3614 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3615 | |
| 3616 | /* |
| 3617 | * Avoid blocking other tasks for too long. It might even save |
| 3618 | * us from writing caches for block groups that are going to be |
| 3619 | * removed. |
| 3620 | */ |
| 3621 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3622 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3623 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3624 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3625 | |
| 3626 | /* |
| 3627 | * go through delayed refs for all the stuff we've just kicked off |
| 3628 | * and then loop back (just once) |
| 3629 | */ |
Nikolay Borisov | c79a70b | 2018-03-15 17:27:37 +0200 | [diff] [blame] | 3630 | ret = btrfs_run_delayed_refs(trans, 0); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3631 | if (!ret && loops == 0) { |
| 3632 | loops++; |
| 3633 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3634 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3635 | /* |
| 3636 | * dirty_bgs_lock protects us from concurrent block group |
| 3637 | * deletes too (not just cache_write_mutex). |
| 3638 | */ |
| 3639 | if (!list_empty(&dirty)) { |
| 3640 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3641 | goto again; |
| 3642 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3643 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 3644 | } else if (ret < 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3645 | btrfs_cleanup_dirty_bgs(cur_trans, fs_info); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3646 | } |
| 3647 | |
| 3648 | btrfs_free_path(path); |
| 3649 | return ret; |
| 3650 | } |
| 3651 | |
David Sterba | 5742d15 | 2019-03-20 12:04:08 +0100 | [diff] [blame] | 3652 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3653 | { |
David Sterba | 5742d15 | 2019-03-20 12:04:08 +0100 | [diff] [blame] | 3654 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3655 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3656 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3657 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3658 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3659 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3660 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3661 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3662 | |
| 3663 | path = btrfs_alloc_path(); |
| 3664 | if (!path) |
| 3665 | return -ENOMEM; |
| 3666 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3667 | /* |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3668 | * Even though we are in the critical section of the transaction commit, |
| 3669 | * we can still have concurrent tasks adding elements to this |
| 3670 | * transaction's list of dirty block groups. These tasks correspond to |
| 3671 | * endio free space workers started when writeback finishes for a |
| 3672 | * space cache, which run inode.c:btrfs_finish_ordered_io(), and can |
| 3673 | * allocate new block groups as a result of COWing nodes of the root |
| 3674 | * tree when updating the free space inode. The writeback for the space |
| 3675 | * caches is triggered by an earlier call to |
| 3676 | * btrfs_start_dirty_block_groups() and iterations of the following |
| 3677 | * loop. |
| 3678 | * 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] | 3679 | * delayed refs to make sure we have the best chance at doing this all |
| 3680 | * in one shot. |
| 3681 | */ |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3682 | spin_lock(&cur_trans->dirty_bgs_lock); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3683 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3684 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3685 | struct btrfs_block_group_cache, |
| 3686 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3687 | |
| 3688 | /* |
| 3689 | * this can happen if cache_save_setup re-dirties a block |
| 3690 | * group that is already under IO. Just wait for it to |
| 3691 | * finish and then do it all again |
| 3692 | */ |
| 3693 | if (!list_empty(&cache->io_list)) { |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3694 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3695 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3696 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3697 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3698 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3699 | } |
| 3700 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3701 | /* |
| 3702 | * don't remove from the dirty list until after we've waited |
| 3703 | * on any pending IO |
| 3704 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3705 | list_del_init(&cache->dirty_list); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3706 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3707 | should_put = 1; |
| 3708 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3709 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3710 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3711 | if (!ret) |
Nikolay Borisov | c79a70b | 2018-03-15 17:27:37 +0200 | [diff] [blame] | 3712 | ret = btrfs_run_delayed_refs(trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3713 | (unsigned long) -1); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3714 | |
| 3715 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3716 | cache->io_ctl.inode = NULL; |
David Sterba | fe04153 | 2019-03-20 13:51:56 +0100 | [diff] [blame] | 3717 | ret = btrfs_write_out_cache(trans, cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3718 | if (ret == 0 && cache->io_ctl.inode) { |
| 3719 | num_started++; |
| 3720 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3721 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3722 | } else { |
| 3723 | /* |
| 3724 | * if we failed to write the cache, the |
| 3725 | * generation will be bad and life goes on |
| 3726 | */ |
| 3727 | ret = 0; |
| 3728 | } |
| 3729 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3730 | if (!ret) { |
David Sterba | 39db232 | 2019-03-20 11:57:46 +0100 | [diff] [blame] | 3731 | ret = write_one_cache_group(trans, path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3732 | /* |
| 3733 | * One of the free space endio workers might have |
| 3734 | * created a new block group while updating a free space |
| 3735 | * cache's inode (at inode.c:btrfs_finish_ordered_io()) |
| 3736 | * and hasn't released its transaction handle yet, in |
| 3737 | * which case the new block group is still attached to |
| 3738 | * its transaction handle and its creation has not |
| 3739 | * finished yet (no block group item in the extent tree |
| 3740 | * yet, etc). If this is the case, wait for all free |
| 3741 | * space endio workers to finish and retry. This is a |
| 3742 | * a very rare case so no need for a more efficient and |
| 3743 | * complex approach. |
| 3744 | */ |
| 3745 | if (ret == -ENOENT) { |
| 3746 | wait_event(cur_trans->writer_wait, |
| 3747 | atomic_read(&cur_trans->num_writers) == 1); |
David Sterba | 39db232 | 2019-03-20 11:57:46 +0100 | [diff] [blame] | 3748 | ret = write_one_cache_group(trans, path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3749 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3750 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3751 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3752 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3753 | |
| 3754 | /* if its not on the io list, we need to put the block group */ |
| 3755 | if (should_put) |
| 3756 | btrfs_put_block_group(cache); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 3757 | btrfs_delayed_refs_rsv_release(fs_info, 1); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3758 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3759 | } |
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 | |
Nikolay Borisov | 45ae2c1 | 2018-02-08 18:25:18 +0200 | [diff] [blame] | 3762 | /* |
| 3763 | * Refer to the definition of io_bgs member for details why it's safe |
| 3764 | * to use it without any locking |
| 3765 | */ |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3766 | while (!list_empty(io)) { |
| 3767 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3768 | io_list); |
| 3769 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3770 | btrfs_wait_cache_io(trans, cache, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3771 | btrfs_put_block_group(cache); |
| 3772 | } |
| 3773 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3774 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3775 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3776 | } |
| 3777 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3778 | int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr) |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3779 | { |
| 3780 | struct btrfs_block_group_cache *block_group; |
| 3781 | int readonly = 0; |
| 3782 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3783 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3784 | if (!block_group || block_group->ro) |
| 3785 | readonly = 1; |
| 3786 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3787 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3788 | return readonly; |
| 3789 | } |
| 3790 | |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3791 | bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3792 | { |
| 3793 | struct btrfs_block_group_cache *bg; |
| 3794 | bool ret = true; |
| 3795 | |
| 3796 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3797 | if (!bg) |
| 3798 | return false; |
| 3799 | |
| 3800 | spin_lock(&bg->lock); |
| 3801 | if (bg->ro) |
| 3802 | ret = false; |
| 3803 | else |
| 3804 | atomic_inc(&bg->nocow_writers); |
| 3805 | spin_unlock(&bg->lock); |
| 3806 | |
| 3807 | /* no put on block group, done by btrfs_dec_nocow_writers */ |
| 3808 | if (!ret) |
| 3809 | btrfs_put_block_group(bg); |
| 3810 | |
| 3811 | return ret; |
| 3812 | |
| 3813 | } |
| 3814 | |
| 3815 | void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3816 | { |
| 3817 | struct btrfs_block_group_cache *bg; |
| 3818 | |
| 3819 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3820 | ASSERT(bg); |
| 3821 | if (atomic_dec_and_test(&bg->nocow_writers)) |
Peter Zijlstra | 4625956 | 2018-03-15 11:43:08 +0100 | [diff] [blame] | 3822 | wake_up_var(&bg->nocow_writers); |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3823 | /* |
| 3824 | * Once for our lookup and once for the lookup done by a previous call |
| 3825 | * to btrfs_inc_nocow_writers() |
| 3826 | */ |
| 3827 | btrfs_put_block_group(bg); |
| 3828 | btrfs_put_block_group(bg); |
| 3829 | } |
| 3830 | |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3831 | void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg) |
| 3832 | { |
Peter Zijlstra | 4625956 | 2018-03-15 11:43:08 +0100 | [diff] [blame] | 3833 | wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers)); |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3834 | } |
| 3835 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3836 | static const char *alloc_name(u64 flags) |
| 3837 | { |
| 3838 | switch (flags) { |
| 3839 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3840 | return "mixed"; |
| 3841 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3842 | return "metadata"; |
| 3843 | case BTRFS_BLOCK_GROUP_DATA: |
| 3844 | return "data"; |
| 3845 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3846 | return "system"; |
| 3847 | default: |
| 3848 | WARN_ON(1); |
| 3849 | return "invalid-combination"; |
| 3850 | }; |
| 3851 | } |
| 3852 | |
Lu Fengqi | 4ca6168 | 2018-05-28 14:30:27 +0800 | [diff] [blame] | 3853 | static int create_space_info(struct btrfs_fs_info *info, u64 flags) |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 3854 | { |
| 3855 | |
| 3856 | struct btrfs_space_info *space_info; |
| 3857 | int i; |
| 3858 | int ret; |
| 3859 | |
| 3860 | space_info = kzalloc(sizeof(*space_info), GFP_NOFS); |
| 3861 | if (!space_info) |
| 3862 | return -ENOMEM; |
| 3863 | |
| 3864 | ret = percpu_counter_init(&space_info->total_bytes_pinned, 0, |
| 3865 | GFP_KERNEL); |
| 3866 | if (ret) { |
| 3867 | kfree(space_info); |
| 3868 | return ret; |
| 3869 | } |
| 3870 | |
| 3871 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
| 3872 | INIT_LIST_HEAD(&space_info->block_groups[i]); |
| 3873 | init_rwsem(&space_info->groups_sem); |
| 3874 | spin_lock_init(&space_info->lock); |
| 3875 | space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3876 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
| 3877 | init_waitqueue_head(&space_info->wait); |
| 3878 | INIT_LIST_HEAD(&space_info->ro_bgs); |
| 3879 | INIT_LIST_HEAD(&space_info->tickets); |
| 3880 | INIT_LIST_HEAD(&space_info->priority_tickets); |
| 3881 | |
| 3882 | ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype, |
| 3883 | info->space_info_kobj, "%s", |
| 3884 | alloc_name(space_info->flags)); |
| 3885 | if (ret) { |
| 3886 | percpu_counter_destroy(&space_info->total_bytes_pinned); |
| 3887 | kfree(space_info); |
| 3888 | return ret; |
| 3889 | } |
| 3890 | |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 3891 | list_add_rcu(&space_info->list, &info->space_info); |
| 3892 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3893 | info->data_sinfo = space_info; |
| 3894 | |
| 3895 | return ret; |
| 3896 | } |
| 3897 | |
Nikolay Borisov | d2006e6 | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 3898 | static void update_space_info(struct btrfs_fs_info *info, u64 flags, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3899 | u64 total_bytes, u64 bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3900 | u64 bytes_readonly, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3901 | struct btrfs_space_info **space_info) |
| 3902 | { |
| 3903 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3904 | int factor; |
| 3905 | |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 3906 | factor = btrfs_bg_type_to_factor(flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3907 | |
| 3908 | found = __find_space_info(info, flags); |
Nikolay Borisov | d2006e6 | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 3909 | ASSERT(found); |
| 3910 | spin_lock(&found->lock); |
| 3911 | found->total_bytes += total_bytes; |
| 3912 | found->disk_total += total_bytes * factor; |
| 3913 | found->bytes_used += bytes_used; |
| 3914 | found->disk_used += bytes_used * factor; |
| 3915 | found->bytes_readonly += bytes_readonly; |
| 3916 | if (total_bytes > 0) |
| 3917 | found->full = 0; |
| 3918 | space_info_add_new_bytes(info, found, total_bytes - |
| 3919 | bytes_used - bytes_readonly); |
| 3920 | spin_unlock(&found->lock); |
| 3921 | *space_info = found; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3922 | } |
| 3923 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3924 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 3925 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 3926 | u64 extra_flags = chunk_to_extended(flags) & |
| 3927 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3928 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3929 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3930 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3931 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 3932 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 3933 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 3934 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 3935 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 3936 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 3937 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3938 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3939 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3940 | * returns target flags in extended format or 0 if restripe for this |
| 3941 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 3942 | * |
David Sterba | dccdb07 | 2018-03-21 00:20:05 +0100 | [diff] [blame] | 3943 | * should be called with balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3944 | */ |
| 3945 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 3946 | { |
| 3947 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 3948 | u64 target = 0; |
| 3949 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3950 | if (!bctl) |
| 3951 | return 0; |
| 3952 | |
| 3953 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 3954 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3955 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 3956 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 3957 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3958 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 3959 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 3960 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 3961 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 3962 | } |
| 3963 | |
| 3964 | return target; |
| 3965 | } |
| 3966 | |
| 3967 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3968 | * @flags: available profiles in extended format (see ctree.h) |
| 3969 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3970 | * Returns reduced profile in chunk format. If profile changing is in |
| 3971 | * progress (either running or paused) picks the target profile (if it's |
| 3972 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3973 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3974 | static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 3975 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3976 | u64 num_devices = fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3977 | u64 target; |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 3978 | u64 raid_type; |
| 3979 | u64 allowed = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3980 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3981 | /* |
| 3982 | * see if restripe for this chunk_type is in progress, if so |
| 3983 | * try to reduce to the target profile |
| 3984 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3985 | spin_lock(&fs_info->balance_lock); |
| 3986 | target = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3987 | if (target) { |
| 3988 | /* pick target profile only if it's already available */ |
| 3989 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3990 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 3991 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3992 | } |
| 3993 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3994 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3995 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3996 | /* First, mask out the RAID levels which aren't possible */ |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 3997 | for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) { |
| 3998 | if (num_devices >= btrfs_raid_array[raid_type].devs_min) |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 3999 | allowed |= btrfs_raid_array[raid_type].bg_flag; |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4000 | } |
| 4001 | allowed &= flags; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4002 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4003 | if (allowed & BTRFS_BLOCK_GROUP_RAID6) |
| 4004 | allowed = BTRFS_BLOCK_GROUP_RAID6; |
| 4005 | else if (allowed & BTRFS_BLOCK_GROUP_RAID5) |
| 4006 | allowed = BTRFS_BLOCK_GROUP_RAID5; |
| 4007 | else if (allowed & BTRFS_BLOCK_GROUP_RAID10) |
| 4008 | allowed = BTRFS_BLOCK_GROUP_RAID10; |
| 4009 | else if (allowed & BTRFS_BLOCK_GROUP_RAID1) |
| 4010 | allowed = BTRFS_BLOCK_GROUP_RAID1; |
| 4011 | else if (allowed & BTRFS_BLOCK_GROUP_RAID0) |
| 4012 | allowed = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4013 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4014 | flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4015 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4016 | return extended_to_chunk(flags | allowed); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4017 | } |
| 4018 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4019 | static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4020 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4021 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4022 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4023 | |
| 4024 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4025 | flags = orig_flags; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4026 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4027 | |
| 4028 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4029 | flags |= fs_info->avail_data_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4030 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4031 | flags |= fs_info->avail_system_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4032 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4033 | flags |= fs_info->avail_metadata_alloc_bits; |
| 4034 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4035 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4036 | return btrfs_reduce_alloc_profile(fs_info, flags); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4037 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4038 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4039 | static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4040 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4041 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4042 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4043 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4044 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4045 | if (data) |
| 4046 | flags = BTRFS_BLOCK_GROUP_DATA; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4047 | else if (root == fs_info->chunk_root) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4048 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 4049 | else |
| 4050 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 4051 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4052 | ret = get_alloc_profile(fs_info, flags); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4053 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4054 | } |
| 4055 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4056 | u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4057 | { |
| 4058 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 4059 | } |
| 4060 | |
| 4061 | u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4062 | { |
| 4063 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4064 | } |
| 4065 | |
| 4066 | u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4067 | { |
| 4068 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4069 | } |
| 4070 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4071 | static u64 btrfs_space_info_used(struct btrfs_space_info *s_info, |
| 4072 | bool may_use_included) |
| 4073 | { |
| 4074 | ASSERT(s_info); |
| 4075 | return s_info->bytes_used + s_info->bytes_reserved + |
| 4076 | s_info->bytes_pinned + s_info->bytes_readonly + |
| 4077 | (may_use_included ? s_info->bytes_may_use : 0); |
| 4078 | } |
| 4079 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4080 | int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4081 | { |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4082 | struct btrfs_root *root = inode->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4083 | struct btrfs_fs_info *fs_info = root->fs_info; |
Nikolay Borisov | 1174cad | 2017-07-11 13:47:50 +0300 | [diff] [blame] | 4084 | struct btrfs_space_info *data_sinfo = fs_info->data_sinfo; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4085 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4086 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4087 | int need_commit = 2; |
| 4088 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4089 | |
| 4090 | /* make sure bytes are sectorsize aligned */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4091 | bytes = ALIGN(bytes, fs_info->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4092 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4093 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4094 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4095 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4096 | } |
| 4097 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4098 | again: |
| 4099 | /* make sure we have enough space to handle the data first */ |
| 4100 | spin_lock(&data_sinfo->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4101 | used = btrfs_space_info_used(data_sinfo, true); |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4102 | |
| 4103 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4104 | struct btrfs_trans_handle *trans; |
| 4105 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4106 | /* |
| 4107 | * if we don't have enough free bytes in this space then we need |
| 4108 | * to alloc a new chunk. |
| 4109 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 4110 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4111 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4112 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4113 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4114 | spin_unlock(&data_sinfo->lock); |
Nikolay Borisov | 1174cad | 2017-07-11 13:47:50 +0300 | [diff] [blame] | 4115 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4116 | alloc_target = btrfs_data_alloc_profile(fs_info); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4117 | /* |
| 4118 | * It is ugly that we don't call nolock join |
| 4119 | * transaction for the free space inode case here. |
| 4120 | * But it is safe because we only do the data space |
| 4121 | * reservation for the free space cache in the |
| 4122 | * transaction context, the common join transaction |
| 4123 | * just increase the counter of the current transaction |
| 4124 | * handler, doesn't try to acquire the trans_lock of |
| 4125 | * the fs. |
| 4126 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4127 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4128 | if (IS_ERR(trans)) |
| 4129 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4130 | |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 4131 | ret = do_chunk_alloc(trans, alloc_target, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4132 | CHUNK_ALLOC_NO_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4133 | btrfs_end_transaction(trans); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4134 | if (ret < 0) { |
| 4135 | if (ret != -ENOSPC) |
| 4136 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4137 | else { |
| 4138 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4139 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4140 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4141 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4142 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4143 | goto again; |
| 4144 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4145 | |
| 4146 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4147 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4148 | * allocation, and no removed chunk in current transaction, |
| 4149 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4150 | */ |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 4151 | have_pinned_space = __percpu_counter_compare( |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4152 | &data_sinfo->total_bytes_pinned, |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 4153 | used + bytes - data_sinfo->total_bytes, |
| 4154 | BTRFS_TOTAL_BYTES_PINNED_BATCH); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4155 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4156 | |
| 4157 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4158 | commit_trans: |
Nikolay Borisov | 92e2f7e | 2018-02-05 10:41:16 +0200 | [diff] [blame] | 4159 | if (need_commit) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4160 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4161 | |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4162 | if (need_commit > 0) { |
Nikolay Borisov | 82b3e53 | 2018-04-23 10:54:13 +0300 | [diff] [blame] | 4163 | btrfs_start_delalloc_roots(fs_info, -1); |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 4164 | btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4165 | (u64)-1); |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4166 | } |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 4167 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4168 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4169 | if (IS_ERR(trans)) |
| 4170 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4171 | if (have_pinned_space >= 0 || |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 4172 | test_bit(BTRFS_TRANS_HAVE_FREE_BGS, |
| 4173 | &trans->transaction->flags) || |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4174 | need_commit > 0) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4175 | ret = btrfs_commit_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4176 | if (ret) |
| 4177 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4178 | /* |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4179 | * The cleaner kthread might still be doing iput |
| 4180 | * operations. Wait for it to finish so that |
Josef Bacik | 034f784 | 2018-12-03 11:06:52 -0500 | [diff] [blame] | 4181 | * more space is released. We don't need to |
| 4182 | * explicitly run the delayed iputs here because |
| 4183 | * the commit_transaction would have woken up |
| 4184 | * the cleaner. |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4185 | */ |
Josef Bacik | 034f784 | 2018-12-03 11:06:52 -0500 | [diff] [blame] | 4186 | ret = btrfs_wait_on_delayed_iputs(fs_info); |
| 4187 | if (ret) |
| 4188 | return ret; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4189 | goto again; |
| 4190 | } else { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4191 | btrfs_end_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4192 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4193 | } |
| 4194 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4195 | trace_btrfs_space_reservation(fs_info, |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4196 | "space_info:enospc", |
| 4197 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4198 | return -ENOSPC; |
| 4199 | } |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 4200 | update_bytes_may_use(data_sinfo, bytes); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4201 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4202 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4203 | spin_unlock(&data_sinfo->lock); |
| 4204 | |
Josef Bacik | 4559b0a | 2018-07-19 10:49:51 -0400 | [diff] [blame] | 4205 | return 0; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4206 | } |
| 4207 | |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 4208 | int btrfs_check_data_free_space(struct inode *inode, |
| 4209 | struct extent_changeset **reserved, u64 start, u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4210 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4211 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4212 | int ret; |
| 4213 | |
| 4214 | /* align the range */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4215 | len = round_up(start + len, fs_info->sectorsize) - |
| 4216 | round_down(start, fs_info->sectorsize); |
| 4217 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4218 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4219 | ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4220 | if (ret < 0) |
| 4221 | return ret; |
| 4222 | |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4223 | /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */ |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 4224 | ret = btrfs_qgroup_reserve_data(inode, reserved, start, len); |
Qu Wenruo | 7bc329c | 2017-02-27 15:10:36 +0800 | [diff] [blame] | 4225 | if (ret < 0) |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4226 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 4227 | else |
| 4228 | ret = 0; |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4229 | return ret; |
| 4230 | } |
| 4231 | |
| 4232 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4233 | * Called if we need to clear a data reservation for this inode |
| 4234 | * Normally in a error case. |
| 4235 | * |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4236 | * This one will *NOT* use accurate qgroup reserved space API, just for case |
| 4237 | * which we can't sleep and is sure it won't affect qgroup reserved space. |
| 4238 | * Like clear_bit_hook(). |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4239 | */ |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4240 | void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start, |
| 4241 | u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4242 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4243 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4244 | struct btrfs_space_info *data_sinfo; |
| 4245 | |
| 4246 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4247 | len = round_up(start + len, fs_info->sectorsize) - |
| 4248 | round_down(start, fs_info->sectorsize); |
| 4249 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4250 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4251 | data_sinfo = fs_info->data_sinfo; |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4252 | spin_lock(&data_sinfo->lock); |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 4253 | update_bytes_may_use(data_sinfo, -len); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4254 | trace_btrfs_space_reservation(fs_info, "space_info", |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4255 | data_sinfo->flags, len, 0); |
| 4256 | spin_unlock(&data_sinfo->lock); |
| 4257 | } |
| 4258 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4259 | /* |
| 4260 | * Called if we need to clear a data reservation for this inode |
| 4261 | * Normally in a error case. |
| 4262 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4263 | * 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] | 4264 | * space framework. |
| 4265 | */ |
Qu Wenruo | bc42bda | 2017-02-27 15:10:39 +0800 | [diff] [blame] | 4266 | void btrfs_free_reserved_data_space(struct inode *inode, |
| 4267 | struct extent_changeset *reserved, u64 start, u64 len) |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4268 | { |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4269 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4270 | |
| 4271 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4272 | len = round_up(start + len, root->fs_info->sectorsize) - |
| 4273 | round_down(start, root->fs_info->sectorsize); |
| 4274 | start = round_down(start, root->fs_info->sectorsize); |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4275 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4276 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
Qu Wenruo | bc42bda | 2017-02-27 15:10:39 +0800 | [diff] [blame] | 4277 | btrfs_qgroup_free_data(inode, reserved, start, len); |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4278 | } |
| 4279 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4280 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4281 | { |
| 4282 | struct list_head *head = &info->space_info; |
| 4283 | struct btrfs_space_info *found; |
| 4284 | |
| 4285 | rcu_read_lock(); |
| 4286 | list_for_each_entry_rcu(found, head, list) { |
| 4287 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4288 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4289 | } |
| 4290 | rcu_read_unlock(); |
| 4291 | } |
| 4292 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4293 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4294 | { |
| 4295 | return (global->size << 1); |
| 4296 | } |
| 4297 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4298 | static int should_alloc_chunk(struct btrfs_fs_info *fs_info, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4299 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4300 | { |
Nikolay Borisov | 8d8aafe | 2017-06-22 09:51:48 -0400 | [diff] [blame] | 4301 | u64 bytes_used = btrfs_space_info_used(sinfo, false); |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4302 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4303 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4304 | if (force == CHUNK_ALLOC_FORCE) |
| 4305 | return 1; |
| 4306 | |
| 4307 | /* |
| 4308 | * in limited mode, we want to have some free space up to |
| 4309 | * about 1% of the FS size. |
| 4310 | */ |
| 4311 | if (force == CHUNK_ALLOC_LIMITED) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4312 | thresh = btrfs_super_total_bytes(fs_info->super_copy); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4313 | thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1)); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4314 | |
Nikolay Borisov | 8d8aafe | 2017-06-22 09:51:48 -0400 | [diff] [blame] | 4315 | if (sinfo->total_bytes - bytes_used < thresh) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4316 | return 1; |
| 4317 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4318 | |
Nikolay Borisov | 8d8aafe | 2017-06-22 09:51:48 -0400 | [diff] [blame] | 4319 | if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4320 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4321 | return 1; |
| 4322 | } |
| 4323 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4324 | static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4325 | { |
| 4326 | u64 num_dev; |
| 4327 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4328 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4329 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4330 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4331 | BTRFS_BLOCK_GROUP_RAID6)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4332 | num_dev = fs_info->fs_devices->rw_devices; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4333 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4334 | num_dev = 2; |
| 4335 | else |
| 4336 | num_dev = 1; /* DUP or single */ |
| 4337 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4338 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4339 | } |
| 4340 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4341 | /* |
| 4342 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4343 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4344 | * removing a chunk. |
| 4345 | */ |
Nikolay Borisov | 451a2c1 | 2018-06-20 15:49:07 +0300 | [diff] [blame] | 4346 | void check_system_chunk(struct btrfs_trans_handle *trans, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4347 | { |
Nikolay Borisov | 451a2c1 | 2018-06-20 15:49:07 +0300 | [diff] [blame] | 4348 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4349 | struct btrfs_space_info *info; |
| 4350 | u64 left; |
| 4351 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4352 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4353 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4354 | |
| 4355 | /* |
| 4356 | * Needed because we can end up allocating a system chunk and for an |
| 4357 | * atomic and race free space reservation in the chunk block reserve. |
| 4358 | */ |
David Sterba | a32bf9a | 2018-03-16 02:21:22 +0100 | [diff] [blame] | 4359 | lockdep_assert_held(&fs_info->chunk_mutex); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4360 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4361 | info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4362 | spin_lock(&info->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4363 | left = info->total_bytes - btrfs_space_info_used(info, true); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4364 | spin_unlock(&info->lock); |
| 4365 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4366 | num_devs = get_profile_num_devs(fs_info, type); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4367 | |
| 4368 | /* num_devs device items to update and 1 chunk item to add or remove */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4369 | thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) + |
| 4370 | btrfs_calc_trans_metadata_size(fs_info, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4371 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4372 | if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
| 4373 | btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4374 | left, thresh, type); |
| 4375 | dump_space_info(fs_info, info, 0, 0); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4376 | } |
| 4377 | |
| 4378 | if (left < thresh) { |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4379 | u64 flags = btrfs_system_alloc_profile(fs_info); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4380 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4381 | /* |
| 4382 | * Ignore failure to create system chunk. We might end up not |
| 4383 | * needing it, as we might not need to COW all nodes/leafs from |
| 4384 | * the paths we visit in the chunk tree (they were already COWed |
| 4385 | * or created in the current transaction for example). |
| 4386 | */ |
Nikolay Borisov | c216b20 | 2018-06-20 15:49:06 +0300 | [diff] [blame] | 4387 | ret = btrfs_alloc_chunk(trans, flags); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4388 | } |
| 4389 | |
| 4390 | if (!ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4391 | ret = btrfs_block_rsv_add(fs_info->chunk_root, |
| 4392 | &fs_info->chunk_block_rsv, |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4393 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4394 | if (!ret) |
| 4395 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4396 | } |
| 4397 | } |
| 4398 | |
Liu Bo | 28b737f | 2016-07-29 11:09:50 -0700 | [diff] [blame] | 4399 | /* |
| 4400 | * If force is CHUNK_ALLOC_FORCE: |
| 4401 | * - return 1 if it successfully allocates a chunk, |
| 4402 | * - return errors including -ENOSPC otherwise. |
| 4403 | * If force is NOT CHUNK_ALLOC_FORCE: |
| 4404 | * - return 0 if it doesn't need to allocate a new chunk, |
| 4405 | * - return 1 if it successfully allocates a chunk, |
| 4406 | * - return errors including -ENOSPC otherwise. |
| 4407 | */ |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 4408 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags, |
| 4409 | int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4410 | { |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 4411 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4412 | struct btrfs_space_info *space_info; |
Nikolay Borisov | 2556fbb | 2018-04-18 10:27:57 +0300 | [diff] [blame] | 4413 | bool wait_for_alloc = false; |
| 4414 | bool should_alloc = false; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4415 | int ret = 0; |
| 4416 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4417 | /* Don't re-enter if we're already allocating a chunk */ |
| 4418 | if (trans->allocating_chunk) |
| 4419 | return -ENOSPC; |
| 4420 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4421 | space_info = __find_space_info(fs_info, flags); |
Jeff Mahoney | dc2d300 | 2018-03-20 15:25:25 -0400 | [diff] [blame] | 4422 | ASSERT(space_info); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4423 | |
Nikolay Borisov | 2556fbb | 2018-04-18 10:27:57 +0300 | [diff] [blame] | 4424 | do { |
| 4425 | spin_lock(&space_info->lock); |
| 4426 | if (force < space_info->force_alloc) |
| 4427 | force = space_info->force_alloc; |
| 4428 | should_alloc = should_alloc_chunk(fs_info, space_info, force); |
| 4429 | if (space_info->full) { |
| 4430 | /* No more free physical space */ |
| 4431 | if (should_alloc) |
| 4432 | ret = -ENOSPC; |
| 4433 | else |
| 4434 | ret = 0; |
| 4435 | spin_unlock(&space_info->lock); |
| 4436 | return ret; |
| 4437 | } else if (!should_alloc) { |
| 4438 | spin_unlock(&space_info->lock); |
| 4439 | return 0; |
| 4440 | } else if (space_info->chunk_alloc) { |
| 4441 | /* |
| 4442 | * Someone is already allocating, so we need to block |
| 4443 | * until this someone is finished and then loop to |
| 4444 | * recheck if we should continue with our allocation |
| 4445 | * attempt. |
| 4446 | */ |
| 4447 | wait_for_alloc = true; |
| 4448 | spin_unlock(&space_info->lock); |
| 4449 | mutex_lock(&fs_info->chunk_mutex); |
| 4450 | mutex_unlock(&fs_info->chunk_mutex); |
| 4451 | } else { |
| 4452 | /* Proceed with allocation */ |
| 4453 | space_info->chunk_alloc = 1; |
| 4454 | wait_for_alloc = false; |
| 4455 | spin_unlock(&space_info->lock); |
| 4456 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4457 | |
Nikolay Borisov | 2556fbb | 2018-04-18 10:27:57 +0300 | [diff] [blame] | 4458 | cond_resched(); |
| 4459 | } while (wait_for_alloc); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4460 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4461 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4462 | trans->allocating_chunk = true; |
| 4463 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4464 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4465 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4466 | * allocating mixed chunks instead of individual chunks. |
| 4467 | */ |
| 4468 | if (btrfs_mixed_space_info(space_info)) |
| 4469 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4470 | |
| 4471 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4472 | * if we're doing a data chunk, go ahead and make sure that |
| 4473 | * we keep a reasonable number of metadata chunks allocated in the |
| 4474 | * FS as well. |
| 4475 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4476 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4477 | fs_info->data_chunk_allocations++; |
| 4478 | if (!(fs_info->data_chunk_allocations % |
| 4479 | fs_info->metadata_ratio)) |
| 4480 | force_metadata_allocation(fs_info); |
| 4481 | } |
| 4482 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4483 | /* |
| 4484 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4485 | * to update devices. |
| 4486 | */ |
Nikolay Borisov | 451a2c1 | 2018-06-20 15:49:07 +0300 | [diff] [blame] | 4487 | check_system_chunk(trans, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4488 | |
Nikolay Borisov | c216b20 | 2018-06-20 15:49:06 +0300 | [diff] [blame] | 4489 | ret = btrfs_alloc_chunk(trans, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4490 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4491 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4492 | spin_lock(&space_info->lock); |
Nikolay Borisov | 57f1642 | 2018-04-11 11:21:19 +0300 | [diff] [blame] | 4493 | if (ret < 0) { |
| 4494 | if (ret == -ENOSPC) |
| 4495 | space_info->full = 1; |
| 4496 | else |
| 4497 | goto out; |
| 4498 | } else { |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4499 | ret = 1; |
Josef Bacik | 21a94f7 | 2018-10-11 15:54:03 -0400 | [diff] [blame] | 4500 | space_info->max_extent_size = 0; |
Nikolay Borisov | 57f1642 | 2018-04-11 11:21:19 +0300 | [diff] [blame] | 4501 | } |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4502 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4503 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4504 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4505 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4506 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4507 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4508 | /* |
| 4509 | * When we allocate a new chunk we reserve space in the chunk block |
| 4510 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4511 | * add new nodes/leafs to it if we end up needing to do it when |
| 4512 | * inserting the chunk item and updating device items as part of the |
| 4513 | * second phase of chunk allocation, performed by |
| 4514 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4515 | * large number of new block groups to create in our transaction |
| 4516 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4517 | * in extreme cases - like having a single transaction create many new |
| 4518 | * block groups when starting to write out the free space caches of all |
| 4519 | * the block groups that were made dirty during the lifetime of the |
| 4520 | * transaction. |
| 4521 | */ |
Filipe Manana | 5ce5555 | 2018-10-12 10:03:55 +0100 | [diff] [blame] | 4522 | if (trans->chunk_bytes_reserved >= (u64)SZ_2M) |
Nikolay Borisov | 6c686b3 | 2018-02-07 17:55:40 +0200 | [diff] [blame] | 4523 | btrfs_create_pending_block_groups(trans); |
Filipe Manana | 5ce5555 | 2018-10-12 10:03:55 +0100 | [diff] [blame] | 4524 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4525 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4526 | } |
| 4527 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4528 | static int can_overcommit(struct btrfs_fs_info *fs_info, |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4529 | struct btrfs_space_info *space_info, u64 bytes, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4530 | enum btrfs_reserve_flush_enum flush, |
| 4531 | bool system_chunk) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4532 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4533 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4534 | u64 profile; |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4535 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4536 | u64 avail; |
| 4537 | u64 used; |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 4538 | int factor; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4539 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4540 | /* Don't overcommit when in mixed mode. */ |
| 4541 | if (space_info->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4542 | return 0; |
| 4543 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4544 | if (system_chunk) |
| 4545 | profile = btrfs_system_alloc_profile(fs_info); |
| 4546 | else |
| 4547 | profile = btrfs_metadata_alloc_profile(fs_info); |
| 4548 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4549 | used = btrfs_space_info_used(space_info, false); |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4550 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4551 | /* |
| 4552 | * We only want to allow over committing if we have lots of actual space |
| 4553 | * free, but if we don't have enough space to handle the global reserve |
| 4554 | * space then we could end up having a real enospc problem when trying |
| 4555 | * to allocate a chunk or some other such important allocation. |
| 4556 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4557 | spin_lock(&global_rsv->lock); |
| 4558 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4559 | spin_unlock(&global_rsv->lock); |
| 4560 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4561 | return 0; |
| 4562 | |
| 4563 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4564 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4565 | avail = atomic64_read(&fs_info->free_chunk_space); |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4566 | |
| 4567 | /* |
| 4568 | * If we have dup, raid1 or raid10 then only half of the free |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 4569 | * space is actually usable. For raid56, the space info used |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4570 | * doesn't include the parity drive, so we don't have to |
| 4571 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4572 | */ |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 4573 | factor = btrfs_bg_type_to_factor(profile); |
| 4574 | avail = div_u64(avail, factor); |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4575 | |
| 4576 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4577 | * If we aren't flushing all things, let us overcommit up to |
| 4578 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4579 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4580 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4581 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4582 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4583 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4584 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4585 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4586 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4587 | return 1; |
| 4588 | return 0; |
| 4589 | } |
| 4590 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4591 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info, |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4592 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4593 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4594 | struct super_block *sb = fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4595 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4596 | if (down_read_trylock(&sb->s_umount)) { |
| 4597 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4598 | up_read(&sb->s_umount); |
| 4599 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4600 | /* |
| 4601 | * We needn't worry the filesystem going from r/w to r/o though |
| 4602 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4603 | * should guarantee the delalloc inodes list be empty after |
| 4604 | * the filesystem is readonly(all dirty pages are written to |
| 4605 | * the disk). |
| 4606 | */ |
Nikolay Borisov | 82b3e53 | 2018-04-23 10:54:13 +0300 | [diff] [blame] | 4607 | btrfs_start_delalloc_roots(fs_info, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4608 | if (!current->journal_info) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4609 | btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4610 | } |
| 4611 | } |
| 4612 | |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 4613 | static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4614 | u64 to_reclaim) |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4615 | { |
| 4616 | u64 bytes; |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 4617 | u64 nr; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4618 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4619 | bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 4620 | nr = div64_u64(to_reclaim, bytes); |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4621 | if (!nr) |
| 4622 | nr = 1; |
| 4623 | return nr; |
| 4624 | } |
| 4625 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4626 | #define EXTENT_SIZE_PER_ITEM SZ_256K |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4627 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4628 | /* |
| 4629 | * shrink metadata reservation for delalloc |
| 4630 | */ |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4631 | static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim, |
| 4632 | u64 orig, bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4633 | { |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4634 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4635 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4636 | u64 delalloc_bytes; |
Nikolay Borisov | 420829d | 2019-01-03 10:50:05 +0200 | [diff] [blame] | 4637 | u64 async_pages; |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 4638 | u64 items; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4639 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4640 | unsigned long nr_pages; |
| 4641 | int loops; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4642 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4643 | /* Calc the number of the pages we need flush for space reservation */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4644 | items = calc_reclaim_items_nr(fs_info, to_reclaim); |
Chris Mason | 6374e57a | 2017-06-23 09:48:21 -0700 | [diff] [blame] | 4645 | to_reclaim = items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4646 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4647 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 4648 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4649 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4650 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4651 | &fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4652 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4653 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4654 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4655 | if (wait_ordered) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4656 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4657 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4658 | } |
| 4659 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4660 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4661 | while (delalloc_bytes && loops < 3) { |
Nikolay Borisov | 420829d | 2019-01-03 10:50:05 +0200 | [diff] [blame] | 4662 | nr_pages = min(delalloc_bytes, to_reclaim) >> PAGE_SHIFT; |
| 4663 | |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4664 | /* |
Nikolay Borisov | 420829d | 2019-01-03 10:50:05 +0200 | [diff] [blame] | 4665 | * Triggers inode writeback for up to nr_pages. This will invoke |
| 4666 | * ->writepages callback and trigger delalloc filling |
| 4667 | * (btrfs_run_delalloc_range()). |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4668 | */ |
Nikolay Borisov | 420829d | 2019-01-03 10:50:05 +0200 | [diff] [blame] | 4669 | btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items); |
| 4670 | |
| 4671 | /* |
| 4672 | * We need to wait for the compressed pages to start before |
| 4673 | * we continue. |
| 4674 | */ |
| 4675 | async_pages = atomic_read(&fs_info->async_delalloc_pages); |
| 4676 | if (!async_pages) |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4677 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4678 | |
Nikolay Borisov | 420829d | 2019-01-03 10:50:05 +0200 | [diff] [blame] | 4679 | /* |
| 4680 | * Calculate how many compressed pages we want to be written |
| 4681 | * before we continue. I.e if there are more async pages than we |
| 4682 | * require wait_event will wait until nr_pages are written. |
| 4683 | */ |
| 4684 | if (async_pages <= nr_pages) |
| 4685 | async_pages = 0; |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4686 | else |
Nikolay Borisov | 420829d | 2019-01-03 10:50:05 +0200 | [diff] [blame] | 4687 | async_pages -= nr_pages; |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4688 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4689 | wait_event(fs_info->async_submit_wait, |
| 4690 | atomic_read(&fs_info->async_delalloc_pages) <= |
Nikolay Borisov | 420829d | 2019-01-03 10:50:05 +0200 | [diff] [blame] | 4691 | (int)async_pages); |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4692 | skip_async: |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4693 | spin_lock(&space_info->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4694 | if (list_empty(&space_info->tickets) && |
| 4695 | list_empty(&space_info->priority_tickets)) { |
| 4696 | spin_unlock(&space_info->lock); |
| 4697 | break; |
| 4698 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4699 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4700 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4701 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4702 | if (wait_ordered && !trans) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4703 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4704 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4705 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4706 | if (time_left) |
| 4707 | break; |
| 4708 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4709 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4710 | &fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4711 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4712 | } |
| 4713 | |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4714 | struct reserve_ticket { |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 4715 | u64 orig_bytes; |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4716 | u64 bytes; |
| 4717 | int error; |
| 4718 | struct list_head list; |
| 4719 | wait_queue_head_t wait; |
| 4720 | }; |
| 4721 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4722 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4723 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4724 | * @root - the root we're allocating for |
| 4725 | * @bytes - the number of bytes we want to reserve |
| 4726 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4727 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4728 | * This will check to make sure that committing the transaction will actually |
| 4729 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4730 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4731 | */ |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4732 | static int may_commit_transaction(struct btrfs_fs_info *fs_info, |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4733 | struct btrfs_space_info *space_info) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4734 | { |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4735 | struct reserve_ticket *ticket = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4736 | struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv; |
Josef Bacik | 4c8edbc | 2018-12-03 10:20:34 -0500 | [diff] [blame] | 4737 | struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4738 | struct btrfs_trans_handle *trans; |
Josef Bacik | 4c8edbc | 2018-12-03 10:20:34 -0500 | [diff] [blame] | 4739 | u64 bytes_needed; |
| 4740 | u64 reclaim_bytes = 0; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4741 | |
| 4742 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4743 | if (trans) |
| 4744 | return -EAGAIN; |
| 4745 | |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4746 | spin_lock(&space_info->lock); |
| 4747 | if (!list_empty(&space_info->priority_tickets)) |
| 4748 | ticket = list_first_entry(&space_info->priority_tickets, |
| 4749 | struct reserve_ticket, list); |
| 4750 | else if (!list_empty(&space_info->tickets)) |
| 4751 | ticket = list_first_entry(&space_info->tickets, |
| 4752 | struct reserve_ticket, list); |
Josef Bacik | 4c8edbc | 2018-12-03 10:20:34 -0500 | [diff] [blame] | 4753 | bytes_needed = (ticket) ? ticket->bytes : 0; |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4754 | spin_unlock(&space_info->lock); |
| 4755 | |
Josef Bacik | 4c8edbc | 2018-12-03 10:20:34 -0500 | [diff] [blame] | 4756 | if (!bytes_needed) |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4757 | return 0; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4758 | |
Josef Bacik | d89dbef | 2018-11-21 14:03:06 -0500 | [diff] [blame] | 4759 | trans = btrfs_join_transaction(fs_info->extent_root); |
| 4760 | if (IS_ERR(trans)) |
| 4761 | return PTR_ERR(trans); |
| 4762 | |
| 4763 | /* |
| 4764 | * See if there is enough pinned space to make this reservation, or if |
| 4765 | * we have block groups that are going to be freed, allowing us to |
| 4766 | * possibly do a chunk allocation the next loop through. |
| 4767 | */ |
| 4768 | if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags) || |
| 4769 | __percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4770 | bytes_needed, |
| 4771 | BTRFS_TOTAL_BYTES_PINNED_BATCH) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4772 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4773 | |
| 4774 | /* |
| 4775 | * See if there is some space in the delayed insertion reservation for |
| 4776 | * this reservation. |
| 4777 | */ |
| 4778 | if (space_info != delayed_rsv->space_info) |
Josef Bacik | d89dbef | 2018-11-21 14:03:06 -0500 | [diff] [blame] | 4779 | goto enospc; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4780 | |
| 4781 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | 4c8edbc | 2018-12-03 10:20:34 -0500 | [diff] [blame] | 4782 | reclaim_bytes += delayed_rsv->reserved; |
Nikolay Borisov | 057aac3 | 2017-11-07 11:22:54 +0200 | [diff] [blame] | 4783 | spin_unlock(&delayed_rsv->lock); |
| 4784 | |
Josef Bacik | 4c8edbc | 2018-12-03 10:20:34 -0500 | [diff] [blame] | 4785 | spin_lock(&delayed_refs_rsv->lock); |
| 4786 | reclaim_bytes += delayed_refs_rsv->reserved; |
| 4787 | spin_unlock(&delayed_refs_rsv->lock); |
| 4788 | if (reclaim_bytes >= bytes_needed) |
| 4789 | goto commit; |
| 4790 | bytes_needed -= reclaim_bytes; |
| 4791 | |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 4792 | if (__percpu_counter_compare(&space_info->total_bytes_pinned, |
Josef Bacik | 4c8edbc | 2018-12-03 10:20:34 -0500 | [diff] [blame] | 4793 | bytes_needed, |
Josef Bacik | d89dbef | 2018-11-21 14:03:06 -0500 | [diff] [blame] | 4794 | BTRFS_TOTAL_BYTES_PINNED_BATCH) < 0) |
| 4795 | goto enospc; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4796 | |
| 4797 | commit: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4798 | return btrfs_commit_transaction(trans); |
Josef Bacik | d89dbef | 2018-11-21 14:03:06 -0500 | [diff] [blame] | 4799 | enospc: |
| 4800 | btrfs_end_transaction(trans); |
| 4801 | return -ENOSPC; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4802 | } |
| 4803 | |
Nikolay Borisov | e38ae7a | 2017-07-25 17:48:28 +0300 | [diff] [blame] | 4804 | /* |
| 4805 | * Try to flush some data based on policy set by @state. This is only advisory |
| 4806 | * and may fail for various reasons. The caller is supposed to examine the |
| 4807 | * state of @space_info to detect the outcome. |
| 4808 | */ |
| 4809 | static void flush_space(struct btrfs_fs_info *fs_info, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4810 | struct btrfs_space_info *space_info, u64 num_bytes, |
Nikolay Borisov | 7bdd627 | 2017-07-11 13:25:13 +0300 | [diff] [blame] | 4811 | int state) |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4812 | { |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 4813 | struct btrfs_root *root = fs_info->extent_root; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4814 | struct btrfs_trans_handle *trans; |
| 4815 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4816 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4817 | |
| 4818 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4819 | case FLUSH_DELAYED_ITEMS_NR: |
| 4820 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4821 | if (state == FLUSH_DELAYED_ITEMS_NR) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4822 | nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4823 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4824 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4825 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4826 | trans = btrfs_join_transaction(root); |
| 4827 | if (IS_ERR(trans)) { |
| 4828 | ret = PTR_ERR(trans); |
| 4829 | break; |
| 4830 | } |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 4831 | ret = btrfs_run_delayed_items_nr(trans, nr); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4832 | btrfs_end_transaction(trans); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4833 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4834 | case FLUSH_DELALLOC: |
| 4835 | case FLUSH_DELALLOC_WAIT: |
Nikolay Borisov | 7bdd627 | 2017-07-11 13:25:13 +0300 | [diff] [blame] | 4836 | shrink_delalloc(fs_info, num_bytes * 2, num_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4837 | state == FLUSH_DELALLOC_WAIT); |
| 4838 | break; |
Josef Bacik | 413df72 | 2018-12-03 10:20:35 -0500 | [diff] [blame] | 4839 | case FLUSH_DELAYED_REFS_NR: |
| 4840 | case FLUSH_DELAYED_REFS: |
| 4841 | trans = btrfs_join_transaction(root); |
| 4842 | if (IS_ERR(trans)) { |
| 4843 | ret = PTR_ERR(trans); |
| 4844 | break; |
| 4845 | } |
| 4846 | if (state == FLUSH_DELAYED_REFS_NR) |
| 4847 | nr = calc_reclaim_items_nr(fs_info, num_bytes); |
| 4848 | else |
| 4849 | nr = 0; |
| 4850 | btrfs_run_delayed_refs(trans, nr); |
| 4851 | btrfs_end_transaction(trans); |
| 4852 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4853 | case ALLOC_CHUNK: |
Josef Bacik | 450114f | 2018-11-21 14:03:08 -0500 | [diff] [blame] | 4854 | case ALLOC_CHUNK_FORCE: |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4855 | trans = btrfs_join_transaction(root); |
| 4856 | if (IS_ERR(trans)) { |
| 4857 | ret = PTR_ERR(trans); |
| 4858 | break; |
| 4859 | } |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 4860 | ret = do_chunk_alloc(trans, |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4861 | btrfs_metadata_alloc_profile(fs_info), |
Josef Bacik | 450114f | 2018-11-21 14:03:08 -0500 | [diff] [blame] | 4862 | (state == ALLOC_CHUNK) ? |
| 4863 | CHUNK_ALLOC_NO_FORCE : CHUNK_ALLOC_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4864 | btrfs_end_transaction(trans); |
Alex Lyakas | eecba89 | 2015-12-06 12:32:31 +0200 | [diff] [blame] | 4865 | if (ret > 0 || ret == -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4866 | ret = 0; |
| 4867 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4868 | case COMMIT_TRANS: |
Josef Bacik | 3ec9a4c | 2019-01-11 10:21:01 -0500 | [diff] [blame] | 4869 | /* |
| 4870 | * If we have pending delayed iputs then we could free up a |
| 4871 | * bunch of pinned space, so make sure we run the iputs before |
| 4872 | * we do our pinned bytes check below. |
| 4873 | */ |
Josef Bacik | 3ec9a4c | 2019-01-11 10:21:01 -0500 | [diff] [blame] | 4874 | btrfs_run_delayed_iputs(fs_info); |
Josef Bacik | 034f784 | 2018-12-03 11:06:52 -0500 | [diff] [blame] | 4875 | btrfs_wait_on_delayed_iputs(fs_info); |
Josef Bacik | 3ec9a4c | 2019-01-11 10:21:01 -0500 | [diff] [blame] | 4876 | |
Josef Bacik | 996478c | 2017-08-22 16:00:39 -0400 | [diff] [blame] | 4877 | ret = may_commit_transaction(fs_info, space_info); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4878 | break; |
| 4879 | default: |
| 4880 | ret = -ENOSPC; |
| 4881 | break; |
| 4882 | } |
| 4883 | |
Nikolay Borisov | 7bdd627 | 2017-07-11 13:25:13 +0300 | [diff] [blame] | 4884 | trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state, |
| 4885 | ret); |
Nikolay Borisov | e38ae7a | 2017-07-25 17:48:28 +0300 | [diff] [blame] | 4886 | return; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4887 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4888 | |
| 4889 | static inline u64 |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4890 | btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info, |
| 4891 | struct btrfs_space_info *space_info, |
| 4892 | bool system_chunk) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4893 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4894 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4895 | u64 used; |
| 4896 | u64 expected; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4897 | u64 to_reclaim = 0; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4898 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4899 | list_for_each_entry(ticket, &space_info->tickets, list) |
| 4900 | to_reclaim += ticket->bytes; |
| 4901 | list_for_each_entry(ticket, &space_info->priority_tickets, list) |
| 4902 | to_reclaim += ticket->bytes; |
| 4903 | if (to_reclaim) |
| 4904 | return to_reclaim; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4905 | |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4906 | to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4907 | if (can_overcommit(fs_info, space_info, to_reclaim, |
| 4908 | BTRFS_RESERVE_FLUSH_ALL, system_chunk)) |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4909 | return 0; |
| 4910 | |
Nikolay Borisov | 0eee8a4 | 2017-06-14 11:35:34 +0300 | [diff] [blame] | 4911 | used = btrfs_space_info_used(space_info, true); |
| 4912 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4913 | if (can_overcommit(fs_info, space_info, SZ_1M, |
| 4914 | BTRFS_RESERVE_FLUSH_ALL, system_chunk)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4915 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4916 | else |
| 4917 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4918 | |
| 4919 | if (used > expected) |
| 4920 | to_reclaim = used - expected; |
| 4921 | else |
| 4922 | to_reclaim = 0; |
| 4923 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4924 | space_info->bytes_reserved); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4925 | return to_reclaim; |
| 4926 | } |
| 4927 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4928 | static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info, |
| 4929 | struct btrfs_space_info *space_info, |
| 4930 | u64 used, bool system_chunk) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4931 | { |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4932 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4933 | |
| 4934 | /* 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] | 4935 | if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh) |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4936 | return 0; |
| 4937 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4938 | if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 4939 | system_chunk)) |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4940 | return 0; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4941 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4942 | return (used >= thresh && !btrfs_fs_closing(fs_info) && |
| 4943 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4944 | } |
| 4945 | |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 4946 | static bool wake_all_tickets(struct list_head *head) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4947 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4948 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4949 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4950 | while (!list_empty(head)) { |
| 4951 | ticket = list_first_entry(head, struct reserve_ticket, list); |
| 4952 | list_del_init(&ticket->list); |
| 4953 | ticket->error = -ENOSPC; |
| 4954 | wake_up(&ticket->wait); |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 4955 | if (ticket->bytes != ticket->orig_bytes) |
| 4956 | return true; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4957 | } |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 4958 | return false; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4959 | } |
| 4960 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4961 | /* |
| 4962 | * This is for normal flushers, we can wait all goddamned day if we want to. We |
| 4963 | * will loop and continuously try to flush as long as we are making progress. |
| 4964 | * We count progress as clearing off tickets each time we have to loop. |
| 4965 | */ |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4966 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4967 | { |
| 4968 | struct btrfs_fs_info *fs_info; |
| 4969 | struct btrfs_space_info *space_info; |
| 4970 | u64 to_reclaim; |
| 4971 | int flush_state; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4972 | int commit_cycles = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 4973 | u64 last_tickets_id; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4974 | |
| 4975 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 4976 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4977 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4978 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4979 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 4980 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4981 | if (!to_reclaim) { |
| 4982 | space_info->flush = 0; |
| 4983 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4984 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4985 | } |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 4986 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4987 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4988 | |
| 4989 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 4990 | do { |
Nikolay Borisov | e38ae7a | 2017-07-25 17:48:28 +0300 | [diff] [blame] | 4991 | flush_space(fs_info, space_info, to_reclaim, flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4992 | spin_lock(&space_info->lock); |
| 4993 | if (list_empty(&space_info->tickets)) { |
| 4994 | space_info->flush = 0; |
| 4995 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4996 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4997 | } |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4998 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, |
| 4999 | space_info, |
| 5000 | false); |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5001 | if (last_tickets_id == space_info->tickets_id) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5002 | flush_state++; |
| 5003 | } else { |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5004 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5005 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5006 | if (commit_cycles) |
| 5007 | commit_cycles--; |
| 5008 | } |
| 5009 | |
Josef Bacik | 450114f | 2018-11-21 14:03:08 -0500 | [diff] [blame] | 5010 | /* |
| 5011 | * We don't want to force a chunk allocation until we've tried |
| 5012 | * pretty hard to reclaim space. Think of the case where we |
| 5013 | * freed up a bunch of space and so have a lot of pinned space |
| 5014 | * to reclaim. We would rather use that than possibly create a |
| 5015 | * underutilized metadata chunk. So if this is our first run |
| 5016 | * through the flushing state machine skip ALLOC_CHUNK_FORCE and |
| 5017 | * commit the transaction. If nothing has changed the next go |
| 5018 | * around then we can force a chunk allocation. |
| 5019 | */ |
| 5020 | if (flush_state == ALLOC_CHUNK_FORCE && !commit_cycles) |
| 5021 | flush_state++; |
| 5022 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5023 | if (flush_state > COMMIT_TRANS) { |
| 5024 | commit_cycles++; |
| 5025 | if (commit_cycles > 2) { |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5026 | if (wake_all_tickets(&space_info->tickets)) { |
| 5027 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5028 | commit_cycles--; |
| 5029 | } else { |
| 5030 | space_info->flush = 0; |
| 5031 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5032 | } else { |
| 5033 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5034 | } |
| 5035 | } |
| 5036 | spin_unlock(&space_info->lock); |
| 5037 | } while (flush_state <= COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5038 | } |
| 5039 | |
| 5040 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 5041 | { |
| 5042 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 5043 | } |
| 5044 | |
Josef Bacik | 8a1bbe1 | 2018-11-21 14:03:12 -0500 | [diff] [blame] | 5045 | static const enum btrfs_flush_state priority_flush_states[] = { |
| 5046 | FLUSH_DELAYED_ITEMS_NR, |
| 5047 | FLUSH_DELAYED_ITEMS, |
| 5048 | ALLOC_CHUNK, |
| 5049 | }; |
| 5050 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5051 | static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info, |
| 5052 | struct btrfs_space_info *space_info, |
| 5053 | struct reserve_ticket *ticket) |
| 5054 | { |
| 5055 | u64 to_reclaim; |
Josef Bacik | 8a1bbe1 | 2018-11-21 14:03:12 -0500 | [diff] [blame] | 5056 | int flush_state; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5057 | |
| 5058 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5059 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 5060 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5061 | if (!to_reclaim) { |
| 5062 | spin_unlock(&space_info->lock); |
| 5063 | return; |
| 5064 | } |
| 5065 | spin_unlock(&space_info->lock); |
| 5066 | |
Josef Bacik | 8a1bbe1 | 2018-11-21 14:03:12 -0500 | [diff] [blame] | 5067 | flush_state = 0; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5068 | do { |
Josef Bacik | 8a1bbe1 | 2018-11-21 14:03:12 -0500 | [diff] [blame] | 5069 | flush_space(fs_info, space_info, to_reclaim, |
| 5070 | priority_flush_states[flush_state]); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5071 | flush_state++; |
| 5072 | spin_lock(&space_info->lock); |
| 5073 | if (ticket->bytes == 0) { |
| 5074 | spin_unlock(&space_info->lock); |
| 5075 | return; |
| 5076 | } |
| 5077 | spin_unlock(&space_info->lock); |
Josef Bacik | 8a1bbe1 | 2018-11-21 14:03:12 -0500 | [diff] [blame] | 5078 | } while (flush_state < ARRAY_SIZE(priority_flush_states)); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5079 | } |
| 5080 | |
| 5081 | static int wait_reserve_ticket(struct btrfs_fs_info *fs_info, |
| 5082 | struct btrfs_space_info *space_info, |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5083 | struct reserve_ticket *ticket) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5084 | |
| 5085 | { |
| 5086 | DEFINE_WAIT(wait); |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5087 | u64 reclaim_bytes = 0; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5088 | int ret = 0; |
| 5089 | |
| 5090 | spin_lock(&space_info->lock); |
| 5091 | while (ticket->bytes > 0 && ticket->error == 0) { |
| 5092 | ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE); |
| 5093 | if (ret) { |
| 5094 | ret = -EINTR; |
| 5095 | break; |
| 5096 | } |
| 5097 | spin_unlock(&space_info->lock); |
| 5098 | |
| 5099 | schedule(); |
| 5100 | |
| 5101 | finish_wait(&ticket->wait, &wait); |
| 5102 | spin_lock(&space_info->lock); |
| 5103 | } |
| 5104 | if (!ret) |
| 5105 | ret = ticket->error; |
| 5106 | if (!list_empty(&ticket->list)) |
| 5107 | list_del_init(&ticket->list); |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5108 | if (ticket->bytes && ticket->bytes < ticket->orig_bytes) |
| 5109 | reclaim_bytes = ticket->orig_bytes - ticket->bytes; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5110 | spin_unlock(&space_info->lock); |
| 5111 | |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5112 | if (reclaim_bytes) |
| 5113 | space_info_add_old_bytes(fs_info, space_info, reclaim_bytes); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5114 | return ret; |
| 5115 | } |
| 5116 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5117 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5118 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5119 | * @root - the root we're allocating for |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5120 | * @space_info - the space info we want to allocate from |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5121 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 5122 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5123 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5124 | * 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] | 5125 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5126 | * flush out space to make room. It will do this by flushing delalloc if |
| 5127 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5128 | * regain reservations will be made and this will fail if there is not enough |
| 5129 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5130 | */ |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5131 | static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5132 | struct btrfs_space_info *space_info, |
| 5133 | u64 orig_bytes, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5134 | enum btrfs_reserve_flush_enum flush, |
| 5135 | bool system_chunk) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5136 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5137 | struct reserve_ticket ticket; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5138 | u64 used; |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5139 | u64 reclaim_bytes = 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5140 | int ret = 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5141 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5142 | ASSERT(orig_bytes); |
Josef Bacik | 8ca17f0 | 2016-05-27 13:24:13 -0400 | [diff] [blame] | 5143 | ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL); |
| 5144 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5145 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 5146 | ret = -ENOSPC; |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5147 | used = btrfs_space_info_used(space_info, true); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5148 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5149 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5150 | * If we have enough space then hooray, make our reservation and carry |
| 5151 | * on. If not see if we can overcommit, and if we can, hooray carry on. |
| 5152 | * If not things get more complicated. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5153 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5154 | if (used + orig_bytes <= space_info->total_bytes) { |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 5155 | update_bytes_may_use(space_info, orig_bytes); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5156 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5157 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5158 | ret = 0; |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5159 | } else if (can_overcommit(fs_info, space_info, orig_bytes, flush, |
| 5160 | system_chunk)) { |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 5161 | update_bytes_may_use(space_info, orig_bytes); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5162 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5163 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5164 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5165 | } |
| 5166 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5167 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5168 | * If we couldn't make a reservation then setup our reservation ticket |
| 5169 | * and kick the async worker if it's not already running. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5170 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5171 | * If we are a priority flusher then we just need to add our ticket to |
| 5172 | * the list and we will do our own flushing further down. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5173 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 5174 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5175 | ticket.orig_bytes = orig_bytes; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5176 | ticket.bytes = orig_bytes; |
| 5177 | ticket.error = 0; |
| 5178 | init_waitqueue_head(&ticket.wait); |
| 5179 | if (flush == BTRFS_RESERVE_FLUSH_ALL) { |
| 5180 | list_add_tail(&ticket.list, &space_info->tickets); |
| 5181 | if (!space_info->flush) { |
| 5182 | space_info->flush = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5183 | trace_btrfs_trigger_flush(fs_info, |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5184 | space_info->flags, |
| 5185 | orig_bytes, flush, |
| 5186 | "enospc"); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5187 | queue_work(system_unbound_wq, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5188 | &fs_info->async_reclaim_work); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5189 | } |
| 5190 | } else { |
| 5191 | list_add_tail(&ticket.list, |
| 5192 | &space_info->priority_tickets); |
| 5193 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5194 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 5195 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 5196 | /* |
| 5197 | * We will do the space reservation dance during log replay, |
| 5198 | * which means we won't have fs_info->fs_root set, so don't do |
| 5199 | * the async reclaim as we will panic. |
| 5200 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5201 | if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) && |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5202 | need_do_async_reclaim(fs_info, space_info, |
| 5203 | used, system_chunk) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5204 | !work_busy(&fs_info->async_reclaim_work)) { |
| 5205 | trace_btrfs_trigger_flush(fs_info, space_info->flags, |
| 5206 | orig_bytes, flush, "preempt"); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5207 | queue_work(system_unbound_wq, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5208 | &fs_info->async_reclaim_work); |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5209 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5210 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5211 | spin_unlock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5212 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5213 | return ret; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5214 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5215 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5216 | return wait_reserve_ticket(fs_info, space_info, &ticket); |
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; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5219 | priority_reclaim_metadata_space(fs_info, space_info, &ticket); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5220 | spin_lock(&space_info->lock); |
| 5221 | if (ticket.bytes) { |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5222 | if (ticket.bytes < orig_bytes) |
| 5223 | reclaim_bytes = orig_bytes - ticket.bytes; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5224 | list_del_init(&ticket.list); |
| 5225 | ret = -ENOSPC; |
| 5226 | } |
| 5227 | spin_unlock(&space_info->lock); |
Josef Bacik | f91587e | 2018-11-21 14:03:10 -0500 | [diff] [blame] | 5228 | |
| 5229 | if (reclaim_bytes) |
| 5230 | space_info_add_old_bytes(fs_info, space_info, reclaim_bytes); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5231 | ASSERT(list_empty(&ticket.list)); |
| 5232 | return ret; |
| 5233 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5234 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5235 | /** |
| 5236 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5237 | * @root - the root we're allocating for |
| 5238 | * @block_rsv - the block_rsv we're allocating for |
| 5239 | * @orig_bytes - the number of bytes we want |
| 5240 | * @flush - whether or not we can flush to make our reservation |
| 5241 | * |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 5242 | * This will reserve orig_bytes number of bytes from the space info associated |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5243 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5244 | * flush out space to make room. It will do this by flushing delalloc if |
| 5245 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5246 | * regain reservations will be made and this will fail if there is not enough |
| 5247 | * space already. |
| 5248 | */ |
| 5249 | static int reserve_metadata_bytes(struct btrfs_root *root, |
| 5250 | struct btrfs_block_rsv *block_rsv, |
| 5251 | u64 orig_bytes, |
| 5252 | enum btrfs_reserve_flush_enum flush) |
| 5253 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5254 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5255 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5256 | int ret; |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5257 | bool system_chunk = (root == fs_info->chunk_root); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5258 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5259 | ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info, |
| 5260 | orig_bytes, flush, system_chunk); |
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)) { |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5263 | if (block_rsv != global_rsv && |
| 5264 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 5265 | ret = 0; |
| 5266 | } |
Nikolay Borisov | 9a3daff | 2017-12-15 12:05:37 +0200 | [diff] [blame] | 5267 | if (ret == -ENOSPC) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5268 | trace_btrfs_space_reservation(fs_info, "space_info:enospc", |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5269 | block_rsv->space_info->flags, |
| 5270 | orig_bytes, 1); |
Nikolay Borisov | 9a3daff | 2017-12-15 12:05:37 +0200 | [diff] [blame] | 5271 | |
| 5272 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) |
| 5273 | dump_space_info(fs_info, block_rsv->space_info, |
| 5274 | orig_bytes, 0); |
| 5275 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5276 | return ret; |
| 5277 | } |
| 5278 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5279 | static struct btrfs_block_rsv *get_block_rsv( |
| 5280 | const struct btrfs_trans_handle *trans, |
| 5281 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5282 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5283 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5284 | struct btrfs_block_rsv *block_rsv = NULL; |
| 5285 | |
Alexandru Moise | e9cf439 | 2015-09-09 00:18:50 +0000 | [diff] [blame] | 5286 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5287 | (root == fs_info->csum_root && trans->adding_csums) || |
| 5288 | (root == fs_info->uuid_root)) |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 5289 | block_rsv = trans->block_rsv; |
| 5290 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5291 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5292 | block_rsv = root->block_rsv; |
| 5293 | |
| 5294 | if (!block_rsv) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5295 | block_rsv = &fs_info->empty_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5296 | |
| 5297 | return block_rsv; |
| 5298 | } |
| 5299 | |
| 5300 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 5301 | u64 num_bytes) |
| 5302 | { |
| 5303 | int ret = -ENOSPC; |
| 5304 | spin_lock(&block_rsv->lock); |
| 5305 | if (block_rsv->reserved >= num_bytes) { |
| 5306 | block_rsv->reserved -= num_bytes; |
| 5307 | if (block_rsv->reserved < block_rsv->size) |
| 5308 | block_rsv->full = 0; |
| 5309 | ret = 0; |
| 5310 | } |
| 5311 | spin_unlock(&block_rsv->lock); |
| 5312 | return ret; |
| 5313 | } |
| 5314 | |
| 5315 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 5316 | u64 num_bytes, bool update_size) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5317 | { |
| 5318 | spin_lock(&block_rsv->lock); |
| 5319 | block_rsv->reserved += num_bytes; |
| 5320 | if (update_size) |
| 5321 | block_rsv->size += num_bytes; |
| 5322 | else if (block_rsv->reserved >= block_rsv->size) |
| 5323 | block_rsv->full = 1; |
| 5324 | spin_unlock(&block_rsv->lock); |
| 5325 | } |
| 5326 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 5327 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 5328 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 5329 | int min_factor) |
| 5330 | { |
| 5331 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5332 | u64 min_bytes; |
| 5333 | |
| 5334 | if (global_rsv->space_info != dest->space_info) |
| 5335 | return -ENOSPC; |
| 5336 | |
| 5337 | spin_lock(&global_rsv->lock); |
| 5338 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 5339 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 5340 | spin_unlock(&global_rsv->lock); |
| 5341 | return -ENOSPC; |
| 5342 | } |
| 5343 | global_rsv->reserved -= num_bytes; |
| 5344 | if (global_rsv->reserved < global_rsv->size) |
| 5345 | global_rsv->full = 0; |
| 5346 | spin_unlock(&global_rsv->lock); |
| 5347 | |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 5348 | block_rsv_add_bytes(dest, num_bytes, true); |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 5349 | return 0; |
| 5350 | } |
| 5351 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5352 | /** |
| 5353 | * btrfs_migrate_to_delayed_refs_rsv - transfer bytes to our delayed refs rsv. |
| 5354 | * @fs_info - the fs info for our fs. |
| 5355 | * @src - the source block rsv to transfer from. |
| 5356 | * @num_bytes - the number of bytes to transfer. |
| 5357 | * |
| 5358 | * This transfers up to the num_bytes amount from the src rsv to the |
| 5359 | * delayed_refs_rsv. Any extra bytes are returned to the space info. |
| 5360 | */ |
| 5361 | void btrfs_migrate_to_delayed_refs_rsv(struct btrfs_fs_info *fs_info, |
| 5362 | struct btrfs_block_rsv *src, |
| 5363 | u64 num_bytes) |
| 5364 | { |
| 5365 | struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv; |
| 5366 | u64 to_free = 0; |
| 5367 | |
| 5368 | spin_lock(&src->lock); |
| 5369 | src->reserved -= num_bytes; |
| 5370 | src->size -= num_bytes; |
| 5371 | spin_unlock(&src->lock); |
| 5372 | |
| 5373 | spin_lock(&delayed_refs_rsv->lock); |
| 5374 | if (delayed_refs_rsv->size > delayed_refs_rsv->reserved) { |
| 5375 | u64 delta = delayed_refs_rsv->size - |
| 5376 | delayed_refs_rsv->reserved; |
| 5377 | if (num_bytes > delta) { |
| 5378 | to_free = num_bytes - delta; |
| 5379 | num_bytes = delta; |
| 5380 | } |
| 5381 | } else { |
| 5382 | to_free = num_bytes; |
| 5383 | num_bytes = 0; |
| 5384 | } |
| 5385 | |
| 5386 | if (num_bytes) |
| 5387 | delayed_refs_rsv->reserved += num_bytes; |
| 5388 | if (delayed_refs_rsv->reserved >= delayed_refs_rsv->size) |
| 5389 | delayed_refs_rsv->full = 1; |
| 5390 | spin_unlock(&delayed_refs_rsv->lock); |
| 5391 | |
| 5392 | if (num_bytes) |
| 5393 | trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv", |
| 5394 | 0, num_bytes, 1); |
| 5395 | if (to_free) |
| 5396 | space_info_add_old_bytes(fs_info, delayed_refs_rsv->space_info, |
| 5397 | to_free); |
| 5398 | } |
| 5399 | |
| 5400 | /** |
| 5401 | * btrfs_delayed_refs_rsv_refill - refill based on our delayed refs usage. |
| 5402 | * @fs_info - the fs_info for our fs. |
| 5403 | * @flush - control how we can flush for this reservation. |
| 5404 | * |
| 5405 | * This will refill the delayed block_rsv up to 1 items size worth of space and |
| 5406 | * will return -ENOSPC if we can't make the reservation. |
| 5407 | */ |
| 5408 | int btrfs_delayed_refs_rsv_refill(struct btrfs_fs_info *fs_info, |
| 5409 | enum btrfs_reserve_flush_enum flush) |
| 5410 | { |
| 5411 | struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv; |
| 5412 | u64 limit = btrfs_calc_trans_metadata_size(fs_info, 1); |
| 5413 | u64 num_bytes = 0; |
| 5414 | int ret = -ENOSPC; |
| 5415 | |
| 5416 | spin_lock(&block_rsv->lock); |
| 5417 | if (block_rsv->reserved < block_rsv->size) { |
| 5418 | num_bytes = block_rsv->size - block_rsv->reserved; |
| 5419 | num_bytes = min(num_bytes, limit); |
| 5420 | } |
| 5421 | spin_unlock(&block_rsv->lock); |
| 5422 | |
| 5423 | if (!num_bytes) |
| 5424 | return 0; |
| 5425 | |
| 5426 | ret = reserve_metadata_bytes(fs_info->extent_root, block_rsv, |
| 5427 | num_bytes, flush); |
| 5428 | if (ret) |
| 5429 | return ret; |
| 5430 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
| 5431 | trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv", |
| 5432 | 0, num_bytes, 1); |
| 5433 | return 0; |
| 5434 | } |
| 5435 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5436 | /* |
| 5437 | * This is for space we already have accounted in space_info->bytes_may_use, so |
| 5438 | * basically when we're returning space from block_rsv's. |
| 5439 | */ |
| 5440 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 5441 | struct btrfs_space_info *space_info, |
| 5442 | u64 num_bytes) |
| 5443 | { |
| 5444 | struct reserve_ticket *ticket; |
| 5445 | struct list_head *head; |
| 5446 | u64 used; |
| 5447 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH; |
| 5448 | bool check_overcommit = false; |
| 5449 | |
| 5450 | spin_lock(&space_info->lock); |
| 5451 | head = &space_info->priority_tickets; |
| 5452 | |
| 5453 | /* |
| 5454 | * If we are over our limit then we need to check and see if we can |
| 5455 | * overcommit, and if we can't then we just need to free up our space |
| 5456 | * and not satisfy any requests. |
| 5457 | */ |
Nikolay Borisov | 0eee8a4 | 2017-06-14 11:35:34 +0300 | [diff] [blame] | 5458 | used = btrfs_space_info_used(space_info, true); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5459 | if (used - num_bytes >= space_info->total_bytes) |
| 5460 | check_overcommit = true; |
| 5461 | again: |
| 5462 | while (!list_empty(head) && num_bytes) { |
| 5463 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5464 | list); |
| 5465 | /* |
| 5466 | * We use 0 bytes because this space is already reserved, so |
| 5467 | * adding the ticket space would be a double count. |
| 5468 | */ |
| 5469 | if (check_overcommit && |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5470 | !can_overcommit(fs_info, space_info, 0, flush, false)) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5471 | break; |
| 5472 | if (num_bytes >= ticket->bytes) { |
| 5473 | list_del_init(&ticket->list); |
| 5474 | num_bytes -= ticket->bytes; |
| 5475 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5476 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5477 | wake_up(&ticket->wait); |
| 5478 | } else { |
| 5479 | ticket->bytes -= num_bytes; |
| 5480 | num_bytes = 0; |
| 5481 | } |
| 5482 | } |
| 5483 | |
| 5484 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5485 | head = &space_info->tickets; |
| 5486 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 5487 | goto again; |
| 5488 | } |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 5489 | update_bytes_may_use(space_info, -num_bytes); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5490 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5491 | space_info->flags, num_bytes, 0); |
| 5492 | spin_unlock(&space_info->lock); |
| 5493 | } |
| 5494 | |
| 5495 | /* |
| 5496 | * This is for newly allocated space that isn't accounted in |
| 5497 | * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent |
| 5498 | * we use this helper. |
| 5499 | */ |
| 5500 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 5501 | struct btrfs_space_info *space_info, |
| 5502 | u64 num_bytes) |
| 5503 | { |
| 5504 | struct reserve_ticket *ticket; |
| 5505 | struct list_head *head = &space_info->priority_tickets; |
| 5506 | |
| 5507 | again: |
| 5508 | while (!list_empty(head) && num_bytes) { |
| 5509 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5510 | list); |
| 5511 | if (num_bytes >= ticket->bytes) { |
| 5512 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5513 | space_info->flags, |
| 5514 | ticket->bytes, 1); |
| 5515 | list_del_init(&ticket->list); |
| 5516 | num_bytes -= ticket->bytes; |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 5517 | update_bytes_may_use(space_info, ticket->bytes); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5518 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5519 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5520 | wake_up(&ticket->wait); |
| 5521 | } else { |
| 5522 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5523 | space_info->flags, |
| 5524 | num_bytes, 1); |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 5525 | update_bytes_may_use(space_info, num_bytes); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5526 | ticket->bytes -= num_bytes; |
| 5527 | num_bytes = 0; |
| 5528 | } |
| 5529 | } |
| 5530 | |
| 5531 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5532 | head = &space_info->tickets; |
| 5533 | goto again; |
| 5534 | } |
| 5535 | } |
| 5536 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5537 | static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5538 | struct btrfs_block_rsv *block_rsv, |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5539 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 5540 | u64 *qgroup_to_release_ret) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5541 | { |
| 5542 | struct btrfs_space_info *space_info = block_rsv->space_info; |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5543 | u64 qgroup_to_release = 0; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5544 | u64 ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5545 | |
| 5546 | spin_lock(&block_rsv->lock); |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5547 | if (num_bytes == (u64)-1) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5548 | num_bytes = block_rsv->size; |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5549 | qgroup_to_release = block_rsv->qgroup_rsv_size; |
| 5550 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5551 | block_rsv->size -= num_bytes; |
| 5552 | if (block_rsv->reserved >= block_rsv->size) { |
| 5553 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 5554 | block_rsv->reserved = block_rsv->size; |
| 5555 | block_rsv->full = 1; |
| 5556 | } else { |
| 5557 | num_bytes = 0; |
| 5558 | } |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5559 | if (block_rsv->qgroup_rsv_reserved >= block_rsv->qgroup_rsv_size) { |
| 5560 | qgroup_to_release = block_rsv->qgroup_rsv_reserved - |
| 5561 | block_rsv->qgroup_rsv_size; |
| 5562 | block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size; |
| 5563 | } else { |
| 5564 | qgroup_to_release = 0; |
| 5565 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5566 | spin_unlock(&block_rsv->lock); |
| 5567 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5568 | ret = num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5569 | if (num_bytes > 0) { |
| 5570 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 5571 | spin_lock(&dest->lock); |
| 5572 | if (!dest->full) { |
| 5573 | u64 bytes_to_add; |
| 5574 | |
| 5575 | bytes_to_add = dest->size - dest->reserved; |
| 5576 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 5577 | dest->reserved += bytes_to_add; |
| 5578 | if (dest->reserved >= dest->size) |
| 5579 | dest->full = 1; |
| 5580 | num_bytes -= bytes_to_add; |
| 5581 | } |
| 5582 | spin_unlock(&dest->lock); |
| 5583 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5584 | if (num_bytes) |
| 5585 | space_info_add_old_bytes(fs_info, space_info, |
| 5586 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5587 | } |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5588 | if (qgroup_to_release_ret) |
| 5589 | *qgroup_to_release_ret = qgroup_to_release; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5590 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5591 | } |
| 5592 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5593 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src, |
| 5594 | struct btrfs_block_rsv *dst, u64 num_bytes, |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 5595 | bool update_size) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5596 | { |
| 5597 | int ret; |
| 5598 | |
| 5599 | ret = block_rsv_use_bytes(src, num_bytes); |
| 5600 | if (ret) |
| 5601 | return ret; |
| 5602 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5603 | block_rsv_add_bytes(dst, num_bytes, update_size); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5604 | return 0; |
| 5605 | } |
| 5606 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5607 | 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] | 5608 | { |
| 5609 | memset(rsv, 0, sizeof(*rsv)); |
| 5610 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5611 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5612 | } |
| 5613 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5614 | void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info, |
| 5615 | struct btrfs_block_rsv *rsv, |
| 5616 | unsigned short type) |
| 5617 | { |
| 5618 | btrfs_init_block_rsv(rsv, type); |
| 5619 | rsv->space_info = __find_space_info(fs_info, |
| 5620 | BTRFS_BLOCK_GROUP_METADATA); |
| 5621 | } |
| 5622 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5623 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info, |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5624 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5625 | { |
| 5626 | struct btrfs_block_rsv *block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5627 | |
| 5628 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 5629 | if (!block_rsv) |
| 5630 | return NULL; |
| 5631 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5632 | btrfs_init_metadata_block_rsv(fs_info, block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5633 | return block_rsv; |
| 5634 | } |
| 5635 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5636 | void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5637 | struct btrfs_block_rsv *rsv) |
| 5638 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 5639 | if (!rsv) |
| 5640 | return; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5641 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5642 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5643 | } |
| 5644 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5645 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5646 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5647 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5648 | { |
| 5649 | int ret; |
| 5650 | |
| 5651 | if (num_bytes == 0) |
| 5652 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5653 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5654 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Lu Fengqi | 5a2cb25 | 2018-08-04 21:10:56 +0800 | [diff] [blame] | 5655 | if (!ret) |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 5656 | block_rsv_add_bytes(block_rsv, num_bytes, true); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5657 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5658 | return ret; |
| 5659 | } |
| 5660 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5661 | int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5662 | { |
| 5663 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5664 | int ret = -ENOSPC; |
| 5665 | |
| 5666 | if (!block_rsv) |
| 5667 | return 0; |
| 5668 | |
| 5669 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5670 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5671 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5672 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5673 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5674 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5675 | return ret; |
| 5676 | } |
| 5677 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5678 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5679 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5680 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5681 | { |
| 5682 | u64 num_bytes = 0; |
| 5683 | int ret = -ENOSPC; |
| 5684 | |
| 5685 | if (!block_rsv) |
| 5686 | return 0; |
| 5687 | |
| 5688 | spin_lock(&block_rsv->lock); |
| 5689 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5690 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5691 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5692 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5693 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5694 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5695 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5696 | if (!ret) |
| 5697 | return 0; |
| 5698 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5699 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5700 | if (!ret) { |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 5701 | block_rsv_add_bytes(block_rsv, num_bytes, false); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5702 | return 0; |
| 5703 | } |
| 5704 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5705 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5706 | } |
| 5707 | |
Josef Bacik | 5df1136 | 2018-11-21 14:03:11 -0500 | [diff] [blame] | 5708 | static void calc_refill_bytes(struct btrfs_block_rsv *block_rsv, |
| 5709 | u64 *metadata_bytes, u64 *qgroup_bytes) |
| 5710 | { |
| 5711 | *metadata_bytes = 0; |
| 5712 | *qgroup_bytes = 0; |
| 5713 | |
| 5714 | spin_lock(&block_rsv->lock); |
| 5715 | if (block_rsv->reserved < block_rsv->size) |
| 5716 | *metadata_bytes = block_rsv->size - block_rsv->reserved; |
| 5717 | if (block_rsv->qgroup_rsv_reserved < block_rsv->qgroup_rsv_size) |
| 5718 | *qgroup_bytes = block_rsv->qgroup_rsv_size - |
| 5719 | block_rsv->qgroup_rsv_reserved; |
| 5720 | spin_unlock(&block_rsv->lock); |
| 5721 | } |
| 5722 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5723 | /** |
| 5724 | * btrfs_inode_rsv_refill - refill the inode block rsv. |
| 5725 | * @inode - the inode we are refilling. |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 5726 | * @flush - the flushing restriction. |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5727 | * |
| 5728 | * Essentially the same as btrfs_block_rsv_refill, except it uses the |
| 5729 | * block_rsv->size as the minimum size. We'll either refill the missing amount |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 5730 | * or return if we already have enough space. This will also handle the reserve |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5731 | * tracepoint for the reserved amount. |
| 5732 | */ |
Qu Wenruo | 3f2dd7a | 2017-11-17 15:14:19 +0800 | [diff] [blame] | 5733 | static int btrfs_inode_rsv_refill(struct btrfs_inode *inode, |
| 5734 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5735 | { |
| 5736 | struct btrfs_root *root = inode->root; |
| 5737 | struct btrfs_block_rsv *block_rsv = &inode->block_rsv; |
Josef Bacik | 5df1136 | 2018-11-21 14:03:11 -0500 | [diff] [blame] | 5738 | u64 num_bytes, last = 0; |
| 5739 | u64 qgroup_num_bytes; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5740 | int ret = -ENOSPC; |
| 5741 | |
Josef Bacik | 5df1136 | 2018-11-21 14:03:11 -0500 | [diff] [blame] | 5742 | calc_refill_bytes(block_rsv, &num_bytes, &qgroup_num_bytes); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5743 | if (num_bytes == 0) |
| 5744 | return 0; |
| 5745 | |
Josef Bacik | 5df1136 | 2018-11-21 14:03:11 -0500 | [diff] [blame] | 5746 | do { |
| 5747 | ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_num_bytes, |
| 5748 | true); |
| 5749 | if (ret) |
| 5750 | return ret; |
| 5751 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
| 5752 | if (ret) { |
| 5753 | btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes); |
| 5754 | last = num_bytes; |
| 5755 | /* |
| 5756 | * If we are fragmented we can end up with a lot of |
| 5757 | * outstanding extents which will make our size be much |
| 5758 | * larger than our reserved amount. |
| 5759 | * |
| 5760 | * If the reservation happens here, it might be very |
| 5761 | * big though not needed in the end, if the delalloc |
| 5762 | * flushing happens. |
| 5763 | * |
| 5764 | * If this is the case try and do the reserve again. |
| 5765 | */ |
| 5766 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
| 5767 | calc_refill_bytes(block_rsv, &num_bytes, |
| 5768 | &qgroup_num_bytes); |
| 5769 | if (num_bytes == 0) |
| 5770 | return 0; |
| 5771 | } |
| 5772 | } while (ret && last != num_bytes); |
| 5773 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5774 | if (!ret) { |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 5775 | block_rsv_add_bytes(block_rsv, num_bytes, false); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5776 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 5777 | btrfs_ino(inode), num_bytes, 1); |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5778 | |
| 5779 | /* Don't forget to increase qgroup_rsv_reserved */ |
| 5780 | spin_lock(&block_rsv->lock); |
| 5781 | block_rsv->qgroup_rsv_reserved += qgroup_num_bytes; |
| 5782 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 5df1136 | 2018-11-21 14:03:11 -0500 | [diff] [blame] | 5783 | } |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5784 | return ret; |
| 5785 | } |
| 5786 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5787 | static u64 __btrfs_block_rsv_release(struct btrfs_fs_info *fs_info, |
| 5788 | struct btrfs_block_rsv *block_rsv, |
| 5789 | u64 num_bytes, u64 *qgroup_to_release) |
| 5790 | { |
| 5791 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5792 | struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv; |
| 5793 | struct btrfs_block_rsv *target = delayed_rsv; |
| 5794 | |
| 5795 | if (target->full || target == block_rsv) |
| 5796 | target = global_rsv; |
| 5797 | |
| 5798 | if (block_rsv->space_info != target->space_info) |
| 5799 | target = NULL; |
| 5800 | |
| 5801 | return block_rsv_release_bytes(fs_info, block_rsv, target, num_bytes, |
| 5802 | qgroup_to_release); |
| 5803 | } |
| 5804 | |
| 5805 | void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info, |
| 5806 | struct btrfs_block_rsv *block_rsv, |
| 5807 | u64 num_bytes) |
| 5808 | { |
| 5809 | __btrfs_block_rsv_release(fs_info, block_rsv, num_bytes, NULL); |
| 5810 | } |
| 5811 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5812 | /** |
| 5813 | * btrfs_inode_rsv_release - release any excessive reservation. |
| 5814 | * @inode - the inode we need to release from. |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 5815 | * @qgroup_free - free or convert qgroup meta. |
| 5816 | * Unlike normal operation, qgroup meta reservation needs to know if we are |
| 5817 | * freeing qgroup reservation or just converting it into per-trans. Normally |
| 5818 | * @qgroup_free is true for error handling, and false for normal release. |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5819 | * |
| 5820 | * This is the same as btrfs_block_rsv_release, except that it handles the |
| 5821 | * tracepoint for the reservation. |
| 5822 | */ |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 5823 | static void btrfs_inode_rsv_release(struct btrfs_inode *inode, bool qgroup_free) |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5824 | { |
| 5825 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5826 | struct btrfs_block_rsv *block_rsv = &inode->block_rsv; |
| 5827 | u64 released = 0; |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5828 | u64 qgroup_to_release = 0; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5829 | |
| 5830 | /* |
| 5831 | * Since we statically set the block_rsv->size we just want to say we |
| 5832 | * are releasing 0 bytes, and then we'll just get the reservation over |
| 5833 | * the size free'd. |
| 5834 | */ |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5835 | released = __btrfs_block_rsv_release(fs_info, block_rsv, 0, |
| 5836 | &qgroup_to_release); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5837 | if (released > 0) |
| 5838 | trace_btrfs_space_reservation(fs_info, "delalloc", |
| 5839 | btrfs_ino(inode), released, 0); |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 5840 | if (qgroup_free) |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5841 | btrfs_qgroup_free_meta_prealloc(inode->root, qgroup_to_release); |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 5842 | else |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5843 | btrfs_qgroup_convert_reserved_meta(inode->root, |
| 5844 | qgroup_to_release); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 5845 | } |
| 5846 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5847 | /** |
| 5848 | * btrfs_delayed_refs_rsv_release - release a ref head's reservation. |
| 5849 | * @fs_info - the fs_info for our fs. |
| 5850 | * @nr - the number of items to drop. |
| 5851 | * |
| 5852 | * This drops the delayed ref head's count from the delayed refs rsv and frees |
| 5853 | * any excess reservation we had. |
| 5854 | */ |
| 5855 | void btrfs_delayed_refs_rsv_release(struct btrfs_fs_info *fs_info, int nr) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5856 | { |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5857 | struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5858 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5859 | u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, nr); |
| 5860 | u64 released = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5861 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5862 | released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv, |
| 5863 | num_bytes, NULL); |
| 5864 | if (released) |
| 5865 | trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv", |
| 5866 | 0, released, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5867 | } |
| 5868 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5869 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5870 | { |
| 5871 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5872 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5873 | u64 num_bytes; |
| 5874 | |
Josef Bacik | ae2e472 | 2016-05-27 12:58:35 -0400 | [diff] [blame] | 5875 | /* |
| 5876 | * The global block rsv is based on the size of the extent tree, the |
| 5877 | * checksum tree and the root tree. If the fs is empty we want to set |
| 5878 | * it to a minimal amount for safety. |
| 5879 | */ |
| 5880 | num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) + |
| 5881 | btrfs_root_used(&fs_info->csum_root->root_item) + |
| 5882 | btrfs_root_used(&fs_info->tree_root->root_item); |
| 5883 | num_bytes = max_t(u64, num_bytes, SZ_16M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5884 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5885 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5886 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5887 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 5888 | block_rsv->size = min_t(u64, num_bytes, SZ_512M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5889 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5890 | if (block_rsv->reserved < block_rsv->size) { |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5891 | num_bytes = btrfs_space_info_used(sinfo, true); |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5892 | if (sinfo->total_bytes > num_bytes) { |
| 5893 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5894 | num_bytes = min(num_bytes, |
| 5895 | block_rsv->size - block_rsv->reserved); |
| 5896 | block_rsv->reserved += num_bytes; |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 5897 | update_bytes_may_use(sinfo, num_bytes); |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5898 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5899 | sinfo->flags, num_bytes, |
| 5900 | 1); |
| 5901 | } |
| 5902 | } else if (block_rsv->reserved > block_rsv->size) { |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5903 | num_bytes = block_rsv->reserved - block_rsv->size; |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 5904 | update_bytes_may_use(sinfo, -num_bytes); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5905 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5906 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5907 | block_rsv->reserved = block_rsv->size; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5908 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5909 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5910 | if (block_rsv->reserved == block_rsv->size) |
| 5911 | block_rsv->full = 1; |
| 5912 | else |
| 5913 | block_rsv->full = 0; |
| 5914 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5915 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5916 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5917 | } |
| 5918 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5919 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5920 | { |
| 5921 | struct btrfs_space_info *space_info; |
| 5922 | |
| 5923 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5924 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5925 | |
| 5926 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5927 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5928 | fs_info->trans_block_rsv.space_info = space_info; |
| 5929 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5930 | fs_info->delayed_block_rsv.space_info = space_info; |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5931 | fs_info->delayed_refs_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5932 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5933 | fs_info->extent_root->block_rsv = &fs_info->delayed_refs_rsv; |
| 5934 | fs_info->csum_root->block_rsv = &fs_info->delayed_refs_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5935 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5936 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5937 | if (fs_info->quota_root) |
| 5938 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5939 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5940 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5941 | update_global_block_rsv(fs_info); |
| 5942 | } |
| 5943 | |
| 5944 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5945 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5946 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5947 | (u64)-1, NULL); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5948 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5949 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5950 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5951 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5952 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5953 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5954 | WARN_ON(fs_info->delayed_refs_rsv.reserved > 0); |
| 5955 | WARN_ON(fs_info->delayed_refs_rsv.size > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5956 | } |
| 5957 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 5958 | /* |
| 5959 | * btrfs_update_delayed_refs_rsv - adjust the size of the delayed refs rsv |
| 5960 | * @trans - the trans that may have generated delayed refs |
| 5961 | * |
| 5962 | * This is to be called anytime we may have adjusted trans->delayed_ref_updates, |
| 5963 | * it'll calculate the additional size and add it to the delayed_refs_rsv. |
| 5964 | */ |
| 5965 | void btrfs_update_delayed_refs_rsv(struct btrfs_trans_handle *trans) |
| 5966 | { |
| 5967 | struct btrfs_fs_info *fs_info = trans->fs_info; |
| 5968 | struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv; |
| 5969 | u64 num_bytes; |
| 5970 | |
| 5971 | if (!trans->delayed_ref_updates) |
| 5972 | return; |
| 5973 | |
| 5974 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, |
| 5975 | trans->delayed_ref_updates); |
| 5976 | spin_lock(&delayed_rsv->lock); |
| 5977 | delayed_rsv->size += num_bytes; |
| 5978 | delayed_rsv->full = 0; |
| 5979 | spin_unlock(&delayed_rsv->lock); |
| 5980 | trans->delayed_ref_updates = 0; |
| 5981 | } |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5982 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5983 | /* |
| 5984 | * To be called after all the new block groups attached to the transaction |
| 5985 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5986 | */ |
| 5987 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5988 | { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 5989 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5990 | |
| 5991 | if (!trans->chunk_bytes_reserved) |
| 5992 | return; |
| 5993 | |
| 5994 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5995 | |
| 5996 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 5997 | trans->chunk_bytes_reserved, NULL); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5998 | trans->chunk_bytes_reserved = 0; |
| 5999 | } |
| 6000 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6001 | /* |
| 6002 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 6003 | * root: the root of the parent directory |
| 6004 | * rsv: block reservation |
| 6005 | * items: the number of items that we need do reservation |
Lu Fengqi | a5b7f42 | 2018-08-09 09:46:04 +0800 | [diff] [blame] | 6006 | * use_global_rsv: allow fallback to the global block reservation |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6007 | * |
| 6008 | * This function is used to reserve the space for snapshot/subvolume |
| 6009 | * creation and deletion. Those operations are different with the |
| 6010 | * common file/directory operations, they change two fs/file trees |
| 6011 | * and root tree, the number of items that the qgroup reserves is |
| 6012 | * different with the free space reservation. So we can not use |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6013 | * the space reservation mechanism in start_transaction(). |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6014 | */ |
| 6015 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
Lu Fengqi | a5b7f42 | 2018-08-09 09:46:04 +0800 | [diff] [blame] | 6016 | struct btrfs_block_rsv *rsv, int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 6017 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 6018 | { |
Lu Fengqi | a5b7f42 | 2018-08-09 09:46:04 +0800 | [diff] [blame] | 6019 | u64 qgroup_num_bytes = 0; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6020 | u64 num_bytes; |
| 6021 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6022 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6023 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6024 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6025 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6026 | /* One for parent inode, two for dir entries */ |
Lu Fengqi | a5b7f42 | 2018-08-09 09:46:04 +0800 | [diff] [blame] | 6027 | qgroup_num_bytes = 3 * fs_info->nodesize; |
| 6028 | ret = btrfs_qgroup_reserve_meta_prealloc(root, |
| 6029 | qgroup_num_bytes, true); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6030 | if (ret) |
| 6031 | return ret; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6032 | } |
| 6033 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6034 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, items); |
| 6035 | rsv->space_info = __find_space_info(fs_info, |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6036 | BTRFS_BLOCK_GROUP_METADATA); |
| 6037 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 6038 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 6039 | |
| 6040 | if (ret == -ENOSPC && use_global_rsv) |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 6041 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, true); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 6042 | |
Lu Fengqi | a5b7f42 | 2018-08-09 09:46:04 +0800 | [diff] [blame] | 6043 | if (ret && qgroup_num_bytes) |
| 6044 | btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6045 | |
| 6046 | return ret; |
| 6047 | } |
| 6048 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6049 | void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info, |
David Sterba | 7775c81 | 2017-02-10 19:18:18 +0100 | [diff] [blame] | 6050 | struct btrfs_block_rsv *rsv) |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 6051 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6052 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 6053 | } |
| 6054 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6055 | static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info, |
| 6056 | struct btrfs_inode *inode) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6057 | { |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6058 | struct btrfs_block_rsv *block_rsv = &inode->block_rsv; |
| 6059 | u64 reserve_size = 0; |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 6060 | u64 qgroup_rsv_size = 0; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6061 | u64 csum_leaves; |
| 6062 | unsigned outstanding_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6063 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6064 | lockdep_assert_held(&inode->lock); |
| 6065 | outstanding_extents = inode->outstanding_extents; |
| 6066 | if (outstanding_extents) |
| 6067 | reserve_size = btrfs_calc_trans_metadata_size(fs_info, |
| 6068 | outstanding_extents + 1); |
| 6069 | csum_leaves = btrfs_csum_bytes_to_leaves(fs_info, |
| 6070 | inode->csum_bytes); |
| 6071 | reserve_size += btrfs_calc_trans_metadata_size(fs_info, |
| 6072 | csum_leaves); |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 6073 | /* |
| 6074 | * For qgroup rsv, the calculation is very simple: |
| 6075 | * account one nodesize for each outstanding extent |
| 6076 | * |
| 6077 | * This is overestimating in most cases. |
| 6078 | */ |
Nikolay Borisov | 139a561 | 2019-03-18 17:45:20 +0200 | [diff] [blame] | 6079 | qgroup_rsv_size = (u64)outstanding_extents * fs_info->nodesize; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6080 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6081 | spin_lock(&block_rsv->lock); |
| 6082 | block_rsv->size = reserve_size; |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 6083 | block_rsv->qgroup_rsv_size = qgroup_rsv_size; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6084 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6085 | } |
| 6086 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6087 | int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6088 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 6089 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6090 | unsigned nr_extents; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 6091 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 6092 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6093 | bool delalloc_lock = true; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6094 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6095 | /* If we are a free space inode we need to not flush since we will be in |
| 6096 | * the middle of a transaction commit. We also don't need the delalloc |
| 6097 | * mutex since we won't race with anybody. We need this mostly to make |
| 6098 | * lockdep shut its filthy mouth. |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 6099 | * |
| 6100 | * If we have a transaction open (can happen if we call truncate_block |
| 6101 | * from truncate), then we need FLUSH_LIMIT so we don't deadlock. |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6102 | */ |
| 6103 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 6104 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6105 | delalloc_lock = false; |
Nikolay Borisov | da07d4a | 2018-01-12 16:21:05 +0200 | [diff] [blame] | 6106 | } else { |
| 6107 | if (current->journal_info) |
| 6108 | flush = BTRFS_RESERVE_FLUSH_LIMIT; |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 6109 | |
Nikolay Borisov | da07d4a | 2018-01-12 16:21:05 +0200 | [diff] [blame] | 6110 | if (btrfs_transaction_in_commit(fs_info)) |
| 6111 | schedule_timeout(1); |
| 6112 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6113 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6114 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6115 | mutex_lock(&inode->delalloc_mutex); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6116 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6117 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6118 | |
| 6119 | /* Add our new extents and calculate the new rsv size. */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6120 | spin_lock(&inode->lock); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6121 | nr_extents = count_max_extents(num_bytes); |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6122 | btrfs_mod_outstanding_extents(inode, nr_extents); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6123 | inode->csum_bytes += num_bytes; |
| 6124 | btrfs_calculate_inode_block_rsv_size(fs_info, inode); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6125 | spin_unlock(&inode->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 6126 | |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6127 | ret = btrfs_inode_rsv_refill(inode, flush); |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6128 | if (unlikely(ret)) |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6129 | goto out_fail; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6130 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6131 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6132 | mutex_unlock(&inode->delalloc_mutex); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6133 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6134 | |
| 6135 | out_fail: |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6136 | spin_lock(&inode->lock); |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6137 | nr_extents = count_max_extents(num_bytes); |
| 6138 | btrfs_mod_outstanding_extents(inode, -nr_extents); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6139 | inode->csum_bytes -= num_bytes; |
| 6140 | btrfs_calculate_inode_block_rsv_size(fs_info, inode); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6141 | spin_unlock(&inode->lock); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6142 | |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6143 | btrfs_inode_rsv_release(inode, true); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6144 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6145 | mutex_unlock(&inode->delalloc_mutex); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6146 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6147 | } |
| 6148 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6149 | /** |
| 6150 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6151 | * @inode: the inode to release the reservation for. |
| 6152 | * @num_bytes: the number of bytes we are releasing. |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6153 | * @qgroup_free: free qgroup reservation or convert it to per-trans reservation |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6154 | * |
| 6155 | * This will release the metadata reservation for an inode. This can be called |
| 6156 | * once we complete IO for a given set of bytes to release their metadata |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6157 | * reservations, or on error for the same reason. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6158 | */ |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6159 | void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes, |
| 6160 | bool qgroup_free) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6161 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 6162 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6163 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6164 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6165 | spin_lock(&inode->lock); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6166 | inode->csum_bytes -= num_bytes; |
| 6167 | btrfs_calculate_inode_block_rsv_size(fs_info, inode); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6168 | spin_unlock(&inode->lock); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6169 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6170 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 6171 | return; |
| 6172 | |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6173 | btrfs_inode_rsv_release(inode, qgroup_free); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6174 | } |
| 6175 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6176 | /** |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6177 | * btrfs_delalloc_release_extents - release our outstanding_extents |
| 6178 | * @inode: the inode to balance the reservation for. |
| 6179 | * @num_bytes: the number of bytes we originally reserved with |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6180 | * @qgroup_free: do we need to free qgroup meta reservation or convert them. |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6181 | * |
| 6182 | * When we reserve space we increase outstanding_extents for the extents we may |
| 6183 | * add. Once we've set the range as delalloc or created our ordered extents we |
| 6184 | * have outstanding_extents to track the real usage, so we use this to free our |
| 6185 | * temporarily tracked outstanding_extents. This _must_ be used in conjunction |
| 6186 | * with btrfs_delalloc_reserve_metadata. |
| 6187 | */ |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6188 | void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes, |
| 6189 | bool qgroup_free) |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6190 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 6191 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6192 | unsigned num_extents; |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6193 | |
| 6194 | spin_lock(&inode->lock); |
| 6195 | num_extents = count_max_extents(num_bytes); |
| 6196 | btrfs_mod_outstanding_extents(inode, -num_extents); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 6197 | btrfs_calculate_inode_block_rsv_size(fs_info, inode); |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6198 | spin_unlock(&inode->lock); |
| 6199 | |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6200 | if (btrfs_is_testing(fs_info)) |
| 6201 | return; |
| 6202 | |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6203 | btrfs_inode_rsv_release(inode, qgroup_free); |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6204 | } |
| 6205 | |
| 6206 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6207 | * btrfs_delalloc_reserve_space - reserve data and metadata space for |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6208 | * delalloc |
| 6209 | * @inode: inode we're writing to |
| 6210 | * @start: start range we are writing to |
| 6211 | * @len: how long the range we are writing to |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 6212 | * @reserved: mandatory parameter, record actually reserved qgroup ranges of |
| 6213 | * current reservation. |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6214 | * |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6215 | * This will do the following things |
| 6216 | * |
| 6217 | * o reserve space in data space info for num bytes |
| 6218 | * and reserve precious corresponding qgroup space |
| 6219 | * (Done in check_data_free_space) |
| 6220 | * |
| 6221 | * o reserve space for metadata space, based on the number of outstanding |
| 6222 | * extents and how much csums will be needed |
| 6223 | * also reserve metadata space in a per root over-reserve method. |
| 6224 | * o add to the inodes->delalloc_bytes |
| 6225 | * o add it to the fs_info's delalloc inodes list. |
| 6226 | * (Above 3 all done in delalloc_reserve_metadata) |
| 6227 | * |
| 6228 | * Return 0 for success |
| 6229 | * Return <0 for error(-ENOSPC or -EQUOT) |
| 6230 | */ |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 6231 | int btrfs_delalloc_reserve_space(struct inode *inode, |
| 6232 | struct extent_changeset **reserved, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6233 | { |
| 6234 | int ret; |
| 6235 | |
Qu Wenruo | 364ecf3 | 2017-02-27 15:10:38 +0800 | [diff] [blame] | 6236 | ret = btrfs_check_data_free_space(inode, reserved, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6237 | if (ret < 0) |
| 6238 | return ret; |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6239 | ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6240 | if (ret < 0) |
Qu Wenruo | bc42bda | 2017-02-27 15:10:39 +0800 | [diff] [blame] | 6241 | btrfs_free_reserved_data_space(inode, *reserved, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6242 | return ret; |
| 6243 | } |
| 6244 | |
| 6245 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6246 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6247 | * @inode: inode we're releasing space for |
| 6248 | * @start: start position of the space already reserved |
| 6249 | * @len: the len of the space already reserved |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6250 | * @release_bytes: the len of the space we consumed or didn't use |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6251 | * |
| 6252 | * This function will release the metadata space that was not used and will |
| 6253 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 6254 | * list if there are no delalloc bytes left. |
| 6255 | * Also it will handle the qgroup reserved space. |
| 6256 | */ |
Qu Wenruo | bc42bda | 2017-02-27 15:10:39 +0800 | [diff] [blame] | 6257 | void btrfs_delalloc_release_space(struct inode *inode, |
Josef Bacik | 8b62f87 | 2017-10-19 14:15:55 -0400 | [diff] [blame] | 6258 | struct extent_changeset *reserved, |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6259 | u64 start, u64 len, bool qgroup_free) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6260 | { |
Qu Wenruo | 43b1859 | 2017-12-12 15:34:32 +0800 | [diff] [blame] | 6261 | btrfs_delalloc_release_metadata(BTRFS_I(inode), len, qgroup_free); |
Qu Wenruo | bc42bda | 2017-02-27 15:10:39 +0800 | [diff] [blame] | 6262 | btrfs_free_reserved_data_space(inode, reserved, start, len); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6263 | } |
| 6264 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6265 | static int update_block_group(struct btrfs_trans_handle *trans, |
David Sterba | 6b27940 | 2019-03-20 12:10:15 +0100 | [diff] [blame] | 6266 | u64 bytenr, u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6267 | { |
David Sterba | 6b27940 | 2019-03-20 12:10:15 +0100 | [diff] [blame] | 6268 | struct btrfs_fs_info *info = trans->fs_info; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6269 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6270 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6271 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6272 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6273 | int factor; |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 6274 | int ret = 0; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 6275 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6276 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6277 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6278 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6279 | if (alloc) |
| 6280 | old_val += num_bytes; |
| 6281 | else |
| 6282 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6283 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6284 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6285 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6286 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6287 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 6288 | if (!cache) { |
| 6289 | ret = -ENOENT; |
| 6290 | break; |
| 6291 | } |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 6292 | factor = btrfs_bg_type_to_factor(cache->flags); |
| 6293 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 6294 | /* |
| 6295 | * If this block group has free space cache written out, we |
| 6296 | * need to make sure to load it if we are removing space. This |
| 6297 | * is because we need the unpinning stage to actually add the |
| 6298 | * space back to the block group, otherwise we will leak space. |
| 6299 | */ |
| 6300 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6301 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6302 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6303 | byte_in_group = bytenr - cache->key.objectid; |
| 6304 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6305 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6306 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6307 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6308 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 6309 | if (btrfs_test_opt(info, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6310 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 6311 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 6312 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6313 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6314 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6315 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6316 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6317 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6318 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6319 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6320 | cache->space_info->bytes_used += num_bytes; |
| 6321 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6322 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6323 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6324 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6325 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6326 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6327 | cache->pinned += num_bytes; |
Lu Fengqi | e2907c1 | 2018-10-24 20:24:02 +0800 | [diff] [blame] | 6328 | update_bytes_pinned(cache->space_info, num_bytes); |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6329 | cache->space_info->bytes_used -= num_bytes; |
| 6330 | cache->space_info->disk_used -= num_bytes * factor; |
| 6331 | spin_unlock(&cache->lock); |
| 6332 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 6333 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6334 | trace_btrfs_space_reservation(info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6335 | cache->space_info->flags, |
| 6336 | num_bytes, 1); |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 6337 | percpu_counter_add_batch(&cache->space_info->total_bytes_pinned, |
| 6338 | num_bytes, |
| 6339 | BTRFS_TOTAL_BYTES_PINNED_BATCH); |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6340 | set_extent_dirty(info->pinned_extents, |
| 6341 | bytenr, bytenr + num_bytes - 1, |
| 6342 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6343 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 6344 | |
| 6345 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 6346 | if (list_empty(&cache->dirty_list)) { |
| 6347 | list_add_tail(&cache->dirty_list, |
| 6348 | &trans->transaction->dirty_bgs); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 6349 | trans->delayed_ref_updates++; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 6350 | btrfs_get_block_group(cache); |
| 6351 | } |
| 6352 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 6353 | |
Filipe Manana | 036a934 | 2015-11-23 15:25:16 +0000 | [diff] [blame] | 6354 | /* |
| 6355 | * No longer have used bytes in this block group, queue it for |
| 6356 | * deletion. We do this after adding the block group to the |
| 6357 | * dirty list to avoid races between cleaner kthread and space |
| 6358 | * cache writeout. |
| 6359 | */ |
Qu Wenruo | 031f24d | 2018-05-22 16:43:47 +0800 | [diff] [blame] | 6360 | if (!alloc && old_val == 0) |
| 6361 | btrfs_mark_bg_unused(cache); |
Filipe Manana | 036a934 | 2015-11-23 15:25:16 +0000 | [diff] [blame] | 6362 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6363 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6364 | total -= num_bytes; |
| 6365 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6366 | } |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 6367 | |
| 6368 | /* Modified block groups are accounted for in the delayed_refs_rsv. */ |
| 6369 | btrfs_update_delayed_refs_rsv(trans); |
| 6370 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6371 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6372 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6373 | static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6374 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6375 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6376 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6377 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6378 | spin_lock(&fs_info->block_group_cache_lock); |
| 6379 | bytenr = fs_info->first_logical_byte; |
| 6380 | spin_unlock(&fs_info->block_group_cache_lock); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 6381 | |
| 6382 | if (bytenr < (u64)-1) |
| 6383 | return bytenr; |
| 6384 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6385 | cache = btrfs_lookup_first_block_group(fs_info, search_start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6386 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6387 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6388 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6389 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6390 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6391 | |
| 6392 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6393 | } |
| 6394 | |
David Sterba | fdf0860 | 2019-03-20 12:12:32 +0100 | [diff] [blame] | 6395 | static int pin_down_extent(struct btrfs_block_group_cache *cache, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6396 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6397 | { |
David Sterba | fdf0860 | 2019-03-20 12:12:32 +0100 | [diff] [blame] | 6398 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 6399 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6400 | spin_lock(&cache->space_info->lock); |
| 6401 | spin_lock(&cache->lock); |
| 6402 | cache->pinned += num_bytes; |
Lu Fengqi | e2907c1 | 2018-10-24 20:24:02 +0800 | [diff] [blame] | 6403 | update_bytes_pinned(cache->space_info, num_bytes); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6404 | if (reserved) { |
| 6405 | cache->reserved -= num_bytes; |
| 6406 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6407 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6408 | spin_unlock(&cache->lock); |
| 6409 | spin_unlock(&cache->space_info->lock); |
| 6410 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6411 | trace_btrfs_space_reservation(fs_info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6412 | cache->space_info->flags, num_bytes, 1); |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 6413 | percpu_counter_add_batch(&cache->space_info->total_bytes_pinned, |
| 6414 | num_bytes, BTRFS_TOTAL_BYTES_PINNED_BATCH); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6415 | set_extent_dirty(fs_info->pinned_extents, bytenr, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6416 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6417 | return 0; |
| 6418 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6419 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6420 | /* |
| 6421 | * this function must be called within transaction |
| 6422 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6423 | int btrfs_pin_extent(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6424 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6425 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6426 | struct btrfs_block_group_cache *cache; |
| 6427 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6428 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6429 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6430 | |
David Sterba | fdf0860 | 2019-03-20 12:12:32 +0100 | [diff] [blame] | 6431 | pin_down_extent(cache, bytenr, num_bytes, reserved); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6432 | |
| 6433 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6434 | return 0; |
| 6435 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6436 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6437 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6438 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6439 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6440 | int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6441 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6442 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6443 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6444 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6445 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6446 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6447 | if (!cache) |
| 6448 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6449 | |
| 6450 | /* |
| 6451 | * pull in the free space cache (if any) so that our pin |
| 6452 | * removes the free space from the cache. We have load_only set |
| 6453 | * to one because the slow code to read in the free extents does check |
| 6454 | * the pinned extents. |
| 6455 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6456 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6457 | |
David Sterba | fdf0860 | 2019-03-20 12:12:32 +0100 | [diff] [blame] | 6458 | pin_down_extent(cache, bytenr, num_bytes, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6459 | |
| 6460 | /* 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] | 6461 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6462 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6463 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6464 | } |
| 6465 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6466 | static int __exclude_logged_extent(struct btrfs_fs_info *fs_info, |
| 6467 | u64 start, u64 num_bytes) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6468 | { |
| 6469 | int ret; |
| 6470 | struct btrfs_block_group_cache *block_group; |
| 6471 | struct btrfs_caching_control *caching_ctl; |
| 6472 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6473 | block_group = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6474 | if (!block_group) |
| 6475 | return -EINVAL; |
| 6476 | |
| 6477 | cache_block_group(block_group, 0); |
| 6478 | caching_ctl = get_caching_control(block_group); |
| 6479 | |
| 6480 | if (!caching_ctl) { |
| 6481 | /* Logic error */ |
| 6482 | BUG_ON(!block_group_cache_done(block_group)); |
| 6483 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 6484 | } else { |
| 6485 | mutex_lock(&caching_ctl->mutex); |
| 6486 | |
| 6487 | if (start >= caching_ctl->progress) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6488 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6489 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 6490 | ret = btrfs_remove_free_space(block_group, |
| 6491 | start, num_bytes); |
| 6492 | } else { |
| 6493 | num_bytes = caching_ctl->progress - start; |
| 6494 | ret = btrfs_remove_free_space(block_group, |
| 6495 | start, num_bytes); |
| 6496 | if (ret) |
| 6497 | goto out_lock; |
| 6498 | |
| 6499 | num_bytes = (start + num_bytes) - |
| 6500 | caching_ctl->progress; |
| 6501 | start = caching_ctl->progress; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6502 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6503 | } |
| 6504 | out_lock: |
| 6505 | mutex_unlock(&caching_ctl->mutex); |
| 6506 | put_caching_control(caching_ctl); |
| 6507 | } |
| 6508 | btrfs_put_block_group(block_group); |
| 6509 | return ret; |
| 6510 | } |
| 6511 | |
David Sterba | bcdc428 | 2019-03-20 12:14:33 +0100 | [diff] [blame] | 6512 | int btrfs_exclude_logged_extents(struct extent_buffer *eb) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6513 | { |
David Sterba | bcdc428 | 2019-03-20 12:14:33 +0100 | [diff] [blame] | 6514 | struct btrfs_fs_info *fs_info = eb->fs_info; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6515 | struct btrfs_file_extent_item *item; |
| 6516 | struct btrfs_key key; |
| 6517 | int found_type; |
| 6518 | int i; |
Gu Jinxiang | b89311e | 2018-05-22 17:46:51 +0800 | [diff] [blame] | 6519 | int ret = 0; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6520 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6521 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6522 | return 0; |
| 6523 | |
| 6524 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 6525 | btrfs_item_key_to_cpu(eb, &key, i); |
| 6526 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 6527 | continue; |
| 6528 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 6529 | found_type = btrfs_file_extent_type(eb, item); |
| 6530 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 6531 | continue; |
| 6532 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 6533 | continue; |
| 6534 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 6535 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
Gu Jinxiang | b89311e | 2018-05-22 17:46:51 +0800 | [diff] [blame] | 6536 | ret = __exclude_logged_extent(fs_info, key.objectid, key.offset); |
| 6537 | if (ret) |
| 6538 | break; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6539 | } |
| 6540 | |
Gu Jinxiang | b89311e | 2018-05-22 17:46:51 +0800 | [diff] [blame] | 6541 | return ret; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6542 | } |
| 6543 | |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6544 | static void |
| 6545 | btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6546 | { |
| 6547 | atomic_inc(&bg->reservations); |
| 6548 | } |
| 6549 | |
| 6550 | void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info, |
| 6551 | const u64 start) |
| 6552 | { |
| 6553 | struct btrfs_block_group_cache *bg; |
| 6554 | |
| 6555 | bg = btrfs_lookup_block_group(fs_info, start); |
| 6556 | ASSERT(bg); |
| 6557 | if (atomic_dec_and_test(&bg->reservations)) |
Peter Zijlstra | 4625956 | 2018-03-15 11:43:08 +0100 | [diff] [blame] | 6558 | wake_up_var(&bg->reservations); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6559 | btrfs_put_block_group(bg); |
| 6560 | } |
| 6561 | |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6562 | void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6563 | { |
| 6564 | struct btrfs_space_info *space_info = bg->space_info; |
| 6565 | |
| 6566 | ASSERT(bg->ro); |
| 6567 | |
| 6568 | if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA)) |
| 6569 | return; |
| 6570 | |
| 6571 | /* |
| 6572 | * Our block group is read only but before we set it to read only, |
| 6573 | * some task might have had allocated an extent from it already, but it |
| 6574 | * has not yet created a respective ordered extent (and added it to a |
| 6575 | * root's list of ordered extents). |
| 6576 | * Therefore wait for any task currently allocating extents, since the |
| 6577 | * block group's reservations counter is incremented while a read lock |
| 6578 | * on the groups' semaphore is held and decremented after releasing |
| 6579 | * the read access on that semaphore and creating the ordered extent. |
| 6580 | */ |
| 6581 | down_write(&space_info->groups_sem); |
| 6582 | up_write(&space_info->groups_sem); |
| 6583 | |
Peter Zijlstra | 4625956 | 2018-03-15 11:43:08 +0100 | [diff] [blame] | 6584 | wait_var_event(&bg->reservations, !atomic_read(&bg->reservations)); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6585 | } |
| 6586 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6587 | /** |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6588 | * btrfs_add_reserved_bytes - update the block_group and space info counters |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6589 | * @cache: The cache we are manipulating |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6590 | * @ram_bytes: The number of bytes of file content, and will be same to |
| 6591 | * @num_bytes except for the compress path. |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6592 | * @num_bytes: The number of bytes in question |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6593 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6594 | * |
Xiaoguang Wang | 745699e | 2016-09-23 12:38:50 +0800 | [diff] [blame] | 6595 | * This is called by the allocator when it reserves space. If this is a |
| 6596 | * reservation and the block group has become read only we cannot make the |
| 6597 | * reservation and return -EAGAIN, otherwise this function always succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6598 | */ |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6599 | static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6600 | u64 ram_bytes, u64 num_bytes, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6601 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6602 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6603 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6604 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6605 | spin_lock(&space_info->lock); |
| 6606 | spin_lock(&cache->lock); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6607 | if (cache->ro) { |
| 6608 | ret = -EAGAIN; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6609 | } else { |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6610 | cache->reserved += num_bytes; |
| 6611 | space_info->bytes_reserved += num_bytes; |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 6612 | update_bytes_may_use(space_info, -ram_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6613 | if (delalloc) |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6614 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6615 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6616 | spin_unlock(&cache->lock); |
| 6617 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6618 | return ret; |
| 6619 | } |
| 6620 | |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6621 | /** |
| 6622 | * btrfs_free_reserved_bytes - update the block_group and space info counters |
| 6623 | * @cache: The cache we are manipulating |
| 6624 | * @num_bytes: The number of bytes in question |
| 6625 | * @delalloc: The blocks are allocated for the delalloc write |
| 6626 | * |
| 6627 | * This is called by somebody who is freeing space that was never actually used |
| 6628 | * on disk. For example if you reserve some space for a new leaf in transaction |
| 6629 | * A and before transaction A commits you free that leaf, you call this with |
| 6630 | * reserve set to 0 in order to clear the reservation. |
| 6631 | */ |
| 6632 | |
zhong jiang | 556f3ca | 2018-08-17 00:37:14 +0800 | [diff] [blame] | 6633 | static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 6634 | u64 num_bytes, int delalloc) |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6635 | { |
| 6636 | struct btrfs_space_info *space_info = cache->space_info; |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6637 | |
| 6638 | spin_lock(&space_info->lock); |
| 6639 | spin_lock(&cache->lock); |
| 6640 | if (cache->ro) |
| 6641 | space_info->bytes_readonly += num_bytes; |
| 6642 | cache->reserved -= num_bytes; |
| 6643 | space_info->bytes_reserved -= num_bytes; |
Josef Bacik | 21a94f7 | 2018-10-11 15:54:03 -0400 | [diff] [blame] | 6644 | space_info->max_extent_size = 0; |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6645 | |
| 6646 | if (delalloc) |
| 6647 | cache->delalloc_bytes -= num_bytes; |
| 6648 | spin_unlock(&cache->lock); |
| 6649 | spin_unlock(&space_info->lock); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6650 | } |
David Sterba | 8b74c03 | 2017-02-10 19:20:56 +0100 | [diff] [blame] | 6651 | void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6652 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6653 | struct btrfs_caching_control *next; |
| 6654 | struct btrfs_caching_control *caching_ctl; |
| 6655 | struct btrfs_block_group_cache *cache; |
| 6656 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6657 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6658 | |
| 6659 | list_for_each_entry_safe(caching_ctl, next, |
| 6660 | &fs_info->caching_block_groups, list) { |
| 6661 | cache = caching_ctl->block_group; |
| 6662 | if (block_group_cache_done(cache)) { |
| 6663 | cache->last_byte_to_unpin = (u64)-1; |
| 6664 | list_del_init(&caching_ctl->list); |
| 6665 | put_caching_control(caching_ctl); |
| 6666 | } else { |
| 6667 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6668 | } |
| 6669 | } |
| 6670 | |
| 6671 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6672 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6673 | else |
| 6674 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6675 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6676 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6677 | |
| 6678 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6679 | } |
| 6680 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6681 | /* |
| 6682 | * Returns the free cluster for the given space info and sets empty_cluster to |
| 6683 | * what it should be based on the mount options. |
| 6684 | */ |
| 6685 | static struct btrfs_free_cluster * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6686 | fetch_cluster_info(struct btrfs_fs_info *fs_info, |
| 6687 | struct btrfs_space_info *space_info, u64 *empty_cluster) |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6688 | { |
| 6689 | struct btrfs_free_cluster *ret = NULL; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6690 | |
| 6691 | *empty_cluster = 0; |
| 6692 | if (btrfs_mixed_space_info(space_info)) |
| 6693 | return ret; |
| 6694 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6695 | if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6696 | ret = &fs_info->meta_alloc_cluster; |
Hans van Kranenburg | 583b723 | 2017-07-28 08:31:28 +0200 | [diff] [blame] | 6697 | if (btrfs_test_opt(fs_info, SSD)) |
| 6698 | *empty_cluster = SZ_2M; |
| 6699 | else |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6700 | *empty_cluster = SZ_64K; |
Hans van Kranenburg | 583b723 | 2017-07-28 08:31:28 +0200 | [diff] [blame] | 6701 | } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && |
| 6702 | btrfs_test_opt(fs_info, SSD_SPREAD)) { |
| 6703 | *empty_cluster = SZ_2M; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6704 | ret = &fs_info->data_alloc_cluster; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6705 | } |
| 6706 | |
| 6707 | return ret; |
| 6708 | } |
| 6709 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6710 | static int unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 6711 | u64 start, u64 end, |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6712 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6713 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6714 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6715 | struct btrfs_space_info *space_info; |
| 6716 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6717 | struct btrfs_free_cluster *cluster = NULL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6718 | u64 len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6719 | u64 total_unpinned = 0; |
| 6720 | u64 empty_cluster = 0; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6721 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6722 | |
| 6723 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6724 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6725 | if (!cache || |
| 6726 | start >= cache->key.objectid + cache->key.offset) { |
| 6727 | if (cache) |
| 6728 | btrfs_put_block_group(cache); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6729 | total_unpinned = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6730 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6731 | BUG_ON(!cache); /* Logic error */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6732 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6733 | cluster = fetch_cluster_info(fs_info, |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6734 | cache->space_info, |
| 6735 | &empty_cluster); |
| 6736 | empty_cluster <<= 1; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6737 | } |
| 6738 | |
| 6739 | len = cache->key.objectid + cache->key.offset - start; |
| 6740 | len = min(len, end + 1 - start); |
| 6741 | |
| 6742 | if (start < cache->last_byte_to_unpin) { |
| 6743 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6744 | if (return_free_space) |
| 6745 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6746 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6747 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6748 | start += len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6749 | total_unpinned += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6750 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6751 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6752 | /* |
| 6753 | * If this space cluster has been marked as fragmented and we've |
| 6754 | * unpinned enough in this block group to potentially allow a |
| 6755 | * cluster to be created inside of it go ahead and clear the |
| 6756 | * fragmented check. |
| 6757 | */ |
| 6758 | if (cluster && cluster->fragmented && |
| 6759 | total_unpinned > empty_cluster) { |
| 6760 | spin_lock(&cluster->lock); |
| 6761 | cluster->fragmented = 0; |
| 6762 | spin_unlock(&cluster->lock); |
| 6763 | } |
| 6764 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6765 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6766 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6767 | cache->pinned -= len; |
Lu Fengqi | e2907c1 | 2018-10-24 20:24:02 +0800 | [diff] [blame] | 6768 | update_bytes_pinned(space_info, -len); |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6769 | |
| 6770 | trace_btrfs_space_reservation(fs_info, "pinned", |
| 6771 | space_info->flags, len, 0); |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 6772 | space_info->max_extent_size = 0; |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 6773 | percpu_counter_add_batch(&space_info->total_bytes_pinned, |
| 6774 | -len, BTRFS_TOTAL_BYTES_PINNED_BATCH); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6775 | if (cache->ro) { |
| 6776 | space_info->bytes_readonly += len; |
| 6777 | readonly = true; |
| 6778 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6779 | spin_unlock(&cache->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6780 | if (!readonly && return_free_space && |
| 6781 | global_rsv->space_info == space_info) { |
| 6782 | u64 to_add = len; |
Nikolay Borisov | 92ac58e | 2017-08-17 10:52:28 +0300 | [diff] [blame] | 6783 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6784 | spin_lock(&global_rsv->lock); |
| 6785 | if (!global_rsv->full) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6786 | to_add = min(len, global_rsv->size - |
| 6787 | global_rsv->reserved); |
| 6788 | global_rsv->reserved += to_add; |
Qu Wenruo | 9f9b8e8 | 2018-10-24 20:24:01 +0800 | [diff] [blame] | 6789 | update_bytes_may_use(space_info, to_add); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6790 | if (global_rsv->reserved >= global_rsv->size) |
| 6791 | global_rsv->full = 1; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6792 | trace_btrfs_space_reservation(fs_info, |
| 6793 | "space_info", |
| 6794 | space_info->flags, |
| 6795 | to_add, 1); |
| 6796 | len -= to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6797 | } |
| 6798 | spin_unlock(&global_rsv->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6799 | /* Add to any tickets we may have */ |
| 6800 | if (len) |
| 6801 | space_info_add_new_bytes(fs_info, space_info, |
| 6802 | len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6803 | } |
| 6804 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6805 | } |
| 6806 | |
| 6807 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6808 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6809 | return 0; |
| 6810 | } |
| 6811 | |
Nikolay Borisov | 5ead2dd | 2018-03-15 16:00:26 +0200 | [diff] [blame] | 6812 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6813 | { |
Nikolay Borisov | 5ead2dd | 2018-03-15 16:00:26 +0200 | [diff] [blame] | 6814 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6815 | struct btrfs_block_group_cache *block_group, *tmp; |
| 6816 | struct list_head *deleted_bgs; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6817 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6818 | u64 start; |
| 6819 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6820 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6821 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6822 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6823 | unpin = &fs_info->freed_extents[1]; |
| 6824 | else |
| 6825 | unpin = &fs_info->freed_extents[0]; |
| 6826 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6827 | while (!trans->aborted) { |
Filipe Manana | 0e6ec38 | 2018-11-16 13:04:44 +0000 | [diff] [blame] | 6828 | struct extent_state *cached_state = NULL; |
| 6829 | |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6830 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6831 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Filipe Manana | 0e6ec38 | 2018-11-16 13:04:44 +0000 | [diff] [blame] | 6832 | EXTENT_DIRTY, &cached_state); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6833 | if (ret) { |
| 6834 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6835 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6836 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6837 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6838 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6839 | ret = btrfs_discard_extent(fs_info, start, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6840 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6841 | |
Filipe Manana | 0e6ec38 | 2018-11-16 13:04:44 +0000 | [diff] [blame] | 6842 | clear_extent_dirty(unpin, start, end, &cached_state); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6843 | unpin_extent_range(fs_info, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6844 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 0e6ec38 | 2018-11-16 13:04:44 +0000 | [diff] [blame] | 6845 | free_extent_state(cached_state); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6846 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6847 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6848 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6849 | /* |
| 6850 | * Transaction is finished. We don't need the lock anymore. We |
| 6851 | * do need to clean up the block groups in case of a transaction |
| 6852 | * abort. |
| 6853 | */ |
| 6854 | deleted_bgs = &trans->transaction->deleted_bgs; |
| 6855 | list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) { |
| 6856 | u64 trimmed = 0; |
| 6857 | |
| 6858 | ret = -EROFS; |
| 6859 | if (!trans->aborted) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6860 | ret = btrfs_discard_extent(fs_info, |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6861 | block_group->key.objectid, |
| 6862 | block_group->key.offset, |
| 6863 | &trimmed); |
| 6864 | |
| 6865 | list_del_init(&block_group->bg_list); |
| 6866 | btrfs_put_block_group_trimming(block_group); |
| 6867 | btrfs_put_block_group(block_group); |
| 6868 | |
| 6869 | if (ret) { |
| 6870 | const char *errstr = btrfs_decode_error(ret); |
| 6871 | btrfs_warn(fs_info, |
David Sterba | 913e153 | 2017-07-13 15:32:18 +0200 | [diff] [blame] | 6872 | "discard failed while removing blockgroup: errno=%d %s", |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6873 | ret, errstr); |
| 6874 | } |
| 6875 | } |
| 6876 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6877 | return 0; |
| 6878 | } |
| 6879 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6880 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | e72cb92 | 2018-06-20 15:48:57 +0300 | [diff] [blame] | 6881 | struct btrfs_delayed_ref_node *node, u64 parent, |
| 6882 | u64 root_objectid, u64 owner_objectid, |
| 6883 | u64 owner_offset, int refs_to_drop, |
| 6884 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6885 | { |
Nikolay Borisov | e72cb92 | 2018-06-20 15:48:57 +0300 | [diff] [blame] | 6886 | struct btrfs_fs_info *info = trans->fs_info; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6887 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6888 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6889 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6890 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6891 | struct btrfs_extent_item *ei; |
| 6892 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6893 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6894 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6895 | int extent_slot = 0; |
| 6896 | int found_extent = 0; |
| 6897 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6898 | u32 item_size; |
| 6899 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6900 | u64 bytenr = node->bytenr; |
| 6901 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6902 | int last_ref = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6903 | bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6904 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6905 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6906 | if (!path) |
| 6907 | return -ENOMEM; |
| 6908 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 6909 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6910 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6911 | |
| 6912 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6913 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6914 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6915 | if (is_data) |
Thomas Meyer | 897ca81 | 2017-10-07 16:02:21 +0200 | [diff] [blame] | 6916 | skinny_metadata = false; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6917 | |
Nikolay Borisov | fbe4801 | 2018-06-20 15:48:52 +0300 | [diff] [blame] | 6918 | ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes, |
| 6919 | parent, root_objectid, owner_objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6920 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6921 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6922 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6923 | while (extent_slot >= 0) { |
| 6924 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6925 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6926 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6927 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6928 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6929 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6930 | found_extent = 1; |
| 6931 | break; |
| 6932 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6933 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6934 | key.offset == owner_objectid) { |
| 6935 | found_extent = 1; |
| 6936 | break; |
| 6937 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6938 | if (path->slots[0] - extent_slot > 5) |
| 6939 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6940 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6941 | } |
Nikolay Borisov | a79865c | 2018-06-21 09:45:00 +0300 | [diff] [blame] | 6942 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6943 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6944 | BUG_ON(iref); |
Nikolay Borisov | 87cc7a8 | 2018-06-20 15:49:12 +0300 | [diff] [blame] | 6945 | ret = remove_extent_backref(trans, path, NULL, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6946 | refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6947 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6948 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6949 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6950 | goto out; |
| 6951 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6952 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6953 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6954 | |
| 6955 | key.objectid = bytenr; |
| 6956 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6957 | key.offset = num_bytes; |
| 6958 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6959 | if (!is_data && skinny_metadata) { |
| 6960 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6961 | key.offset = owner_objectid; |
| 6962 | } |
| 6963 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6964 | ret = btrfs_search_slot(trans, extent_root, |
| 6965 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6966 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6967 | /* |
| 6968 | * Couldn't find our skinny metadata item, |
| 6969 | * see if we have ye olde extent item. |
| 6970 | */ |
| 6971 | path->slots[0]--; |
| 6972 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6973 | path->slots[0]); |
| 6974 | if (key.objectid == bytenr && |
| 6975 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6976 | key.offset == num_bytes) |
| 6977 | ret = 0; |
| 6978 | } |
| 6979 | |
| 6980 | if (ret > 0 && skinny_metadata) { |
| 6981 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6982 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6983 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6984 | key.offset = num_bytes; |
| 6985 | btrfs_release_path(path); |
| 6986 | ret = btrfs_search_slot(trans, extent_root, |
| 6987 | &key, path, -1, 1); |
| 6988 | } |
| 6989 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6990 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6991 | btrfs_err(info, |
| 6992 | "umm, got %d back from search, was looking for %llu", |
| 6993 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6994 | if (ret > 0) |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 6995 | btrfs_print_leaf(path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6996 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6997 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6998 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6999 | goto out; |
| 7000 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 7001 | extent_slot = path->slots[0]; |
| 7002 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 7003 | } else if (WARN_ON(ret == -ENOENT)) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 7004 | btrfs_print_leaf(path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 7005 | btrfs_err(info, |
| 7006 | "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] | 7007 | bytenr, parent, root_objectid, owner_objectid, |
| 7008 | owner_offset); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7009 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 7010 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7011 | } else { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7012 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7013 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 7014 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7015 | |
| 7016 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7017 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
David Sterba | 6d8ff4e | 2018-06-26 16:20:59 +0200 | [diff] [blame] | 7018 | if (unlikely(item_size < sizeof(*ei))) { |
Nikolay Borisov | ba3c2b1 | 2018-06-26 16:57:36 +0300 | [diff] [blame] | 7019 | ret = -EINVAL; |
| 7020 | btrfs_print_v0_err(info); |
| 7021 | btrfs_abort_transaction(trans, ret); |
| 7022 | goto out; |
| 7023 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7024 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 7025 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7026 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 7027 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7028 | struct btrfs_tree_block_info *bi; |
| 7029 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 7030 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 7031 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7032 | } |
| 7033 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7034 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7035 | if (refs < refs_to_drop) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7036 | btrfs_err(info, |
| 7037 | "trying to drop %d refs but we only have %Lu for bytenr %Lu", |
| 7038 | refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7039 | ret = -EINVAL; |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7040 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7041 | goto out; |
| 7042 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7043 | refs -= refs_to_drop; |
| 7044 | |
| 7045 | if (refs > 0) { |
| 7046 | if (extent_op) |
| 7047 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 7048 | /* |
| 7049 | * In the case of inline back ref, reference count will |
| 7050 | * be updated by remove_extent_backref |
| 7051 | */ |
| 7052 | if (iref) { |
| 7053 | BUG_ON(!found_extent); |
| 7054 | } else { |
| 7055 | btrfs_set_extent_refs(leaf, ei, refs); |
| 7056 | btrfs_mark_buffer_dirty(leaf); |
| 7057 | } |
| 7058 | if (found_extent) { |
Nikolay Borisov | 87cc7a8 | 2018-06-20 15:49:12 +0300 | [diff] [blame] | 7059 | ret = remove_extent_backref(trans, path, iref, |
| 7060 | refs_to_drop, is_data, |
| 7061 | &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7062 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7063 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7064 | goto out; |
| 7065 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7066 | } |
| 7067 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7068 | if (found_extent) { |
| 7069 | BUG_ON(is_data && refs_to_drop != |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 7070 | extent_data_ref_count(path, iref)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7071 | if (iref) { |
| 7072 | BUG_ON(path->slots[0] != extent_slot); |
| 7073 | } else { |
| 7074 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 7075 | path->slots[0] = extent_slot; |
| 7076 | num_to_del = 2; |
| 7077 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 7078 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7079 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7080 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7081 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 7082 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7083 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7084 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7085 | goto out; |
| 7086 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7087 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 7088 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7089 | if (is_data) { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7090 | ret = btrfs_del_csums(trans, info, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7091 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7092 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7093 | goto out; |
| 7094 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 7095 | } |
| 7096 | |
Nikolay Borisov | e7355e5 | 2018-05-10 15:44:55 +0300 | [diff] [blame] | 7097 | ret = add_to_free_space_tree(trans, bytenr, num_bytes); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7098 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7099 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7100 | goto out; |
| 7101 | } |
| 7102 | |
David Sterba | 6b27940 | 2019-03-20 12:10:15 +0100 | [diff] [blame] | 7103 | ret = update_block_group(trans, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7104 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7105 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7106 | goto out; |
| 7107 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7108 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7109 | btrfs_release_path(path); |
| 7110 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7111 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7112 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7113 | return ret; |
| 7114 | } |
| 7115 | |
| 7116 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7117 | * 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] | 7118 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 7119 | * a given extent, and if there are no other delayed refs to be processed, it |
| 7120 | * removes it from the tree. |
| 7121 | */ |
| 7122 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7123 | u64 bytenr) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7124 | { |
| 7125 | struct btrfs_delayed_ref_head *head; |
| 7126 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7127 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7128 | |
| 7129 | delayed_refs = &trans->transaction->delayed_refs; |
| 7130 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 7131 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7132 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7133 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7134 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7135 | spin_lock(&head->lock); |
Liu Bo | e3d0396 | 2018-08-23 03:51:50 +0800 | [diff] [blame] | 7136 | if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7137 | goto out; |
| 7138 | |
Josef Bacik | bedc6617 | 2018-12-03 10:20:31 -0500 | [diff] [blame] | 7139 | if (cleanup_extent_op(head) != NULL) |
| 7140 | goto out; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7141 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7142 | /* |
| 7143 | * waiting for the lock here would deadlock. If someone else has it |
| 7144 | * locked they are already in the process of dropping it anyway |
| 7145 | */ |
| 7146 | if (!mutex_trylock(&head->mutex)) |
| 7147 | goto out; |
| 7148 | |
Josef Bacik | d7baffd | 2018-12-03 10:20:29 -0500 | [diff] [blame] | 7149 | btrfs_delete_ref_head(delayed_refs, head); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7150 | head->processing = 0; |
Josef Bacik | d7baffd | 2018-12-03 10:20:29 -0500 | [diff] [blame] | 7151 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7152 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7153 | spin_unlock(&delayed_refs->lock); |
| 7154 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7155 | BUG_ON(head->extent_op); |
| 7156 | if (head->must_insert_reserved) |
| 7157 | ret = 1; |
| 7158 | |
Josef Bacik | 31890da | 2018-11-21 14:05:41 -0500 | [diff] [blame] | 7159 | btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7160 | mutex_unlock(&head->mutex); |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 7161 | btrfs_put_delayed_ref_head(head); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7162 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7163 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7164 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7165 | |
| 7166 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7167 | spin_unlock(&delayed_refs->lock); |
| 7168 | return 0; |
| 7169 | } |
| 7170 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7171 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 7172 | struct btrfs_root *root, |
| 7173 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7174 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7175 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7176 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7177 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7178 | int ret; |
| 7179 | |
| 7180 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7181 | int old_ref_mod, new_ref_mod; |
| 7182 | |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 7183 | btrfs_ref_tree_mod(root, buf->start, buf->len, parent, |
| 7184 | root->root_key.objectid, |
| 7185 | btrfs_header_level(buf), 0, |
| 7186 | BTRFS_DROP_DELAYED_REF); |
Nikolay Borisov | 44e1c47 | 2018-06-20 15:48:53 +0300 | [diff] [blame] | 7187 | ret = btrfs_add_delayed_tree_ref(trans, buf->start, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 7188 | buf->len, parent, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7189 | root->root_key.objectid, |
| 7190 | btrfs_header_level(buf), |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 7191 | BTRFS_DROP_DELAYED_REF, NULL, |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7192 | &old_ref_mod, &new_ref_mod); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7193 | BUG_ON(ret); /* -ENOMEM */ |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7194 | pin = old_ref_mod >= 0 && new_ref_mod < 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7195 | } |
| 7196 | |
Omar Sandoval | 0a16c7d | 2017-06-06 16:45:29 -0700 | [diff] [blame] | 7197 | if (last_ref && btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7198 | struct btrfs_block_group_cache *cache; |
| 7199 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7200 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7201 | ret = check_ref_cleanup(trans, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7202 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7203 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7204 | } |
| 7205 | |
Omar Sandoval | 4da8b76 | 2017-06-06 16:45:28 -0700 | [diff] [blame] | 7206 | pin = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7207 | cache = btrfs_lookup_block_group(fs_info, buf->start); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7208 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7209 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
David Sterba | fdf0860 | 2019-03-20 12:12:32 +0100 | [diff] [blame] | 7210 | pin_down_extent(cache, buf->start, buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7211 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7212 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7213 | } |
| 7214 | |
| 7215 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 7216 | |
| 7217 | btrfs_add_free_space(cache, buf->start, buf->len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 7218 | btrfs_free_reserved_bytes(cache, buf->len, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7219 | btrfs_put_block_group(cache); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7220 | trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7221 | } |
| 7222 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7223 | if (pin) |
Nikolay Borisov | 29d2b84 | 2018-03-30 12:58:47 +0300 | [diff] [blame] | 7224 | add_pinned_bytes(fs_info, buf->len, true, |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7225 | root->root_key.objectid); |
| 7226 | |
Omar Sandoval | 0a16c7d | 2017-06-06 16:45:29 -0700 | [diff] [blame] | 7227 | if (last_ref) { |
| 7228 | /* |
| 7229 | * Deleting the buffer, clear the corrupt flag since it doesn't |
| 7230 | * matter anymore. |
| 7231 | */ |
| 7232 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
| 7233 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7234 | } |
| 7235 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7236 | /* Can return -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7237 | int btrfs_free_extent(struct btrfs_trans_handle *trans, |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 7238 | struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7239 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7240 | u64 owner, u64 offset) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7241 | { |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 7242 | struct btrfs_fs_info *fs_info = root->fs_info; |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7243 | int old_ref_mod, new_ref_mod; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7244 | int ret; |
| 7245 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 7246 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7247 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7248 | |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 7249 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) |
| 7250 | btrfs_ref_tree_mod(root, bytenr, num_bytes, parent, |
| 7251 | root_objectid, owner, offset, |
| 7252 | BTRFS_DROP_DELAYED_REF); |
| 7253 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7254 | /* |
| 7255 | * tree log blocks never actually go into the extent allocation |
| 7256 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7257 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7258 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 7259 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7260 | /* unlocks the pinned mutex */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7261 | btrfs_pin_extent(fs_info, bytenr, num_bytes, 1); |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7262 | old_ref_mod = new_ref_mod = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7263 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7264 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Nikolay Borisov | 44e1c47 | 2018-06-20 15:48:53 +0300 | [diff] [blame] | 7265 | ret = btrfs_add_delayed_tree_ref(trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 7266 | num_bytes, parent, |
| 7267 | root_objectid, (int)owner, |
| 7268 | BTRFS_DROP_DELAYED_REF, NULL, |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7269 | &old_ref_mod, &new_ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7270 | } else { |
Nikolay Borisov | 88a979c | 2018-06-20 15:48:54 +0300 | [diff] [blame] | 7271 | ret = btrfs_add_delayed_data_ref(trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 7272 | num_bytes, parent, |
| 7273 | root_objectid, owner, offset, |
| 7274 | 0, BTRFS_DROP_DELAYED_REF, |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7275 | &old_ref_mod, &new_ref_mod); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7276 | } |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7277 | |
Nikolay Borisov | 29d2b84 | 2018-03-30 12:58:47 +0300 | [diff] [blame] | 7278 | if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0) { |
| 7279 | bool metadata = owner < BTRFS_FIRST_FREE_OBJECTID; |
| 7280 | |
| 7281 | add_pinned_bytes(fs_info, num_bytes, metadata, root_objectid); |
| 7282 | } |
Omar Sandoval | d7eae34 | 2017-06-06 16:45:31 -0700 | [diff] [blame] | 7283 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7284 | return ret; |
| 7285 | } |
| 7286 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7287 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7288 | * when we wait for progress in the block group caching, its because |
| 7289 | * our allocation attempt failed at least once. So, we must sleep |
| 7290 | * and let some progress happen before we try again. |
| 7291 | * |
| 7292 | * This function will sleep at least once waiting for new free space to |
| 7293 | * show up, and then it will check the block group free space numbers |
| 7294 | * for our min num_bytes. Another option is to have it go ahead |
| 7295 | * and look in the rbtree for a free extent of a given size, but this |
| 7296 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7297 | * |
| 7298 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 7299 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7300 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7301 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7302 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 7303 | u64 num_bytes) |
| 7304 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7305 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7306 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7307 | caching_ctl = get_caching_control(cache); |
| 7308 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7309 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7310 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7311 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 7312 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7313 | |
| 7314 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7315 | } |
| 7316 | |
| 7317 | static noinline int |
| 7318 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 7319 | { |
| 7320 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7321 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7322 | |
| 7323 | caching_ctl = get_caching_control(cache); |
| 7324 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7325 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7326 | |
| 7327 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7328 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 7329 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7330 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7331 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7332 | } |
| 7333 | |
| 7334 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7335 | LOOP_CACHING_NOWAIT = 0, |
| 7336 | LOOP_CACHING_WAIT = 1, |
| 7337 | LOOP_ALLOC_CHUNK = 2, |
| 7338 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7339 | }; |
| 7340 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7341 | static inline void |
| 7342 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 7343 | int delalloc) |
| 7344 | { |
| 7345 | if (delalloc) |
| 7346 | down_read(&cache->data_rwsem); |
| 7347 | } |
| 7348 | |
| 7349 | static inline void |
| 7350 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 7351 | int delalloc) |
| 7352 | { |
| 7353 | btrfs_get_block_group(cache); |
| 7354 | if (delalloc) |
| 7355 | down_read(&cache->data_rwsem); |
| 7356 | } |
| 7357 | |
| 7358 | static struct btrfs_block_group_cache * |
| 7359 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 7360 | struct btrfs_free_cluster *cluster, |
| 7361 | int delalloc) |
| 7362 | { |
Sudip Mukherjee | 89771cc | 2016-02-16 13:32:47 +0530 | [diff] [blame] | 7363 | struct btrfs_block_group_cache *used_bg = NULL; |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7364 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7365 | spin_lock(&cluster->refill_lock); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7366 | while (1) { |
| 7367 | used_bg = cluster->block_group; |
| 7368 | if (!used_bg) |
| 7369 | return NULL; |
| 7370 | |
| 7371 | if (used_bg == block_group) |
| 7372 | return used_bg; |
| 7373 | |
| 7374 | btrfs_get_block_group(used_bg); |
| 7375 | |
| 7376 | if (!delalloc) |
| 7377 | return used_bg; |
| 7378 | |
| 7379 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 7380 | return used_bg; |
| 7381 | |
| 7382 | spin_unlock(&cluster->refill_lock); |
| 7383 | |
Liu Bo | e321f8a | 2016-11-30 16:11:04 -0800 | [diff] [blame] | 7384 | /* We should only have one-level nested. */ |
| 7385 | down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7386 | |
| 7387 | spin_lock(&cluster->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7388 | if (used_bg == cluster->block_group) |
| 7389 | return used_bg; |
| 7390 | |
| 7391 | up_read(&used_bg->data_rwsem); |
| 7392 | btrfs_put_block_group(used_bg); |
| 7393 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7394 | } |
| 7395 | |
| 7396 | static inline void |
| 7397 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 7398 | int delalloc) |
| 7399 | { |
| 7400 | if (delalloc) |
| 7401 | up_read(&cache->data_rwsem); |
| 7402 | btrfs_put_block_group(cache); |
| 7403 | } |
| 7404 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7405 | /* |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7406 | * Structure used internally for find_free_extent() function. Wraps needed |
| 7407 | * parameters. |
| 7408 | */ |
| 7409 | struct find_free_extent_ctl { |
| 7410 | /* Basic allocation info */ |
| 7411 | u64 ram_bytes; |
| 7412 | u64 num_bytes; |
| 7413 | u64 empty_size; |
| 7414 | u64 flags; |
| 7415 | int delalloc; |
| 7416 | |
| 7417 | /* Where to start the search inside the bg */ |
| 7418 | u64 search_start; |
| 7419 | |
| 7420 | /* For clustered allocation */ |
| 7421 | u64 empty_cluster; |
| 7422 | |
| 7423 | bool have_caching_bg; |
| 7424 | bool orig_have_caching_bg; |
| 7425 | |
| 7426 | /* RAID index, converted from flags */ |
| 7427 | int index; |
| 7428 | |
Qu Wenruo | e72d79d | 2018-11-02 09:39:50 +0800 | [diff] [blame] | 7429 | /* |
| 7430 | * Current loop number, check find_free_extent_update_loop() for details |
| 7431 | */ |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7432 | int loop; |
| 7433 | |
| 7434 | /* |
| 7435 | * Whether we're refilling a cluster, if true we need to re-search |
| 7436 | * current block group but don't try to refill the cluster again. |
| 7437 | */ |
| 7438 | bool retry_clustered; |
| 7439 | |
| 7440 | /* |
| 7441 | * Whether we're updating free space cache, if true we need to re-search |
| 7442 | * current block group but don't try updating free space cache again. |
| 7443 | */ |
| 7444 | bool retry_unclustered; |
| 7445 | |
| 7446 | /* If current block group is cached */ |
| 7447 | int cached; |
| 7448 | |
| 7449 | /* Max contiguous hole found */ |
| 7450 | u64 max_extent_size; |
| 7451 | |
| 7452 | /* Total free space from free space cache, not always contiguous */ |
| 7453 | u64 total_free_space; |
| 7454 | |
| 7455 | /* Found result */ |
| 7456 | u64 found_offset; |
| 7457 | }; |
| 7458 | |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7459 | |
| 7460 | /* |
| 7461 | * Helper function for find_free_extent(). |
| 7462 | * |
| 7463 | * Return -ENOENT to inform caller that we need fallback to unclustered mode. |
| 7464 | * Return -EAGAIN to inform caller that we need to re-search this block group |
| 7465 | * Return >0 to inform caller that we find nothing |
| 7466 | * Return 0 means we have found a location and set ffe_ctl->found_offset. |
| 7467 | */ |
| 7468 | static int find_free_extent_clustered(struct btrfs_block_group_cache *bg, |
| 7469 | struct btrfs_free_cluster *last_ptr, |
| 7470 | struct find_free_extent_ctl *ffe_ctl, |
| 7471 | struct btrfs_block_group_cache **cluster_bg_ret) |
| 7472 | { |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7473 | struct btrfs_block_group_cache *cluster_bg; |
| 7474 | u64 aligned_cluster; |
| 7475 | u64 offset; |
| 7476 | int ret; |
| 7477 | |
| 7478 | cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc); |
| 7479 | if (!cluster_bg) |
| 7480 | goto refill_cluster; |
| 7481 | if (cluster_bg != bg && (cluster_bg->ro || |
| 7482 | !block_group_bits(cluster_bg, ffe_ctl->flags))) |
| 7483 | goto release_cluster; |
| 7484 | |
| 7485 | offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr, |
| 7486 | ffe_ctl->num_bytes, cluster_bg->key.objectid, |
| 7487 | &ffe_ctl->max_extent_size); |
| 7488 | if (offset) { |
| 7489 | /* We have a block, we're done */ |
| 7490 | spin_unlock(&last_ptr->refill_lock); |
| 7491 | trace_btrfs_reserve_extent_cluster(cluster_bg, |
| 7492 | ffe_ctl->search_start, ffe_ctl->num_bytes); |
| 7493 | *cluster_bg_ret = cluster_bg; |
| 7494 | ffe_ctl->found_offset = offset; |
| 7495 | return 0; |
| 7496 | } |
| 7497 | WARN_ON(last_ptr->block_group != cluster_bg); |
| 7498 | |
| 7499 | release_cluster: |
| 7500 | /* |
| 7501 | * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so |
| 7502 | * lets just skip it and let the allocator find whatever block it can |
| 7503 | * find. If we reach this point, we will have tried the cluster |
| 7504 | * allocator plenty of times and not have found anything, so we are |
| 7505 | * likely way too fragmented for the clustering stuff to find anything. |
| 7506 | * |
| 7507 | * However, if the cluster is taken from the current block group, |
| 7508 | * release the cluster first, so that we stand a better chance of |
| 7509 | * succeeding in the unclustered allocation. |
| 7510 | */ |
| 7511 | if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) { |
| 7512 | spin_unlock(&last_ptr->refill_lock); |
| 7513 | btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc); |
| 7514 | return -ENOENT; |
| 7515 | } |
| 7516 | |
| 7517 | /* This cluster didn't work out, free it and start over */ |
| 7518 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7519 | |
| 7520 | if (cluster_bg != bg) |
| 7521 | btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc); |
| 7522 | |
| 7523 | refill_cluster: |
| 7524 | if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) { |
| 7525 | spin_unlock(&last_ptr->refill_lock); |
| 7526 | return -ENOENT; |
| 7527 | } |
| 7528 | |
| 7529 | aligned_cluster = max_t(u64, |
| 7530 | ffe_ctl->empty_cluster + ffe_ctl->empty_size, |
| 7531 | bg->full_stripe_len); |
David Sterba | 2ceeae2 | 2019-03-20 13:53:49 +0100 | [diff] [blame^] | 7532 | ret = btrfs_find_space_cluster(bg, last_ptr, ffe_ctl->search_start, |
| 7533 | ffe_ctl->num_bytes, aligned_cluster); |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7534 | if (ret == 0) { |
| 7535 | /* Now pull our allocation out of this cluster */ |
| 7536 | offset = btrfs_alloc_from_cluster(bg, last_ptr, |
| 7537 | ffe_ctl->num_bytes, ffe_ctl->search_start, |
| 7538 | &ffe_ctl->max_extent_size); |
| 7539 | if (offset) { |
| 7540 | /* We found one, proceed */ |
| 7541 | spin_unlock(&last_ptr->refill_lock); |
| 7542 | trace_btrfs_reserve_extent_cluster(bg, |
| 7543 | ffe_ctl->search_start, |
| 7544 | ffe_ctl->num_bytes); |
| 7545 | ffe_ctl->found_offset = offset; |
| 7546 | return 0; |
| 7547 | } |
| 7548 | } else if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT && |
| 7549 | !ffe_ctl->retry_clustered) { |
| 7550 | spin_unlock(&last_ptr->refill_lock); |
| 7551 | |
| 7552 | ffe_ctl->retry_clustered = true; |
| 7553 | wait_block_group_cache_progress(bg, ffe_ctl->num_bytes + |
| 7554 | ffe_ctl->empty_cluster + ffe_ctl->empty_size); |
| 7555 | return -EAGAIN; |
| 7556 | } |
| 7557 | /* |
| 7558 | * At this point we either didn't find a cluster or we weren't able to |
| 7559 | * allocate a block from our cluster. Free the cluster we've been |
| 7560 | * trying to use, and go to the next block group. |
| 7561 | */ |
| 7562 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7563 | spin_unlock(&last_ptr->refill_lock); |
| 7564 | return 1; |
| 7565 | } |
| 7566 | |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7567 | /* |
Qu Wenruo | e1a4184 | 2018-11-02 09:39:49 +0800 | [diff] [blame] | 7568 | * Return >0 to inform caller that we find nothing |
| 7569 | * Return 0 when we found an free extent and set ffe_ctrl->found_offset |
| 7570 | * Return -EAGAIN to inform caller that we need to re-search this block group |
| 7571 | */ |
| 7572 | static int find_free_extent_unclustered(struct btrfs_block_group_cache *bg, |
| 7573 | struct btrfs_free_cluster *last_ptr, |
| 7574 | struct find_free_extent_ctl *ffe_ctl) |
| 7575 | { |
| 7576 | u64 offset; |
| 7577 | |
| 7578 | /* |
| 7579 | * We are doing an unclustered allocation, set the fragmented flag so |
| 7580 | * we don't bother trying to setup a cluster again until we get more |
| 7581 | * space. |
| 7582 | */ |
| 7583 | if (unlikely(last_ptr)) { |
| 7584 | spin_lock(&last_ptr->lock); |
| 7585 | last_ptr->fragmented = 1; |
| 7586 | spin_unlock(&last_ptr->lock); |
| 7587 | } |
| 7588 | if (ffe_ctl->cached) { |
| 7589 | struct btrfs_free_space_ctl *free_space_ctl; |
| 7590 | |
| 7591 | free_space_ctl = bg->free_space_ctl; |
| 7592 | spin_lock(&free_space_ctl->tree_lock); |
| 7593 | if (free_space_ctl->free_space < |
| 7594 | ffe_ctl->num_bytes + ffe_ctl->empty_cluster + |
| 7595 | ffe_ctl->empty_size) { |
| 7596 | ffe_ctl->total_free_space = max_t(u64, |
| 7597 | ffe_ctl->total_free_space, |
| 7598 | free_space_ctl->free_space); |
| 7599 | spin_unlock(&free_space_ctl->tree_lock); |
| 7600 | return 1; |
| 7601 | } |
| 7602 | spin_unlock(&free_space_ctl->tree_lock); |
| 7603 | } |
| 7604 | |
| 7605 | offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start, |
| 7606 | ffe_ctl->num_bytes, ffe_ctl->empty_size, |
| 7607 | &ffe_ctl->max_extent_size); |
| 7608 | |
| 7609 | /* |
| 7610 | * If we didn't find a chunk, and we haven't failed on this block group |
| 7611 | * before, and this block group is in the middle of caching and we are |
| 7612 | * ok with waiting, then go ahead and wait for progress to be made, and |
| 7613 | * set @retry_unclustered to true. |
| 7614 | * |
| 7615 | * If @retry_unclustered is true then we've already waited on this |
| 7616 | * block group once and should move on to the next block group. |
| 7617 | */ |
| 7618 | if (!offset && !ffe_ctl->retry_unclustered && !ffe_ctl->cached && |
| 7619 | ffe_ctl->loop > LOOP_CACHING_NOWAIT) { |
| 7620 | wait_block_group_cache_progress(bg, ffe_ctl->num_bytes + |
| 7621 | ffe_ctl->empty_size); |
| 7622 | ffe_ctl->retry_unclustered = true; |
| 7623 | return -EAGAIN; |
| 7624 | } else if (!offset) { |
| 7625 | return 1; |
| 7626 | } |
| 7627 | ffe_ctl->found_offset = offset; |
| 7628 | return 0; |
| 7629 | } |
| 7630 | |
| 7631 | /* |
Qu Wenruo | e72d79d | 2018-11-02 09:39:50 +0800 | [diff] [blame] | 7632 | * Return >0 means caller needs to re-search for free extent |
| 7633 | * Return 0 means we have the needed free extent. |
| 7634 | * Return <0 means we failed to locate any free extent. |
| 7635 | */ |
| 7636 | static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info, |
| 7637 | struct btrfs_free_cluster *last_ptr, |
| 7638 | struct btrfs_key *ins, |
| 7639 | struct find_free_extent_ctl *ffe_ctl, |
| 7640 | int full_search, bool use_cluster) |
| 7641 | { |
| 7642 | struct btrfs_root *root = fs_info->extent_root; |
| 7643 | int ret; |
| 7644 | |
| 7645 | if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) && |
| 7646 | ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg) |
| 7647 | ffe_ctl->orig_have_caching_bg = true; |
| 7648 | |
| 7649 | if (!ins->objectid && ffe_ctl->loop >= LOOP_CACHING_WAIT && |
| 7650 | ffe_ctl->have_caching_bg) |
| 7651 | return 1; |
| 7652 | |
| 7653 | if (!ins->objectid && ++(ffe_ctl->index) < BTRFS_NR_RAID_TYPES) |
| 7654 | return 1; |
| 7655 | |
| 7656 | if (ins->objectid) { |
| 7657 | if (!use_cluster && last_ptr) { |
| 7658 | spin_lock(&last_ptr->lock); |
| 7659 | last_ptr->window_start = ins->objectid; |
| 7660 | spin_unlock(&last_ptr->lock); |
| 7661 | } |
| 7662 | return 0; |
| 7663 | } |
| 7664 | |
| 7665 | /* |
| 7666 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7667 | * caching kthreads as we move along |
| 7668 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7669 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7670 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7671 | * again |
| 7672 | */ |
| 7673 | if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) { |
| 7674 | ffe_ctl->index = 0; |
| 7675 | if (ffe_ctl->loop == LOOP_CACHING_NOWAIT) { |
| 7676 | /* |
| 7677 | * We want to skip the LOOP_CACHING_WAIT step if we |
| 7678 | * don't have any uncached bgs and we've already done a |
| 7679 | * full search through. |
| 7680 | */ |
| 7681 | if (ffe_ctl->orig_have_caching_bg || !full_search) |
| 7682 | ffe_ctl->loop = LOOP_CACHING_WAIT; |
| 7683 | else |
| 7684 | ffe_ctl->loop = LOOP_ALLOC_CHUNK; |
| 7685 | } else { |
| 7686 | ffe_ctl->loop++; |
| 7687 | } |
| 7688 | |
| 7689 | if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) { |
| 7690 | struct btrfs_trans_handle *trans; |
| 7691 | int exist = 0; |
| 7692 | |
| 7693 | trans = current->journal_info; |
| 7694 | if (trans) |
| 7695 | exist = 1; |
| 7696 | else |
| 7697 | trans = btrfs_join_transaction(root); |
| 7698 | |
| 7699 | if (IS_ERR(trans)) { |
| 7700 | ret = PTR_ERR(trans); |
| 7701 | return ret; |
| 7702 | } |
| 7703 | |
| 7704 | ret = do_chunk_alloc(trans, ffe_ctl->flags, |
| 7705 | CHUNK_ALLOC_FORCE); |
| 7706 | |
| 7707 | /* |
| 7708 | * If we can't allocate a new chunk we've already looped |
| 7709 | * through at least once, move on to the NO_EMPTY_SIZE |
| 7710 | * case. |
| 7711 | */ |
| 7712 | if (ret == -ENOSPC) |
| 7713 | ffe_ctl->loop = LOOP_NO_EMPTY_SIZE; |
| 7714 | |
| 7715 | /* Do not bail out on ENOSPC since we can do more. */ |
| 7716 | if (ret < 0 && ret != -ENOSPC) |
| 7717 | btrfs_abort_transaction(trans, ret); |
| 7718 | else |
| 7719 | ret = 0; |
| 7720 | if (!exist) |
| 7721 | btrfs_end_transaction(trans); |
| 7722 | if (ret) |
| 7723 | return ret; |
| 7724 | } |
| 7725 | |
| 7726 | if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) { |
| 7727 | /* |
| 7728 | * Don't loop again if we already have no empty_size and |
| 7729 | * no empty_cluster. |
| 7730 | */ |
| 7731 | if (ffe_ctl->empty_size == 0 && |
| 7732 | ffe_ctl->empty_cluster == 0) |
| 7733 | return -ENOSPC; |
| 7734 | ffe_ctl->empty_size = 0; |
| 7735 | ffe_ctl->empty_cluster = 0; |
| 7736 | } |
| 7737 | return 1; |
| 7738 | } |
| 7739 | return -ENOSPC; |
| 7740 | } |
| 7741 | |
| 7742 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7743 | * walks the btree of allocated extents and find a hole of a given size. |
| 7744 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7745 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 7746 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7747 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7748 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7749 | * |
| 7750 | * If there is no suitable free space, we will record the max size of |
| 7751 | * the free space extent currently. |
Qu Wenruo | e72d79d | 2018-11-02 09:39:50 +0800 | [diff] [blame] | 7752 | * |
| 7753 | * The overall logic and call chain: |
| 7754 | * |
| 7755 | * find_free_extent() |
| 7756 | * |- Iterate through all block groups |
| 7757 | * | |- Get a valid block group |
| 7758 | * | |- Try to do clustered allocation in that block group |
| 7759 | * | |- Try to do unclustered allocation in that block group |
| 7760 | * | |- Check if the result is valid |
| 7761 | * | | |- If valid, then exit |
| 7762 | * | |- Jump to next block group |
| 7763 | * | |
| 7764 | * |- Push harder to find free extents |
| 7765 | * |- If not found, re-iterate all block groups |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7766 | */ |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7767 | static noinline int find_free_extent(struct btrfs_fs_info *fs_info, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7768 | u64 ram_bytes, u64 num_bytes, u64 empty_size, |
| 7769 | u64 hint_byte, struct btrfs_key *ins, |
| 7770 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7771 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7772 | int ret = 0; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7773 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7774 | struct btrfs_block_group_cache *block_group = NULL; |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7775 | struct find_free_extent_ctl ffe_ctl = {0}; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7776 | struct btrfs_space_info *space_info; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7777 | bool use_cluster = true; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7778 | bool full_search = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7779 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7780 | WARN_ON(num_bytes < fs_info->sectorsize); |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7781 | |
| 7782 | ffe_ctl.ram_bytes = ram_bytes; |
| 7783 | ffe_ctl.num_bytes = num_bytes; |
| 7784 | ffe_ctl.empty_size = empty_size; |
| 7785 | ffe_ctl.flags = flags; |
| 7786 | ffe_ctl.search_start = 0; |
| 7787 | ffe_ctl.retry_clustered = false; |
| 7788 | ffe_ctl.retry_unclustered = false; |
| 7789 | ffe_ctl.delalloc = delalloc; |
| 7790 | ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags); |
| 7791 | ffe_ctl.have_caching_bg = false; |
| 7792 | ffe_ctl.orig_have_caching_bg = false; |
| 7793 | ffe_ctl.found_offset = 0; |
| 7794 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 7795 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7796 | ins->objectid = 0; |
| 7797 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 7798 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7799 | trace_find_free_extent(fs_info, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7800 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7801 | space_info = __find_space_info(fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7802 | if (!space_info) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7803 | btrfs_err(fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7804 | return -ENOSPC; |
| 7805 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7806 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7807 | /* |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7808 | * If our free space is heavily fragmented we may not be able to make |
| 7809 | * big contiguous allocations, so instead of doing the expensive search |
| 7810 | * for free space, simply return ENOSPC with our max_extent_size so we |
| 7811 | * can go ahead and search for a more manageable chunk. |
| 7812 | * |
| 7813 | * If our max_extent_size is large enough for our allocation simply |
| 7814 | * disable clustering since we will likely not be able to find enough |
| 7815 | * space to create a cluster and induce latency trying. |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7816 | */ |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7817 | if (unlikely(space_info->max_extent_size)) { |
| 7818 | spin_lock(&space_info->lock); |
| 7819 | if (space_info->max_extent_size && |
| 7820 | num_bytes > space_info->max_extent_size) { |
| 7821 | ins->offset = space_info->max_extent_size; |
| 7822 | spin_unlock(&space_info->lock); |
| 7823 | return -ENOSPC; |
| 7824 | } else if (space_info->max_extent_size) { |
| 7825 | use_cluster = false; |
| 7826 | } |
| 7827 | spin_unlock(&space_info->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7828 | } |
| 7829 | |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7830 | last_ptr = fetch_cluster_info(fs_info, space_info, |
| 7831 | &ffe_ctl.empty_cluster); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7832 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7833 | spin_lock(&last_ptr->lock); |
| 7834 | if (last_ptr->block_group) |
| 7835 | hint_byte = last_ptr->window_start; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7836 | if (last_ptr->fragmented) { |
| 7837 | /* |
| 7838 | * We still set window_start so we can keep track of the |
| 7839 | * last place we found an allocation to try and save |
| 7840 | * some time. |
| 7841 | */ |
| 7842 | hint_byte = last_ptr->window_start; |
| 7843 | use_cluster = false; |
| 7844 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7845 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7846 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7847 | |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7848 | ffe_ctl.search_start = max(ffe_ctl.search_start, |
| 7849 | first_logical_byte(fs_info, 0)); |
| 7850 | ffe_ctl.search_start = max(ffe_ctl.search_start, hint_byte); |
| 7851 | if (ffe_ctl.search_start == hint_byte) { |
| 7852 | block_group = btrfs_lookup_block_group(fs_info, |
| 7853 | ffe_ctl.search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7854 | /* |
| 7855 | * we don't want to use the block group if it doesn't match our |
| 7856 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7857 | * |
| 7858 | * However if we are re-searching with an ideal block group |
| 7859 | * 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] | 7860 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7861 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7862 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7863 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7864 | if (list_empty(&block_group->list) || |
| 7865 | block_group->ro) { |
| 7866 | /* |
| 7867 | * someone is removing this block group, |
| 7868 | * we can't jump into the have_block_group |
| 7869 | * target because our list pointers are not |
| 7870 | * valid |
| 7871 | */ |
| 7872 | btrfs_put_block_group(block_group); |
| 7873 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7874 | } else { |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7875 | ffe_ctl.index = btrfs_bg_flags_to_raid_index( |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 7876 | block_group->flags); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7877 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7878 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7879 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7880 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7881 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7882 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7883 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7884 | search: |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7885 | ffe_ctl.have_caching_bg = false; |
| 7886 | if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) || |
| 7887 | ffe_ctl.index == 0) |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7888 | full_search = true; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7889 | down_read(&space_info->groups_sem); |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7890 | list_for_each_entry(block_group, |
| 7891 | &space_info->block_groups[ffe_ctl.index], list) { |
Jeff Mahoney | 1444393 | 2017-07-19 23:25:51 -0400 | [diff] [blame] | 7892 | /* If the block group is read-only, we can skip it entirely. */ |
| 7893 | if (unlikely(block_group->ro)) |
| 7894 | continue; |
| 7895 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7896 | btrfs_grab_block_group(block_group, delalloc); |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7897 | ffe_ctl.search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7898 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7899 | /* |
| 7900 | * this can happen if we end up cycling through all the |
| 7901 | * raid types, but we want to make sure we only allocate |
| 7902 | * for the proper type. |
| 7903 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7904 | if (!block_group_bits(block_group, flags)) { |
Bart Van Assche | bece2e8 | 2018-06-20 10:03:31 -0700 | [diff] [blame] | 7905 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7906 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7907 | BTRFS_BLOCK_GROUP_RAID5 | |
| 7908 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7909 | BTRFS_BLOCK_GROUP_RAID10; |
| 7910 | |
| 7911 | /* |
| 7912 | * if they asked for extra copies and this block group |
| 7913 | * doesn't provide them, bail. This does allow us to |
| 7914 | * fill raid0 from raid1. |
| 7915 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7916 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7917 | goto loop; |
| 7918 | } |
| 7919 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7920 | have_block_group: |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7921 | ffe_ctl.cached = block_group_cache_done(block_group); |
| 7922 | if (unlikely(!ffe_ctl.cached)) { |
| 7923 | ffe_ctl.have_caching_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 7924 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 7925 | BUG_ON(ret < 0); |
| 7926 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7927 | } |
| 7928 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7929 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 7930 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7931 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7932 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7933 | * Ok we want to try and use the cluster allocator, so |
| 7934 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7935 | */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7936 | if (last_ptr && use_cluster) { |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7937 | struct btrfs_block_group_cache *cluster_bg = NULL; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7938 | |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7939 | ret = find_free_extent_clustered(block_group, last_ptr, |
| 7940 | &ffe_ctl, &cluster_bg); |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7941 | |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7942 | if (ret == 0) { |
| 7943 | if (cluster_bg && cluster_bg != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7944 | btrfs_release_block_group(block_group, |
| 7945 | delalloc); |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7946 | block_group = cluster_bg; |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7947 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7948 | goto checks; |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7949 | } else if (ret == -EAGAIN) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7950 | goto have_block_group; |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7951 | } else if (ret > 0) { |
| 7952 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7953 | } |
Qu Wenruo | d06e3bb | 2018-11-02 09:39:48 +0800 | [diff] [blame] | 7954 | /* ret == -ENOENT case falls through */ |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7955 | } |
| 7956 | |
Qu Wenruo | e1a4184 | 2018-11-02 09:39:49 +0800 | [diff] [blame] | 7957 | ret = find_free_extent_unclustered(block_group, last_ptr, |
| 7958 | &ffe_ctl); |
| 7959 | if (ret == -EAGAIN) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7960 | goto have_block_group; |
Qu Wenruo | e1a4184 | 2018-11-02 09:39:49 +0800 | [diff] [blame] | 7961 | else if (ret > 0) |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7962 | goto loop; |
Qu Wenruo | e1a4184 | 2018-11-02 09:39:49 +0800 | [diff] [blame] | 7963 | /* ret == 0 case falls through */ |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7964 | checks: |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7965 | ffe_ctl.search_start = round_up(ffe_ctl.found_offset, |
| 7966 | fs_info->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7967 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7968 | /* move on to the next group */ |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7969 | if (ffe_ctl.search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7970 | block_group->key.objectid + block_group->key.offset) { |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7971 | btrfs_add_free_space(block_group, ffe_ctl.found_offset, |
| 7972 | num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7973 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7974 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7975 | |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7976 | if (ffe_ctl.found_offset < ffe_ctl.search_start) |
| 7977 | btrfs_add_free_space(block_group, ffe_ctl.found_offset, |
| 7978 | ffe_ctl.search_start - ffe_ctl.found_offset); |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7979 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7980 | ret = btrfs_add_reserved_bytes(block_group, ram_bytes, |
| 7981 | num_bytes, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7982 | if (ret == -EAGAIN) { |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7983 | btrfs_add_free_space(block_group, ffe_ctl.found_offset, |
| 7984 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7985 | goto loop; |
| 7986 | } |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7987 | btrfs_inc_block_group_reservations(block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7988 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7989 | /* we are all good, lets return */ |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7990 | ins->objectid = ffe_ctl.search_start; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7991 | ins->offset = num_bytes; |
| 7992 | |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7993 | trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start, |
| 7994 | num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7995 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7996 | break; |
| 7997 | loop: |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 7998 | ffe_ctl.retry_clustered = false; |
| 7999 | ffe_ctl.retry_unclustered = false; |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 8000 | BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) != |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 8001 | ffe_ctl.index); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8002 | btrfs_release_block_group(block_group, delalloc); |
Jeff Mahoney | 1444393 | 2017-07-19 23:25:51 -0400 | [diff] [blame] | 8003 | cond_resched(); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 8004 | } |
| 8005 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 8006 | |
Qu Wenruo | e72d79d | 2018-11-02 09:39:50 +0800 | [diff] [blame] | 8007 | ret = find_free_extent_update_loop(fs_info, last_ptr, ins, &ffe_ctl, |
| 8008 | full_search, use_cluster); |
| 8009 | if (ret > 0) |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 8010 | goto search; |
| 8011 | |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 8012 | if (ret == -ENOSPC) { |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 8013 | /* |
| 8014 | * Use ffe_ctl->total_free_space as fallback if we can't find |
| 8015 | * any contiguous hole. |
| 8016 | */ |
| 8017 | if (!ffe_ctl.max_extent_size) |
| 8018 | ffe_ctl.max_extent_size = ffe_ctl.total_free_space; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 8019 | spin_lock(&space_info->lock); |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 8020 | space_info->max_extent_size = ffe_ctl.max_extent_size; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 8021 | spin_unlock(&space_info->lock); |
Qu Wenruo | b4bd745 | 2018-11-02 09:39:47 +0800 | [diff] [blame] | 8022 | ins->offset = ffe_ctl.max_extent_size; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 8023 | } |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 8024 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8025 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 8026 | |
Josef Bacik | b78e561 | 2018-11-21 14:03:07 -0500 | [diff] [blame] | 8027 | #define DUMP_BLOCK_RSV(fs_info, rsv_name) \ |
| 8028 | do { \ |
| 8029 | struct btrfs_block_rsv *__rsv = &(fs_info)->rsv_name; \ |
| 8030 | spin_lock(&__rsv->lock); \ |
| 8031 | btrfs_info(fs_info, #rsv_name ": size %llu reserved %llu", \ |
| 8032 | __rsv->size, __rsv->reserved); \ |
| 8033 | spin_unlock(&__rsv->lock); \ |
| 8034 | } while (0) |
| 8035 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8036 | static void dump_space_info(struct btrfs_fs_info *fs_info, |
| 8037 | struct btrfs_space_info *info, u64 bytes, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 8038 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8039 | { |
| 8040 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8041 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8042 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 8043 | spin_lock(&info->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8044 | btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull", |
| 8045 | info->flags, |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 8046 | info->total_bytes - btrfs_space_info_used(info, true), |
| 8047 | info->full ? "" : "not "); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8048 | btrfs_info(fs_info, |
| 8049 | "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu", |
| 8050 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 8051 | info->bytes_reserved, info->bytes_may_use, |
| 8052 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 8053 | spin_unlock(&info->lock); |
| 8054 | |
Josef Bacik | b78e561 | 2018-11-21 14:03:07 -0500 | [diff] [blame] | 8055 | DUMP_BLOCK_RSV(fs_info, global_block_rsv); |
| 8056 | DUMP_BLOCK_RSV(fs_info, trans_block_rsv); |
| 8057 | DUMP_BLOCK_RSV(fs_info, chunk_block_rsv); |
| 8058 | DUMP_BLOCK_RSV(fs_info, delayed_block_rsv); |
| 8059 | DUMP_BLOCK_RSV(fs_info, delayed_refs_rsv); |
| 8060 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 8061 | if (!dump_block_groups) |
| 8062 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8063 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8064 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8065 | again: |
| 8066 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8067 | spin_lock(&cache->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8068 | btrfs_info(fs_info, |
| 8069 | "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s", |
| 8070 | cache->key.objectid, cache->key.offset, |
| 8071 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 8072 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8073 | btrfs_dump_free_space(cache, bytes); |
| 8074 | spin_unlock(&cache->lock); |
| 8075 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 8076 | if (++index < BTRFS_NR_RAID_TYPES) |
| 8077 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8078 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8079 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 8080 | |
Nikolay Borisov | 6f47c70 | 2018-03-13 12:22:32 +0200 | [diff] [blame] | 8081 | /* |
| 8082 | * btrfs_reserve_extent - entry point to the extent allocator. Tries to find a |
| 8083 | * hole that is at least as big as @num_bytes. |
| 8084 | * |
| 8085 | * @root - The root that will contain this extent |
| 8086 | * |
| 8087 | * @ram_bytes - The amount of space in ram that @num_bytes take. This |
| 8088 | * is used for accounting purposes. This value differs |
| 8089 | * from @num_bytes only in the case of compressed extents. |
| 8090 | * |
| 8091 | * @num_bytes - Number of bytes to allocate on-disk. |
| 8092 | * |
| 8093 | * @min_alloc_size - Indicates the minimum amount of space that the |
| 8094 | * allocator should try to satisfy. In some cases |
| 8095 | * @num_bytes may be larger than what is required and if |
| 8096 | * the filesystem is fragmented then allocation fails. |
| 8097 | * However, the presence of @min_alloc_size gives a |
| 8098 | * chance to try and satisfy the smaller allocation. |
| 8099 | * |
| 8100 | * @empty_size - A hint that you plan on doing more COW. This is the |
| 8101 | * size in bytes the allocator should try to find free |
| 8102 | * next to the block it returns. This is just a hint and |
| 8103 | * may be ignored by the allocator. |
| 8104 | * |
| 8105 | * @hint_byte - Hint to the allocator to start searching above the byte |
| 8106 | * address passed. It might be ignored. |
| 8107 | * |
| 8108 | * @ins - This key is modified to record the found hole. It will |
| 8109 | * have the following values: |
| 8110 | * ins->objectid == start position |
| 8111 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
| 8112 | * ins->offset == the size of the hole. |
| 8113 | * |
| 8114 | * @is_data - Boolean flag indicating whether an extent is |
| 8115 | * allocated for data (true) or metadata (false) |
| 8116 | * |
| 8117 | * @delalloc - Boolean flag indicating whether this allocation is for |
| 8118 | * delalloc or not. If 'true' data_rwsem of block groups |
| 8119 | * is going to be acquired. |
| 8120 | * |
| 8121 | * |
| 8122 | * Returns 0 when an allocation succeeded or < 0 when an error occurred. In |
| 8123 | * case -ENOSPC is returned then @ins->offset will contain the size of the |
| 8124 | * largest available hole the allocator managed to find. |
| 8125 | */ |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8126 | int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8127 | u64 num_bytes, u64 min_alloc_size, |
| 8128 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8129 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8130 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8131 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 36af4e0 | 2015-09-25 16:13:11 -0400 | [diff] [blame] | 8132 | bool final_tried = num_bytes == min_alloc_size; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 8133 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8134 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8135 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 8136 | flags = get_alloc_profile_by_root(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 8137 | again: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8138 | WARN_ON(num_bytes < fs_info->sectorsize); |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 8139 | ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8140 | hint_byte, ins, flags, delalloc); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 8141 | if (!ret && !is_data) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8142 | btrfs_dec_block_group_reservations(fs_info, ins->objectid); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 8143 | } else if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 8144 | if (!final_tried && ins->offset) { |
| 8145 | num_bytes = min(num_bytes >> 1, ins->offset); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8146 | num_bytes = round_down(num_bytes, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8147 | fs_info->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 8148 | num_bytes = max(num_bytes, min_alloc_size); |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8149 | ram_bytes = num_bytes; |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 8150 | if (num_bytes == min_alloc_size) |
| 8151 | final_tried = true; |
| 8152 | goto again; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8153 | } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 8154 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8155 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8156 | sinfo = __find_space_info(fs_info, flags); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8157 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8158 | "allocation failed flags %llu, wanted %llu", |
| 8159 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 8160 | if (sinfo) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8161 | dump_space_info(fs_info, sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 8162 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8163 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8164 | |
| 8165 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8166 | } |
| 8167 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8168 | static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8169 | u64 start, u64 len, |
| 8170 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8171 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8172 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8173 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8174 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8175 | cache = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8176 | if (!cache) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8177 | btrfs_err(fs_info, "Unable to find block group for %llu", |
| 8178 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8179 | return -ENOSPC; |
| 8180 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8181 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8182 | if (pin) |
David Sterba | fdf0860 | 2019-03-20 12:12:32 +0100 | [diff] [blame] | 8183 | pin_down_extent(cache, start, len, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8184 | else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8185 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8186 | ret = btrfs_discard_extent(fs_info, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8187 | btrfs_add_free_space(cache, start, len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 8188 | btrfs_free_reserved_bytes(cache, len, delalloc); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8189 | trace_btrfs_reserved_extent_free(fs_info, start, len); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8190 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 8191 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8192 | btrfs_put_block_group(cache); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8193 | return ret; |
| 8194 | } |
| 8195 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8196 | int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8197 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8198 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8199 | return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8200 | } |
| 8201 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8202 | int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8203 | u64 start, u64 len) |
| 8204 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8205 | return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8206 | } |
| 8207 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8208 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8209 | u64 parent, u64 root_objectid, |
| 8210 | u64 flags, u64 owner, u64 offset, |
| 8211 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8212 | { |
Nikolay Borisov | ef89b82 | 2018-06-20 15:48:58 +0300 | [diff] [blame] | 8213 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8214 | int ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8215 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8216 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8217 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8218 | struct extent_buffer *leaf; |
| 8219 | int type; |
| 8220 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 8221 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8222 | if (parent > 0) |
| 8223 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 8224 | else |
| 8225 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 8226 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8227 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8228 | |
| 8229 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8230 | if (!path) |
| 8231 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8232 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 8233 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8234 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8235 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8236 | if (ret) { |
| 8237 | btrfs_free_path(path); |
| 8238 | return ret; |
| 8239 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8240 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8241 | leaf = path->nodes[0]; |
| 8242 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8243 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8244 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 8245 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8246 | btrfs_set_extent_flags(leaf, extent_item, |
| 8247 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8248 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8249 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 8250 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 8251 | if (parent > 0) { |
| 8252 | struct btrfs_shared_data_ref *ref; |
| 8253 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 8254 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8255 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 8256 | } else { |
| 8257 | struct btrfs_extent_data_ref *ref; |
| 8258 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 8259 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 8260 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 8261 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 8262 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 8263 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8264 | |
| 8265 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8266 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 8267 | |
Nikolay Borisov | 25a356d | 2018-05-10 15:44:54 +0300 | [diff] [blame] | 8268 | ret = remove_from_free_space_tree(trans, ins->objectid, ins->offset); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8269 | if (ret) |
| 8270 | return ret; |
| 8271 | |
David Sterba | 6b27940 | 2019-03-20 12:10:15 +0100 | [diff] [blame] | 8272 | ret = update_block_group(trans, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8273 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8274 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8275 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 8276 | BUG(); |
| 8277 | } |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8278 | trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8279 | return ret; |
| 8280 | } |
| 8281 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8282 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8283 | struct btrfs_delayed_ref_node *node, |
Nikolay Borisov | 21ebfbe | 2018-05-21 12:27:22 +0300 | [diff] [blame] | 8284 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8285 | { |
Nikolay Borisov | 9dcdbe0 | 2018-05-21 12:27:20 +0300 | [diff] [blame] | 8286 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8287 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8288 | struct btrfs_extent_item *extent_item; |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8289 | struct btrfs_key extent_key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8290 | struct btrfs_tree_block_info *block_info; |
| 8291 | struct btrfs_extent_inline_ref *iref; |
| 8292 | struct btrfs_path *path; |
| 8293 | struct extent_buffer *leaf; |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8294 | struct btrfs_delayed_tree_ref *ref; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8295 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8296 | u64 num_bytes; |
Nikolay Borisov | 21ebfbe | 2018-05-21 12:27:22 +0300 | [diff] [blame] | 8297 | u64 flags = extent_op->flags_to_set; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8298 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8299 | |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8300 | ref = btrfs_delayed_node_to_tree_ref(node); |
| 8301 | |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8302 | extent_key.objectid = node->bytenr; |
| 8303 | if (skinny_metadata) { |
| 8304 | extent_key.offset = ref->level; |
| 8305 | extent_key.type = BTRFS_METADATA_ITEM_KEY; |
| 8306 | num_bytes = fs_info->nodesize; |
| 8307 | } else { |
| 8308 | extent_key.offset = node->num_bytes; |
| 8309 | extent_key.type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8310 | size += sizeof(*block_info); |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8311 | num_bytes = node->num_bytes; |
| 8312 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8313 | |
| 8314 | path = btrfs_alloc_path(); |
Josef Bacik | 80ee54b | 2018-10-11 15:54:22 -0400 | [diff] [blame] | 8315 | if (!path) |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8316 | return -ENOMEM; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8317 | |
| 8318 | path->leave_spinning = 1; |
| 8319 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8320 | &extent_key, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8321 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 8322 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8323 | return ret; |
| 8324 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8325 | |
| 8326 | leaf = path->nodes[0]; |
| 8327 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 8328 | struct btrfs_extent_item); |
| 8329 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 8330 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8331 | btrfs_set_extent_flags(leaf, extent_item, |
| 8332 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8333 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8334 | if (skinny_metadata) { |
| 8335 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 8336 | } else { |
| 8337 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
Nikolay Borisov | 21ebfbe | 2018-05-21 12:27:22 +0300 | [diff] [blame] | 8338 | btrfs_set_tree_block_key(leaf, block_info, &extent_op->key); |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8339 | btrfs_set_tree_block_level(leaf, block_info, ref->level); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8340 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 8341 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8342 | |
Nikolay Borisov | d4b2073 | 2018-05-21 12:27:23 +0300 | [diff] [blame] | 8343 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8344 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 8345 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8346 | BTRFS_SHARED_BLOCK_REF_KEY); |
Nikolay Borisov | d4b2073 | 2018-05-21 12:27:23 +0300 | [diff] [blame] | 8347 | btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8348 | } else { |
| 8349 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8350 | BTRFS_TREE_BLOCK_REF_KEY); |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8351 | btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8352 | } |
| 8353 | |
| 8354 | btrfs_mark_buffer_dirty(leaf); |
| 8355 | btrfs_free_path(path); |
| 8356 | |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8357 | ret = remove_from_free_space_tree(trans, extent_key.objectid, |
| 8358 | num_bytes); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8359 | if (ret) |
| 8360 | return ret; |
| 8361 | |
David Sterba | 6b27940 | 2019-03-20 12:10:15 +0100 | [diff] [blame] | 8362 | ret = update_block_group(trans, extent_key.objectid, |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 8363 | fs_info->nodesize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8364 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8365 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8366 | extent_key.objectid, extent_key.offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8367 | BUG(); |
| 8368 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 8369 | |
Nikolay Borisov | 4e6bd4e | 2018-05-21 12:27:21 +0300 | [diff] [blame] | 8370 | trace_btrfs_reserved_extent_alloc(fs_info, extent_key.objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8371 | fs_info->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8372 | return ret; |
| 8373 | } |
| 8374 | |
| 8375 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 8376 | struct btrfs_root *root, u64 owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8377 | u64 offset, u64 ram_bytes, |
| 8378 | struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8379 | { |
| 8380 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 8381 | |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 8382 | BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 8383 | |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 8384 | btrfs_ref_tree_mod(root, ins->objectid, ins->offset, 0, |
| 8385 | root->root_key.objectid, owner, offset, |
| 8386 | BTRFS_ADD_DELAYED_EXTENT); |
| 8387 | |
Nikolay Borisov | 88a979c | 2018-06-20 15:48:54 +0300 | [diff] [blame] | 8388 | ret = btrfs_add_delayed_data_ref(trans, ins->objectid, |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 8389 | ins->offset, 0, |
| 8390 | root->root_key.objectid, owner, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 8391 | offset, ram_bytes, |
| 8392 | BTRFS_ADD_DELAYED_EXTENT, NULL, NULL); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8393 | return ret; |
| 8394 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8395 | |
| 8396 | /* |
| 8397 | * this is used by the tree logging recovery code. It records that |
| 8398 | * an extent has been allocated and makes sure to clear the free |
| 8399 | * space cache bits as well |
| 8400 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8401 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8402 | u64 root_objectid, u64 owner, u64 offset, |
| 8403 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8404 | { |
Nikolay Borisov | 61da2ab | 2018-06-20 15:49:13 +0300 | [diff] [blame] | 8405 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8406 | int ret; |
| 8407 | struct btrfs_block_group_cache *block_group; |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8408 | struct btrfs_space_info *space_info; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8409 | |
| 8410 | /* |
| 8411 | * 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] | 8412 | * need to do the exclude dance if this fs isn't mixed. |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8413 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8414 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8415 | ret = __exclude_logged_extent(fs_info, ins->objectid, |
| 8416 | ins->offset); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8417 | if (ret) |
| 8418 | return ret; |
| 8419 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8420 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8421 | block_group = btrfs_lookup_block_group(fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8422 | if (!block_group) |
| 8423 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8424 | |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8425 | space_info = block_group->space_info; |
| 8426 | spin_lock(&space_info->lock); |
| 8427 | spin_lock(&block_group->lock); |
| 8428 | space_info->bytes_reserved += ins->offset; |
| 8429 | block_group->reserved += ins->offset; |
| 8430 | spin_unlock(&block_group->lock); |
| 8431 | spin_unlock(&space_info->lock); |
| 8432 | |
Nikolay Borisov | ef89b82 | 2018-06-20 15:48:58 +0300 | [diff] [blame] | 8433 | ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner, |
| 8434 | offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 8435 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8436 | return ret; |
| 8437 | } |
| 8438 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 8439 | static struct extent_buffer * |
| 8440 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Nikolay Borisov | bc877d2 | 2018-06-18 14:13:19 +0300 | [diff] [blame] | 8441 | u64 bytenr, int level, u64 owner) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8442 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8443 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8444 | struct extent_buffer *buf; |
| 8445 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8446 | buf = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8447 | if (IS_ERR(buf)) |
| 8448 | return buf; |
| 8449 | |
Qu Wenruo | b72c3ab | 2018-08-21 09:53:47 +0800 | [diff] [blame] | 8450 | /* |
| 8451 | * Extra safety check in case the extent tree is corrupted and extent |
| 8452 | * allocator chooses to use a tree block which is already used and |
| 8453 | * locked. |
| 8454 | */ |
| 8455 | if (buf->lock_owner == current->pid) { |
| 8456 | btrfs_err_rl(fs_info, |
| 8457 | "tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected", |
| 8458 | buf->start, btrfs_header_owner(buf), current->pid); |
| 8459 | free_extent_buffer(buf); |
| 8460 | return ERR_PTR(-EUCLEAN); |
| 8461 | } |
| 8462 | |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 8463 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8464 | btrfs_tree_lock(buf); |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 8465 | btrfs_clean_tree_block(buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 8466 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8467 | |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 8468 | btrfs_set_lock_blocking_write(buf); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 8469 | set_extent_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8470 | |
Nikolay Borisov | bc877d2 | 2018-06-18 14:13:19 +0300 | [diff] [blame] | 8471 | memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header)); |
| 8472 | btrfs_set_header_level(buf, level); |
| 8473 | btrfs_set_header_bytenr(buf, buf->start); |
| 8474 | btrfs_set_header_generation(buf, trans->transid); |
| 8475 | btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV); |
| 8476 | btrfs_set_header_owner(buf, owner); |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 8477 | write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid); |
Nikolay Borisov | bc877d2 | 2018-06-18 14:13:19 +0300 | [diff] [blame] | 8478 | write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8479 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8480 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8481 | /* |
| 8482 | * we allow two log transactions at a time, use different |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 8483 | * EXTENT bit to differentiate dirty pages. |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8484 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8485 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8486 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 8487 | buf->start + buf->len - 1, GFP_NOFS); |
| 8488 | else |
| 8489 | set_extent_new(&root->dirty_log_pages, buf->start, |
David Sterba | 3744dbe | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 8490 | buf->start + buf->len - 1); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8491 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8492 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8493 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 8494 | buf->start + buf->len - 1, GFP_NOFS); |
| 8495 | } |
Jeff Mahoney | 64c1292 | 2016-06-08 00:36:38 -0400 | [diff] [blame] | 8496 | trans->dirty = true; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8497 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8498 | return buf; |
| 8499 | } |
| 8500 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8501 | static struct btrfs_block_rsv * |
| 8502 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 8503 | struct btrfs_root *root, u32 blocksize) |
| 8504 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8505 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8506 | struct btrfs_block_rsv *block_rsv; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8507 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8508 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8509 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8510 | |
| 8511 | block_rsv = get_block_rsv(trans, root); |
| 8512 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8513 | if (unlikely(block_rsv->size == 0)) |
| 8514 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8515 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8516 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 8517 | if (!ret) |
| 8518 | return block_rsv; |
| 8519 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8520 | if (block_rsv->failfast) |
| 8521 | return ERR_PTR(ret); |
| 8522 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8523 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 8524 | global_updated = true; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8525 | update_global_block_rsv(fs_info); |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8526 | goto again; |
| 8527 | } |
| 8528 | |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 8529 | /* |
| 8530 | * The global reserve still exists to save us from ourselves, so don't |
| 8531 | * warn_on if we are short on our delayed refs reserve. |
| 8532 | */ |
| 8533 | if (block_rsv->type != BTRFS_BLOCK_RSV_DELREFS && |
| 8534 | btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8535 | static DEFINE_RATELIMIT_STATE(_rs, |
| 8536 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 8537 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 8538 | if (__ratelimit(&_rs)) |
| 8539 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8540 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8541 | } |
| 8542 | try_reserve: |
| 8543 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 8544 | BTRFS_RESERVE_NO_FLUSH); |
| 8545 | if (!ret) |
| 8546 | return block_rsv; |
| 8547 | /* |
| 8548 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8549 | * the global reserve if its space type is the same as the global |
| 8550 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8551 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8552 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 8553 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8554 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 8555 | if (!ret) |
| 8556 | return global_rsv; |
| 8557 | } |
| 8558 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8559 | } |
| 8560 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8561 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 8562 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8563 | { |
Lu Fengqi | 3a58417 | 2018-08-04 21:10:55 +0800 | [diff] [blame] | 8564 | block_rsv_add_bytes(block_rsv, blocksize, false); |
Qu Wenruo | ff6bc37 | 2017-12-21 13:42:04 +0800 | [diff] [blame] | 8565 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0, NULL); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8566 | } |
| 8567 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8568 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8569 | * 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] | 8570 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8571 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 8572 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 8573 | struct btrfs_root *root, |
| 8574 | u64 parent, u64 root_objectid, |
| 8575 | const struct btrfs_disk_key *key, |
| 8576 | int level, u64 hint, |
| 8577 | u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8578 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8579 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 8580 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8581 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8582 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8583 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8584 | u64 flags = 0; |
| 8585 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8586 | u32 blocksize = fs_info->nodesize; |
| 8587 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8588 | |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8589 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8590 | if (btrfs_is_testing(fs_info)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8591 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
Nikolay Borisov | bc877d2 | 2018-06-18 14:13:19 +0300 | [diff] [blame] | 8592 | level, root_objectid); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8593 | if (!IS_ERR(buf)) |
| 8594 | root->alloc_bytenr += blocksize; |
| 8595 | return buf; |
| 8596 | } |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8597 | #endif |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 8598 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8599 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 8600 | if (IS_ERR(block_rsv)) |
| 8601 | return ERR_CAST(block_rsv); |
| 8602 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8603 | ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8604 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8605 | if (ret) |
| 8606 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 8607 | |
Nikolay Borisov | bc877d2 | 2018-06-18 14:13:19 +0300 | [diff] [blame] | 8608 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level, |
| 8609 | root_objectid); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8610 | if (IS_ERR(buf)) { |
| 8611 | ret = PTR_ERR(buf); |
| 8612 | goto out_free_reserved; |
| 8613 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8614 | |
| 8615 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 8616 | if (parent == 0) |
| 8617 | parent = ins.objectid; |
| 8618 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8619 | } else |
| 8620 | BUG_ON(parent > 0); |
| 8621 | |
| 8622 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 8623 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8624 | if (!extent_op) { |
| 8625 | ret = -ENOMEM; |
| 8626 | goto out_free_buf; |
| 8627 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8628 | if (key) |
| 8629 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 8630 | else |
| 8631 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 8632 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 8633 | extent_op->update_key = skinny_metadata ? false : true; |
| 8634 | extent_op->update_flags = true; |
| 8635 | extent_op->is_data = false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8636 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8637 | |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 8638 | btrfs_ref_tree_mod(root, ins.objectid, ins.offset, parent, |
| 8639 | root_objectid, level, 0, |
| 8640 | BTRFS_ADD_DELAYED_EXTENT); |
Nikolay Borisov | 44e1c47 | 2018-06-20 15:48:53 +0300 | [diff] [blame] | 8641 | ret = btrfs_add_delayed_tree_ref(trans, ins.objectid, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 8642 | ins.offset, parent, |
| 8643 | root_objectid, level, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8644 | BTRFS_ADD_DELAYED_EXTENT, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame] | 8645 | extent_op, NULL, NULL); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8646 | if (ret) |
| 8647 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8648 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8649 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8650 | |
| 8651 | out_free_delayed: |
| 8652 | btrfs_free_delayed_extent_op(extent_op); |
| 8653 | out_free_buf: |
| 8654 | free_extent_buffer(buf); |
| 8655 | out_free_reserved: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8656 | btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8657 | out_unuse: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8658 | unuse_block_rsv(fs_info, block_rsv, blocksize); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8659 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8660 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 8661 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8662 | struct walk_control { |
| 8663 | u64 refs[BTRFS_MAX_LEVEL]; |
| 8664 | u64 flags[BTRFS_MAX_LEVEL]; |
| 8665 | struct btrfs_key update_progress; |
Josef Bacik | aea6f02 | 2019-02-06 15:46:15 -0500 | [diff] [blame] | 8666 | struct btrfs_key drop_progress; |
| 8667 | int drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8668 | int stage; |
| 8669 | int level; |
| 8670 | int shared_level; |
| 8671 | int update_ref; |
| 8672 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8673 | int reada_slot; |
| 8674 | int reada_count; |
Josef Bacik | 78c52d9 | 2019-02-06 15:46:14 -0500 | [diff] [blame] | 8675 | int restarted; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8676 | }; |
| 8677 | |
| 8678 | #define DROP_REFERENCE 1 |
| 8679 | #define UPDATE_BACKREF 2 |
| 8680 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8681 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 8682 | struct btrfs_root *root, |
| 8683 | struct walk_control *wc, |
| 8684 | struct btrfs_path *path) |
| 8685 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8686 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8687 | u64 bytenr; |
| 8688 | u64 generation; |
| 8689 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8690 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8691 | u32 nritems; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8692 | struct btrfs_key key; |
| 8693 | struct extent_buffer *eb; |
| 8694 | int ret; |
| 8695 | int slot; |
| 8696 | int nread = 0; |
| 8697 | |
| 8698 | if (path->slots[wc->level] < wc->reada_slot) { |
| 8699 | wc->reada_count = wc->reada_count * 2 / 3; |
| 8700 | wc->reada_count = max(wc->reada_count, 2); |
| 8701 | } else { |
| 8702 | wc->reada_count = wc->reada_count * 3 / 2; |
| 8703 | wc->reada_count = min_t(int, wc->reada_count, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8704 | BTRFS_NODEPTRS_PER_BLOCK(fs_info)); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8705 | } |
| 8706 | |
| 8707 | eb = path->nodes[wc->level]; |
| 8708 | nritems = btrfs_header_nritems(eb); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8709 | |
| 8710 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 8711 | if (nread >= wc->reada_count) |
| 8712 | break; |
| 8713 | |
| 8714 | cond_resched(); |
| 8715 | bytenr = btrfs_node_blockptr(eb, slot); |
| 8716 | generation = btrfs_node_ptr_generation(eb, slot); |
| 8717 | |
| 8718 | if (slot == path->slots[wc->level]) |
| 8719 | goto reada; |
| 8720 | |
| 8721 | if (wc->stage == UPDATE_BACKREF && |
| 8722 | generation <= root->root_key.offset) |
| 8723 | continue; |
| 8724 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8725 | /* We don't lock the tree block, it's OK to be racy here */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8726 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8727 | wc->level - 1, 1, &refs, |
| 8728 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8729 | /* We don't care about errors in readahead. */ |
| 8730 | if (ret < 0) |
| 8731 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8732 | BUG_ON(refs == 0); |
| 8733 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8734 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8735 | if (refs == 1) |
| 8736 | goto reada; |
| 8737 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8738 | if (wc->level == 1 && |
| 8739 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8740 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8741 | if (!wc->update_ref || |
| 8742 | generation <= root->root_key.offset) |
| 8743 | continue; |
| 8744 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 8745 | ret = btrfs_comp_cpu_keys(&key, |
| 8746 | &wc->update_progress); |
| 8747 | if (ret < 0) |
| 8748 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8749 | } else { |
| 8750 | if (wc->level == 1 && |
| 8751 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8752 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8753 | } |
| 8754 | reada: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8755 | readahead_tree_block(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8756 | nread++; |
| 8757 | } |
| 8758 | wc->reada_slot = slot; |
| 8759 | } |
| 8760 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8761 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8762 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8763 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8764 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 8765 | * back refs for pointers in the block. |
| 8766 | * |
| 8767 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8768 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8769 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 8770 | struct btrfs_root *root, |
| 8771 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8772 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8773 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8774 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8775 | int level = wc->level; |
| 8776 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8777 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8778 | int ret; |
| 8779 | |
| 8780 | if (wc->stage == UPDATE_BACKREF && |
| 8781 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8782 | return 1; |
| 8783 | |
| 8784 | /* |
| 8785 | * when reference count of tree block is 1, it won't increase |
| 8786 | * again. once full backref flag is set, we never clear it. |
| 8787 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8788 | if (lookup_info && |
| 8789 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8790 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8791 | BUG_ON(!path->locks[level]); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8792 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8793 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8794 | &wc->refs[level], |
| 8795 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8796 | BUG_ON(ret == -ENOMEM); |
| 8797 | if (ret) |
| 8798 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8799 | BUG_ON(wc->refs[level] == 0); |
| 8800 | } |
| 8801 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8802 | if (wc->stage == DROP_REFERENCE) { |
| 8803 | if (wc->refs[level] > 1) |
| 8804 | return 1; |
| 8805 | |
| 8806 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8807 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8808 | path->locks[level] = 0; |
| 8809 | } |
| 8810 | return 0; |
| 8811 | } |
| 8812 | |
| 8813 | /* wc->stage == UPDATE_BACKREF */ |
| 8814 | if (!(wc->flags[level] & flag)) { |
| 8815 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8816 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8817 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8818 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8819 | BUG_ON(ret); /* -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8820 | ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8821 | eb->len, flag, |
| 8822 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8823 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8824 | wc->flags[level] |= flag; |
| 8825 | } |
| 8826 | |
| 8827 | /* |
| 8828 | * the block is shared by multiple trees, so it's not good to |
| 8829 | * keep the tree lock |
| 8830 | */ |
| 8831 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8832 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8833 | path->locks[level] = 0; |
| 8834 | } |
| 8835 | return 0; |
| 8836 | } |
| 8837 | |
| 8838 | /* |
Josef Bacik | 78c52d9 | 2019-02-06 15:46:14 -0500 | [diff] [blame] | 8839 | * This is used to verify a ref exists for this root to deal with a bug where we |
| 8840 | * would have a drop_progress key that hadn't been updated properly. |
| 8841 | */ |
| 8842 | static int check_ref_exists(struct btrfs_trans_handle *trans, |
| 8843 | struct btrfs_root *root, u64 bytenr, u64 parent, |
| 8844 | int level) |
| 8845 | { |
| 8846 | struct btrfs_path *path; |
| 8847 | struct btrfs_extent_inline_ref *iref; |
| 8848 | int ret; |
| 8849 | |
| 8850 | path = btrfs_alloc_path(); |
| 8851 | if (!path) |
| 8852 | return -ENOMEM; |
| 8853 | |
| 8854 | ret = lookup_extent_backref(trans, path, &iref, bytenr, |
| 8855 | root->fs_info->nodesize, parent, |
| 8856 | root->root_key.objectid, level, 0); |
| 8857 | btrfs_free_path(path); |
| 8858 | if (ret == -ENOENT) |
| 8859 | return 0; |
| 8860 | if (ret < 0) |
| 8861 | return ret; |
| 8862 | return 1; |
| 8863 | } |
| 8864 | |
| 8865 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8866 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8867 | * |
| 8868 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8869 | * reference count of the block pointed to. if the block |
| 8870 | * is shared and we need update back refs for the subtree |
| 8871 | * rooted at the block, this function changes wc->stage to |
| 8872 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8873 | * need to update back, this function drops the reference |
| 8874 | * to the block. |
| 8875 | * |
| 8876 | * NOTE: return value 1 means we should stop walking down. |
| 8877 | */ |
| 8878 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8879 | struct btrfs_root *root, |
| 8880 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8881 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8882 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8883 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8884 | u64 bytenr; |
| 8885 | u64 generation; |
| 8886 | u64 parent; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8887 | struct btrfs_key key; |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 8888 | struct btrfs_key first_key; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8889 | struct extent_buffer *next; |
| 8890 | int level = wc->level; |
| 8891 | int reada = 0; |
| 8892 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8893 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8894 | |
| 8895 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8896 | path->slots[level]); |
| 8897 | /* |
| 8898 | * if the lower level block was created before the snapshot |
| 8899 | * was created, we know there is no need to update back refs |
| 8900 | * for the subtree |
| 8901 | */ |
| 8902 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8903 | generation <= root->root_key.offset) { |
| 8904 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8905 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8906 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8907 | |
| 8908 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 8909 | btrfs_node_key_to_cpu(path->nodes[level], &first_key, |
| 8910 | path->slots[level]); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8911 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8912 | next = find_extent_buffer(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8913 | if (!next) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8914 | next = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8915 | if (IS_ERR(next)) |
| 8916 | return PTR_ERR(next); |
| 8917 | |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8918 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8919 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8920 | reada = 1; |
| 8921 | } |
| 8922 | btrfs_tree_lock(next); |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 8923 | btrfs_set_lock_blocking_write(next); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8924 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8925 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8926 | &wc->refs[level - 1], |
| 8927 | &wc->flags[level - 1]); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8928 | if (ret < 0) |
| 8929 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8930 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8931 | if (unlikely(wc->refs[level - 1] == 0)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8932 | btrfs_err(fs_info, "Missing references."); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8933 | ret = -EIO; |
| 8934 | goto out_unlock; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8935 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8936 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8937 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8938 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8939 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8940 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8941 | if (level == 1 && |
| 8942 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8943 | goto skip; |
| 8944 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8945 | if (!wc->update_ref || |
| 8946 | generation <= root->root_key.offset) |
| 8947 | goto skip; |
| 8948 | |
| 8949 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8950 | path->slots[level]); |
| 8951 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8952 | if (ret < 0) |
| 8953 | goto skip; |
| 8954 | |
| 8955 | wc->stage = UPDATE_BACKREF; |
| 8956 | wc->shared_level = level - 1; |
| 8957 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8958 | } else { |
| 8959 | if (level == 1 && |
| 8960 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8961 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8962 | } |
| 8963 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8964 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8965 | btrfs_tree_unlock(next); |
| 8966 | free_extent_buffer(next); |
| 8967 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8968 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8969 | } |
| 8970 | |
| 8971 | if (!next) { |
| 8972 | if (reada && level == 1) |
| 8973 | reada_walk_down(trans, root, wc, path); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 8974 | next = read_tree_block(fs_info, bytenr, generation, level - 1, |
| 8975 | &first_key); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8976 | if (IS_ERR(next)) { |
| 8977 | return PTR_ERR(next); |
| 8978 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8979 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8980 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8981 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8982 | btrfs_tree_lock(next); |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 8983 | btrfs_set_lock_blocking_write(next); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8984 | } |
| 8985 | |
| 8986 | level--; |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8987 | ASSERT(level == btrfs_header_level(next)); |
| 8988 | if (level != btrfs_header_level(next)) { |
| 8989 | btrfs_err(root->fs_info, "mismatched level"); |
| 8990 | ret = -EIO; |
| 8991 | goto out_unlock; |
| 8992 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8993 | path->nodes[level] = next; |
| 8994 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8995 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8996 | wc->level = level; |
| 8997 | if (wc->level == 1) |
| 8998 | wc->reada_slot = 0; |
| 8999 | return 0; |
| 9000 | skip: |
| 9001 | wc->refs[level - 1] = 0; |
| 9002 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9003 | if (wc->stage == DROP_REFERENCE) { |
| 9004 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 9005 | parent = path->nodes[level]->start; |
| 9006 | } else { |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 9007 | ASSERT(root->root_key.objectid == |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9008 | btrfs_header_owner(path->nodes[level])); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 9009 | if (root->root_key.objectid != |
| 9010 | btrfs_header_owner(path->nodes[level])) { |
| 9011 | btrfs_err(root->fs_info, |
| 9012 | "mismatched block owner"); |
| 9013 | ret = -EIO; |
| 9014 | goto out_unlock; |
| 9015 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9016 | parent = 0; |
| 9017 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9018 | |
Qu Wenruo | 2cd86d3 | 2018-09-27 14:42:33 +0800 | [diff] [blame] | 9019 | /* |
Josef Bacik | 78c52d9 | 2019-02-06 15:46:14 -0500 | [diff] [blame] | 9020 | * If we had a drop_progress we need to verify the refs are set |
| 9021 | * as expected. If we find our ref then we know that from here |
| 9022 | * on out everything should be correct, and we can clear the |
| 9023 | * ->restarted flag. |
| 9024 | */ |
| 9025 | if (wc->restarted) { |
| 9026 | ret = check_ref_exists(trans, root, bytenr, parent, |
| 9027 | level - 1); |
| 9028 | if (ret < 0) |
| 9029 | goto out_unlock; |
| 9030 | if (ret == 0) |
| 9031 | goto no_delete; |
| 9032 | ret = 0; |
| 9033 | wc->restarted = 0; |
| 9034 | } |
| 9035 | |
| 9036 | /* |
Qu Wenruo | 2cd86d3 | 2018-09-27 14:42:33 +0800 | [diff] [blame] | 9037 | * Reloc tree doesn't contribute to qgroup numbers, and we have |
| 9038 | * already accounted them at merge time (replace_path), |
| 9039 | * thus we could skip expensive subtree trace here. |
| 9040 | */ |
| 9041 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID && |
| 9042 | need_account) { |
Lu Fengqi | deb4062 | 2018-07-18 14:45:38 +0800 | [diff] [blame] | 9043 | ret = btrfs_qgroup_trace_subtree(trans, next, |
Qu Wenruo | 33d1f05 | 2016-10-18 09:31:28 +0800 | [diff] [blame] | 9044 | generation, level - 1); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9045 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9046 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 9047 | "Error %d accounting shared subtree. Quota is out of sync, rescan required.", |
| 9048 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9049 | } |
| 9050 | } |
Josef Bacik | aea6f02 | 2019-02-06 15:46:15 -0500 | [diff] [blame] | 9051 | |
| 9052 | /* |
| 9053 | * We need to update the next key in our walk control so we can |
| 9054 | * update the drop_progress key accordingly. We don't care if |
| 9055 | * find_next_key doesn't find a key because that means we're at |
| 9056 | * the end and are going to clean up now. |
| 9057 | */ |
| 9058 | wc->drop_level = level; |
| 9059 | find_next_key(path, level, &wc->drop_progress); |
| 9060 | |
Qu Wenruo | 01e0da4 | 2018-12-10 15:01:03 +0800 | [diff] [blame] | 9061 | ret = btrfs_free_extent(trans, root, bytenr, fs_info->nodesize, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9062 | parent, root->root_key.objectid, |
| 9063 | level - 1, 0); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 9064 | if (ret) |
| 9065 | goto out_unlock; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9066 | } |
Josef Bacik | 78c52d9 | 2019-02-06 15:46:14 -0500 | [diff] [blame] | 9067 | no_delete: |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 9068 | *lookup_info = 1; |
| 9069 | ret = 1; |
| 9070 | |
| 9071 | out_unlock: |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9072 | btrfs_tree_unlock(next); |
| 9073 | free_extent_buffer(next); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 9074 | |
| 9075 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9076 | } |
| 9077 | |
| 9078 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 9079 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9080 | * |
| 9081 | * when wc->stage == DROP_REFERENCE, this function drops |
| 9082 | * reference count on the block. |
| 9083 | * |
| 9084 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 9085 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 9086 | * to UPDATE_BACKREF previously while processing the block. |
| 9087 | * |
| 9088 | * NOTE: return value 1 means we should stop walking up. |
| 9089 | */ |
| 9090 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 9091 | struct btrfs_root *root, |
| 9092 | struct btrfs_path *path, |
| 9093 | struct walk_control *wc) |
| 9094 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9095 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9096 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9097 | int level = wc->level; |
| 9098 | struct extent_buffer *eb = path->nodes[level]; |
| 9099 | u64 parent = 0; |
| 9100 | |
| 9101 | if (wc->stage == UPDATE_BACKREF) { |
| 9102 | BUG_ON(wc->shared_level < level); |
| 9103 | if (level < wc->shared_level) |
| 9104 | goto out; |
| 9105 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9106 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 9107 | if (ret > 0) |
| 9108 | wc->update_ref = 0; |
| 9109 | |
| 9110 | wc->stage = DROP_REFERENCE; |
| 9111 | wc->shared_level = -1; |
| 9112 | path->slots[level] = 0; |
| 9113 | |
| 9114 | /* |
| 9115 | * check reference count again if the block isn't locked. |
| 9116 | * we should start walking down the tree again if reference |
| 9117 | * count is one. |
| 9118 | */ |
| 9119 | if (!path->locks[level]) { |
| 9120 | BUG_ON(level == 0); |
| 9121 | btrfs_tree_lock(eb); |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 9122 | btrfs_set_lock_blocking_write(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9123 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9124 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9125 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9126 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9127 | &wc->refs[level], |
| 9128 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9129 | if (ret < 0) { |
| 9130 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 9131 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9132 | return ret; |
| 9133 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9134 | BUG_ON(wc->refs[level] == 0); |
| 9135 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9136 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 9137 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9138 | return 1; |
| 9139 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9140 | } |
| 9141 | } |
| 9142 | |
| 9143 | /* wc->stage == DROP_REFERENCE */ |
| 9144 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 9145 | |
| 9146 | if (wc->refs[level] == 1) { |
| 9147 | if (level == 0) { |
| 9148 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 9149 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9150 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 9151 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9152 | BUG_ON(ret); /* -ENOMEM */ |
Lu Fengqi | 8d38d7e | 2018-07-18 14:45:37 +0800 | [diff] [blame] | 9153 | ret = btrfs_qgroup_trace_leaf_items(trans, eb); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9154 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9155 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 9156 | "error %d accounting leaf items. Quota is out of sync, rescan required.", |
| 9157 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9158 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9159 | } |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 9160 | /* make block locked assertion in btrfs_clean_tree_block happy */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9161 | if (!path->locks[level] && |
| 9162 | btrfs_header_generation(eb) == trans->transid) { |
| 9163 | btrfs_tree_lock(eb); |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 9164 | btrfs_set_lock_blocking_write(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9165 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9166 | } |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 9167 | btrfs_clean_tree_block(eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9168 | } |
| 9169 | |
| 9170 | if (eb == root->node) { |
| 9171 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 9172 | parent = eb->start; |
Qu Wenruo | 65c6e82 | 2018-08-21 09:42:03 +0800 | [diff] [blame] | 9173 | else if (root->root_key.objectid != btrfs_header_owner(eb)) |
| 9174 | goto owner_mismatch; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9175 | } else { |
| 9176 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 9177 | parent = path->nodes[level + 1]->start; |
Qu Wenruo | 65c6e82 | 2018-08-21 09:42:03 +0800 | [diff] [blame] | 9178 | else if (root->root_key.objectid != |
| 9179 | btrfs_header_owner(path->nodes[level + 1])) |
| 9180 | goto owner_mismatch; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9181 | } |
| 9182 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 9183 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9184 | out: |
| 9185 | wc->refs[level] = 0; |
| 9186 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9187 | return 0; |
Qu Wenruo | 65c6e82 | 2018-08-21 09:42:03 +0800 | [diff] [blame] | 9188 | |
| 9189 | owner_mismatch: |
| 9190 | btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu", |
| 9191 | btrfs_header_owner(eb), root->root_key.objectid); |
| 9192 | return -EUCLEAN; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9193 | } |
| 9194 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9195 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 9196 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9197 | struct btrfs_path *path, |
| 9198 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9199 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9200 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9201 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9202 | int ret; |
| 9203 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9204 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9205 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9206 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9207 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9208 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9209 | if (level == 0) |
| 9210 | break; |
| 9211 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 9212 | if (path->slots[level] >= |
| 9213 | btrfs_header_nritems(path->nodes[level])) |
| 9214 | break; |
| 9215 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 9216 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9217 | if (ret > 0) { |
| 9218 | path->slots[level]++; |
| 9219 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 9220 | } else if (ret < 0) |
| 9221 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9222 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9223 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9224 | return 0; |
| 9225 | } |
| 9226 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9227 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 9228 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9229 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9230 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9231 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9232 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9233 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9234 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9235 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 9236 | while (level < max_level && path->nodes[level]) { |
| 9237 | wc->level = level; |
| 9238 | if (path->slots[level] + 1 < |
| 9239 | btrfs_header_nritems(path->nodes[level])) { |
| 9240 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9241 | return 0; |
| 9242 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9243 | ret = walk_up_proc(trans, root, path, wc); |
| 9244 | if (ret > 0) |
| 9245 | return 0; |
Qu Wenruo | 65c6e82 | 2018-08-21 09:42:03 +0800 | [diff] [blame] | 9246 | if (ret < 0) |
| 9247 | return ret; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 9248 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9249 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9250 | btrfs_tree_unlock_rw(path->nodes[level], |
| 9251 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9252 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9253 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9254 | free_extent_buffer(path->nodes[level]); |
| 9255 | path->nodes[level] = NULL; |
| 9256 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9257 | } |
| 9258 | } |
| 9259 | return 1; |
| 9260 | } |
| 9261 | |
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 | * drop a subvolume tree. |
| 9264 | * |
| 9265 | * this function traverses the tree freeing any blocks that only |
| 9266 | * referenced by the tree. |
| 9267 | * |
| 9268 | * when a shared tree block is found. this function decreases its |
| 9269 | * reference count by one. if update_ref is true, this function |
| 9270 | * also make sure backrefs for the shared block and all lower level |
| 9271 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9272 | * |
| 9273 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9274 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9275 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9276 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 9277 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9278 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9279 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9280 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9281 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9282 | struct btrfs_root *tree_root = fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9283 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9284 | struct walk_control *wc; |
| 9285 | struct btrfs_key key; |
| 9286 | int err = 0; |
| 9287 | int ret; |
| 9288 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9289 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9290 | |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 9291 | btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9292 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9293 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9294 | if (!path) { |
| 9295 | err = -ENOMEM; |
| 9296 | goto out; |
| 9297 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9298 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9299 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9300 | if (!wc) { |
| 9301 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9302 | err = -ENOMEM; |
| 9303 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9304 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9305 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9306 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9307 | if (IS_ERR(trans)) { |
| 9308 | err = PTR_ERR(trans); |
| 9309 | goto out_free; |
| 9310 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 9311 | |
Josef Bacik | 0568e82 | 2018-11-30 11:52:14 -0500 | [diff] [blame] | 9312 | err = btrfs_run_delayed_items(trans); |
| 9313 | if (err) |
| 9314 | goto out_end_trans; |
| 9315 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9316 | if (block_rsv) |
| 9317 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9318 | |
Josef Bacik | 83354f0 | 2018-11-30 11:52:13 -0500 | [diff] [blame] | 9319 | /* |
| 9320 | * This will help us catch people modifying the fs tree while we're |
| 9321 | * dropping it. It is unsafe to mess with the fs tree while it's being |
| 9322 | * dropped as we unlock the root node and parent nodes as we walk down |
| 9323 | * the tree, assuming nothing will change. If something does change |
| 9324 | * then we'll have stale information and drop references to blocks we've |
| 9325 | * already dropped. |
| 9326 | */ |
| 9327 | set_bit(BTRFS_ROOT_DELETING, &root->state); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9328 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9329 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9330 | path->nodes[level] = btrfs_lock_root_node(root); |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 9331 | btrfs_set_lock_blocking_write(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9332 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9333 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9334 | memset(&wc->update_progress, 0, |
| 9335 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9336 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9337 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9338 | memcpy(&wc->update_progress, &key, |
| 9339 | sizeof(wc->update_progress)); |
| 9340 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9341 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9342 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9343 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9344 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 9345 | path->lowest_level = 0; |
| 9346 | if (ret < 0) { |
| 9347 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9348 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9349 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9350 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9351 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9352 | /* |
| 9353 | * unlock our path, this is safe because only this |
| 9354 | * function is allowed to delete this snapshot |
| 9355 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9356 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9357 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9358 | level = btrfs_header_level(root->node); |
| 9359 | while (1) { |
| 9360 | btrfs_tree_lock(path->nodes[level]); |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 9361 | btrfs_set_lock_blocking_write(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9362 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9363 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9364 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9365 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9366 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9367 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9368 | if (ret < 0) { |
| 9369 | err = ret; |
| 9370 | goto out_end_trans; |
| 9371 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9372 | BUG_ON(wc->refs[level] == 0); |
| 9373 | |
| 9374 | if (level == root_item->drop_level) |
| 9375 | break; |
| 9376 | |
| 9377 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9378 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9379 | WARN_ON(wc->refs[level] != 1); |
| 9380 | level--; |
| 9381 | } |
| 9382 | } |
| 9383 | |
Josef Bacik | 78c52d9 | 2019-02-06 15:46:14 -0500 | [diff] [blame] | 9384 | wc->restarted = test_bit(BTRFS_ROOT_DEAD_TREE, &root->state); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9385 | wc->level = level; |
| 9386 | wc->shared_level = -1; |
| 9387 | wc->stage = DROP_REFERENCE; |
| 9388 | wc->update_ref = update_ref; |
| 9389 | wc->keep_locks = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9390 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9391 | |
| 9392 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9393 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9394 | ret = walk_down_tree(trans, root, path, wc); |
| 9395 | if (ret < 0) { |
| 9396 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 9397 | break; |
| 9398 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9399 | |
| 9400 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 9401 | if (ret < 0) { |
| 9402 | err = ret; |
| 9403 | break; |
| 9404 | } |
| 9405 | |
| 9406 | if (ret > 0) { |
| 9407 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 9408 | break; |
| 9409 | } |
| 9410 | |
| 9411 | if (wc->stage == DROP_REFERENCE) { |
Josef Bacik | aea6f02 | 2019-02-06 15:46:15 -0500 | [diff] [blame] | 9412 | wc->drop_level = wc->level; |
| 9413 | btrfs_node_key_to_cpu(path->nodes[wc->drop_level], |
| 9414 | &wc->drop_progress, |
| 9415 | path->slots[wc->drop_level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9416 | } |
Josef Bacik | aea6f02 | 2019-02-06 15:46:15 -0500 | [diff] [blame] | 9417 | btrfs_cpu_key_to_disk(&root_item->drop_progress, |
| 9418 | &wc->drop_progress); |
| 9419 | root_item->drop_level = wc->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9420 | |
| 9421 | BUG_ON(wc->level == 0); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9422 | if (btrfs_should_end_transaction(trans) || |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9423 | (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9424 | ret = btrfs_update_root(trans, tree_root, |
| 9425 | &root->root_key, |
| 9426 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9427 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9428 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9429 | err = ret; |
| 9430 | goto out_end_trans; |
| 9431 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9432 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9433 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9434 | if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9435 | btrfs_debug(fs_info, |
| 9436 | "drop snapshot early exit"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9437 | err = -EAGAIN; |
| 9438 | goto out_free; |
| 9439 | } |
| 9440 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9441 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9442 | if (IS_ERR(trans)) { |
| 9443 | err = PTR_ERR(trans); |
| 9444 | goto out_free; |
| 9445 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9446 | if (block_rsv) |
| 9447 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 9448 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9449 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9450 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9451 | if (err) |
| 9452 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9453 | |
Lu Fengqi | ab9ce7d | 2018-08-01 11:32:27 +0800 | [diff] [blame] | 9454 | ret = btrfs_del_root(trans, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9455 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9456 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | e19182c | 2017-12-04 13:11:45 -0500 | [diff] [blame] | 9457 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9458 | goto out_end_trans; |
| 9459 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9460 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9461 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 9462 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 9463 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9464 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9465 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9466 | err = ret; |
| 9467 | goto out_end_trans; |
| 9468 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 9469 | /* if we fail to delete the orphan item this time |
| 9470 | * around, it'll get picked up the next time. |
| 9471 | * |
| 9472 | * The most common failure here is just -ENOENT. |
| 9473 | */ |
| 9474 | btrfs_del_orphan_item(trans, tree_root, |
| 9475 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9476 | } |
| 9477 | } |
| 9478 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 9479 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Josef Bacik | 2b9dbef | 2015-09-15 10:07:04 -0400 | [diff] [blame] | 9480 | btrfs_add_dropped_root(trans, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9481 | } else { |
| 9482 | free_extent_buffer(root->node); |
| 9483 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 9484 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9485 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9486 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9487 | out_end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9488 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9489 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9490 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9491 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9492 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9493 | /* |
| 9494 | * So if we need to stop dropping the snapshot for whatever reason we |
| 9495 | * need to make sure to add it back to the dead root list so that we |
| 9496 | * keep trying to do the work later. This also cleans up roots if we |
| 9497 | * don't have it in the radix (like when we recover after a power fail |
| 9498 | * or unmount) so we don't leak memory. |
| 9499 | */ |
Thomas Meyer | 897ca81 | 2017-10-07 16:02:21 +0200 | [diff] [blame] | 9500 | if (!for_reloc && !root_dropped) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9501 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 9502 | if (err && err != -EAGAIN) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9503 | btrfs_handle_fs_error(fs_info, err, NULL); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9504 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9505 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9506 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9507 | /* |
| 9508 | * drop subtree rooted at tree block 'node'. |
| 9509 | * |
| 9510 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9511 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9512 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9513 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 9514 | struct btrfs_root *root, |
| 9515 | struct extent_buffer *node, |
| 9516 | struct extent_buffer *parent) |
| 9517 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9518 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9519 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9520 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9521 | int level; |
| 9522 | int parent_level; |
| 9523 | int ret = 0; |
| 9524 | int wret; |
| 9525 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9526 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 9527 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9528 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9529 | if (!path) |
| 9530 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9531 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9532 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9533 | if (!wc) { |
| 9534 | btrfs_free_path(path); |
| 9535 | return -ENOMEM; |
| 9536 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9537 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9538 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9539 | parent_level = btrfs_header_level(parent); |
| 9540 | extent_buffer_get(parent); |
| 9541 | path->nodes[parent_level] = parent; |
| 9542 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 9543 | |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9544 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9545 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9546 | path->nodes[level] = node; |
| 9547 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9548 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9549 | |
| 9550 | wc->refs[parent_level] = 1; |
| 9551 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 9552 | wc->level = level; |
| 9553 | wc->shared_level = -1; |
| 9554 | wc->stage = DROP_REFERENCE; |
| 9555 | wc->update_ref = 0; |
| 9556 | wc->keep_locks = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9557 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9558 | |
| 9559 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9560 | wret = walk_down_tree(trans, root, path, wc); |
| 9561 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9562 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9563 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9564 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9565 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9566 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9567 | if (wret < 0) |
| 9568 | ret = wret; |
| 9569 | if (wret != 0) |
| 9570 | break; |
| 9571 | } |
| 9572 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9573 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9574 | btrfs_free_path(path); |
| 9575 | return ret; |
| 9576 | } |
| 9577 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9578 | static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9579 | { |
| 9580 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9581 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9582 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9583 | /* |
| 9584 | * if restripe for this chunk_type is on pick target profile and |
| 9585 | * return, otherwise do the usual balance |
| 9586 | */ |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9587 | stripped = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9588 | if (stripped) |
| 9589 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 9590 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9591 | num_devices = fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 9592 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9593 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9594 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9595 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 9596 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9597 | if (num_devices == 1) { |
| 9598 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9599 | stripped = flags & ~stripped; |
| 9600 | |
| 9601 | /* turn raid0 into single device chunks */ |
| 9602 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 9603 | return stripped; |
| 9604 | |
| 9605 | /* turn mirroring into duplication */ |
| 9606 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9607 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9608 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9609 | } else { |
| 9610 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9611 | if (flags & stripped) |
| 9612 | return flags; |
| 9613 | |
| 9614 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9615 | stripped = flags & ~stripped; |
| 9616 | |
| 9617 | /* switch duplicated blocks with raid1 */ |
| 9618 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 9619 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 9620 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9621 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9622 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9623 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9624 | return flags; |
| 9625 | } |
| 9626 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9627 | 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] | 9628 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9629 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9630 | u64 num_bytes; |
Qu Wenruo | 3ece54e | 2019-01-30 13:07:51 +0800 | [diff] [blame] | 9631 | u64 sinfo_used; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9632 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9633 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9634 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9635 | /* |
| 9636 | * We need some metadata space and system metadata space for |
| 9637 | * allocating chunks in some corner cases until we force to set |
| 9638 | * it to be readonly. |
| 9639 | */ |
| 9640 | if ((sinfo->flags & |
| 9641 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 9642 | !force) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 9643 | min_allocable_bytes = SZ_1M; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9644 | else |
| 9645 | min_allocable_bytes = 0; |
| 9646 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9647 | spin_lock(&sinfo->lock); |
| 9648 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9649 | |
| 9650 | if (cache->ro) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9651 | cache->ro++; |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9652 | ret = 0; |
| 9653 | goto out; |
| 9654 | } |
| 9655 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9656 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 9657 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Qu Wenruo | 3ece54e | 2019-01-30 13:07:51 +0800 | [diff] [blame] | 9658 | sinfo_used = btrfs_space_info_used(sinfo, true); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9659 | |
Qu Wenruo | 3ece54e | 2019-01-30 13:07:51 +0800 | [diff] [blame] | 9660 | if (sinfo_used + num_bytes + min_allocable_bytes <= |
| 9661 | sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9662 | sinfo->bytes_readonly += num_bytes; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9663 | cache->ro++; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9664 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9665 | ret = 0; |
| 9666 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9667 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9668 | spin_unlock(&cache->lock); |
| 9669 | spin_unlock(&sinfo->lock); |
Qu Wenruo | 3ece54e | 2019-01-30 13:07:51 +0800 | [diff] [blame] | 9670 | if (ret == -ENOSPC && btrfs_test_opt(cache->fs_info, ENOSPC_DEBUG)) { |
| 9671 | btrfs_info(cache->fs_info, |
| 9672 | "unable to make block group %llu ro", |
| 9673 | cache->key.objectid); |
| 9674 | btrfs_info(cache->fs_info, |
| 9675 | "sinfo_used=%llu bg_num_bytes=%llu min_allocable=%llu", |
| 9676 | sinfo_used, num_bytes, min_allocable_bytes); |
| 9677 | dump_space_info(cache->fs_info, cache->space_info, 0, 0); |
| 9678 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9679 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9680 | } |
| 9681 | |
Nikolay Borisov | c83488a | 2018-06-20 15:49:14 +0300 | [diff] [blame] | 9682 | int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9683 | |
| 9684 | { |
Nikolay Borisov | c83488a | 2018-06-20 15:49:14 +0300 | [diff] [blame] | 9685 | struct btrfs_fs_info *fs_info = cache->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9686 | struct btrfs_trans_handle *trans; |
| 9687 | u64 alloc_flags; |
| 9688 | int ret; |
| 9689 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9690 | again: |
Jeff Mahoney | 5e00f19 | 2017-02-15 16:28:29 -0500 | [diff] [blame] | 9691 | trans = btrfs_join_transaction(fs_info->extent_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9692 | if (IS_ERR(trans)) |
| 9693 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9694 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9695 | /* |
| 9696 | * we're not allowed to set block groups readonly after the dirty |
| 9697 | * block groups cache has started writing. If it already started, |
| 9698 | * back off and let this transaction commit |
| 9699 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9700 | mutex_lock(&fs_info->ro_block_group_mutex); |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 9701 | if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9702 | u64 transid = trans->transid; |
| 9703 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9704 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9705 | btrfs_end_transaction(trans); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9706 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9707 | ret = btrfs_wait_for_commit(fs_info, transid); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9708 | if (ret) |
| 9709 | return ret; |
| 9710 | goto again; |
| 9711 | } |
| 9712 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9713 | /* |
| 9714 | * if we are changing raid levels, try to allocate a corresponding |
| 9715 | * block group with the new raid level. |
| 9716 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9717 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9718 | if (alloc_flags != cache->flags) { |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 9719 | ret = do_chunk_alloc(trans, alloc_flags, |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9720 | CHUNK_ALLOC_FORCE); |
| 9721 | /* |
| 9722 | * ENOSPC is allowed here, we may have enough space |
| 9723 | * already allocated at the new raid level to |
| 9724 | * carry on |
| 9725 | */ |
| 9726 | if (ret == -ENOSPC) |
| 9727 | ret = 0; |
| 9728 | if (ret < 0) |
| 9729 | goto out; |
| 9730 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9731 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9732 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9733 | if (!ret) |
| 9734 | goto out; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9735 | alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags); |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 9736 | ret = do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9737 | if (ret < 0) |
| 9738 | goto out; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9739 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9740 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9741 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9742 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9743 | mutex_lock(&fs_info->chunk_mutex); |
Nikolay Borisov | 451a2c1 | 2018-06-20 15:49:07 +0300 | [diff] [blame] | 9744 | check_system_chunk(trans, alloc_flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9745 | mutex_unlock(&fs_info->chunk_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9746 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9747 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9748 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9749 | btrfs_end_transaction(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9750 | return ret; |
| 9751 | } |
| 9752 | |
Nikolay Borisov | 43a7e99 | 2018-06-20 15:49:15 +0300 | [diff] [blame] | 9753 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type) |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9754 | { |
Nikolay Borisov | 43a7e99 | 2018-06-20 15:49:15 +0300 | [diff] [blame] | 9755 | u64 alloc_flags = get_alloc_profile(trans->fs_info, type); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9756 | |
Nikolay Borisov | 0145882 | 2018-06-20 15:49:05 +0300 | [diff] [blame] | 9757 | return do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9758 | } |
| 9759 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9760 | /* |
| 9761 | * 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] | 9762 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9763 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9764 | 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] | 9765 | { |
| 9766 | struct btrfs_block_group_cache *block_group; |
| 9767 | u64 free_bytes = 0; |
| 9768 | int factor; |
| 9769 | |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 9770 | /* It's df, we don't care if it's racy */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9771 | if (list_empty(&sinfo->ro_bgs)) |
| 9772 | return 0; |
| 9773 | |
| 9774 | spin_lock(&sinfo->lock); |
| 9775 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9776 | spin_lock(&block_group->lock); |
| 9777 | |
| 9778 | if (!block_group->ro) { |
| 9779 | spin_unlock(&block_group->lock); |
| 9780 | continue; |
| 9781 | } |
| 9782 | |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 9783 | factor = btrfs_bg_type_to_factor(block_group->flags); |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9784 | free_bytes += (block_group->key.offset - |
| 9785 | btrfs_block_group_used(&block_group->item)) * |
| 9786 | factor; |
| 9787 | |
| 9788 | spin_unlock(&block_group->lock); |
| 9789 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9790 | spin_unlock(&sinfo->lock); |
| 9791 | |
| 9792 | return free_bytes; |
| 9793 | } |
| 9794 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9795 | void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9796 | { |
| 9797 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9798 | u64 num_bytes; |
| 9799 | |
| 9800 | BUG_ON(!cache->ro); |
| 9801 | |
| 9802 | spin_lock(&sinfo->lock); |
| 9803 | spin_lock(&cache->lock); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9804 | if (!--cache->ro) { |
| 9805 | num_bytes = cache->key.offset - cache->reserved - |
| 9806 | cache->pinned - cache->bytes_super - |
| 9807 | btrfs_block_group_used(&cache->item); |
| 9808 | sinfo->bytes_readonly -= num_bytes; |
| 9809 | list_del_init(&cache->ro_list); |
| 9810 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9811 | spin_unlock(&cache->lock); |
| 9812 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9813 | } |
| 9814 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9815 | /* |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 9816 | * Checks to see if it's even possible to relocate this block group. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9817 | * |
| 9818 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 9819 | * ok to go ahead and try. |
| 9820 | */ |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9821 | int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9822 | { |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9823 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9824 | struct btrfs_space_info *space_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9825 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9826 | struct btrfs_device *device; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9827 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9828 | u64 dev_min = 1; |
| 9829 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9830 | u64 target; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9831 | int debug; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9832 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9833 | int full = 0; |
| 9834 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9835 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9836 | debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG); |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9837 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9838 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9839 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9840 | /* odd, couldn't find the block group, leave it alone */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9841 | if (!block_group) { |
| 9842 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9843 | btrfs_warn(fs_info, |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9844 | "can't find block group for bytenr %llu", |
| 9845 | bytenr); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9846 | return -1; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9847 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9848 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9849 | min_free = btrfs_block_group_used(&block_group->item); |
| 9850 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9851 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9852 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9853 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9854 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9855 | space_info = block_group->space_info; |
| 9856 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9857 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9858 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9859 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9860 | /* |
| 9861 | * 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] | 9862 | * relocate it unless we're able to allocate a new chunk below. |
| 9863 | * |
| 9864 | * Otherwise, we need to make sure we have room in the space to handle |
| 9865 | * 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] | 9866 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9867 | if ((space_info->total_bytes != block_group->key.offset) && |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 9868 | (btrfs_space_info_used(space_info, false) + min_free < |
| 9869 | space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9870 | spin_unlock(&space_info->lock); |
| 9871 | goto out; |
| 9872 | } |
| 9873 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9874 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9875 | /* |
| 9876 | * ok we don't have enough space, but maybe we have free space on our |
| 9877 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9878 | * alloc devices and guess if we have enough space. if this block |
| 9879 | * group is going to be restriped, run checks against the target |
| 9880 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9881 | */ |
| 9882 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 9883 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9884 | /* |
| 9885 | * index: |
| 9886 | * 0: raid10 |
| 9887 | * 1: raid1 |
| 9888 | * 2: dup |
| 9889 | * 3: raid0 |
| 9890 | * 4: single |
| 9891 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9892 | target = get_restripe_target(fs_info, block_group->flags); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9893 | if (target) { |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 9894 | index = btrfs_bg_flags_to_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9895 | } else { |
| 9896 | /* |
| 9897 | * this is just a balance, so if we were marked as full |
| 9898 | * we know there is no space for a new chunk |
| 9899 | */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9900 | if (full) { |
| 9901 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9902 | btrfs_warn(fs_info, |
| 9903 | "no space to alloc new chunk for block group %llu", |
| 9904 | block_group->key.objectid); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9905 | goto out; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9906 | } |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9907 | |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 9908 | index = btrfs_bg_flags_to_raid_index(block_group->flags); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9909 | } |
| 9910 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9911 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9912 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9913 | /* Divide by 2 */ |
| 9914 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9915 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9916 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9917 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9918 | /* Multiply by 2 */ |
| 9919 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9920 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9921 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9922 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9923 | } |
| 9924 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9925 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9926 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9927 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9928 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9929 | /* |
| 9930 | * check to make sure we can actually find a chunk with enough |
| 9931 | * space to fit our block group in. |
| 9932 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9933 | if (device->total_bytes > device->bytes_used + min_free && |
Anand Jain | 401e29c | 2017-12-04 12:54:55 +0800 | [diff] [blame] | 9934 | !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) { |
Nikolay Borisov | 60dfdf2 | 2019-03-27 14:24:14 +0200 | [diff] [blame] | 9935 | ret = find_free_dev_extent(device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9936 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9937 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9938 | dev_nr++; |
| 9939 | |
| 9940 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9941 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9942 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9943 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9944 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9945 | } |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9946 | if (debug && ret == -1) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9947 | btrfs_warn(fs_info, |
| 9948 | "no space to allocate a new chunk for block group %llu", |
| 9949 | block_group->key.objectid); |
| 9950 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9951 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9952 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9953 | return ret; |
| 9954 | } |
| 9955 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9956 | static int find_first_block_group(struct btrfs_fs_info *fs_info, |
| 9957 | struct btrfs_path *path, |
| 9958 | struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9959 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9960 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9961 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9962 | struct btrfs_key found_key; |
| 9963 | struct extent_buffer *leaf; |
Qu Wenruo | 514c7dc | 2018-08-01 10:37:16 +0800 | [diff] [blame] | 9964 | struct btrfs_block_group_item bg; |
| 9965 | u64 flags; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9966 | int slot; |
| 9967 | |
| 9968 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9969 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9970 | goto out; |
| 9971 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9972 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9973 | slot = path->slots[0]; |
| 9974 | leaf = path->nodes[0]; |
| 9975 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9976 | ret = btrfs_next_leaf(root, path); |
| 9977 | if (ret == 0) |
| 9978 | continue; |
| 9979 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9980 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9981 | break; |
| 9982 | } |
| 9983 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9984 | |
| 9985 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9986 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9987 | struct extent_map_tree *em_tree; |
| 9988 | struct extent_map *em; |
| 9989 | |
| 9990 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9991 | read_lock(&em_tree->lock); |
| 9992 | em = lookup_extent_mapping(em_tree, found_key.objectid, |
| 9993 | found_key.offset); |
| 9994 | read_unlock(&em_tree->lock); |
| 9995 | if (!em) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9996 | btrfs_err(fs_info, |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9997 | "logical %llu len %llu found bg but no related chunk", |
| 9998 | found_key.objectid, found_key.offset); |
| 9999 | ret = -ENOENT; |
Qu Wenruo | 514c7dc | 2018-08-01 10:37:16 +0800 | [diff] [blame] | 10000 | } else if (em->start != found_key.objectid || |
| 10001 | em->len != found_key.offset) { |
| 10002 | btrfs_err(fs_info, |
| 10003 | "block group %llu len %llu mismatch with chunk %llu len %llu", |
| 10004 | found_key.objectid, found_key.offset, |
| 10005 | em->start, em->len); |
| 10006 | ret = -EUCLEAN; |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 10007 | } else { |
Qu Wenruo | 514c7dc | 2018-08-01 10:37:16 +0800 | [diff] [blame] | 10008 | read_extent_buffer(leaf, &bg, |
| 10009 | btrfs_item_ptr_offset(leaf, slot), |
| 10010 | sizeof(bg)); |
| 10011 | flags = btrfs_block_group_flags(&bg) & |
| 10012 | BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 10013 | |
| 10014 | if (flags != (em->map_lookup->type & |
| 10015 | BTRFS_BLOCK_GROUP_TYPE_MASK)) { |
| 10016 | btrfs_err(fs_info, |
| 10017 | "block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx", |
| 10018 | found_key.objectid, |
| 10019 | found_key.offset, flags, |
| 10020 | (BTRFS_BLOCK_GROUP_TYPE_MASK & |
| 10021 | em->map_lookup->type)); |
| 10022 | ret = -EUCLEAN; |
| 10023 | } else { |
| 10024 | ret = 0; |
| 10025 | } |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 10026 | } |
Josef Bacik | 187ee58 | 2016-08-18 15:30:06 -0400 | [diff] [blame] | 10027 | free_extent_map(em); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 10028 | goto out; |
| 10029 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10030 | path->slots[0]++; |
| 10031 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 10032 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10033 | return ret; |
| 10034 | } |
| 10035 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10036 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 10037 | { |
| 10038 | struct btrfs_block_group_cache *block_group; |
| 10039 | u64 last = 0; |
| 10040 | |
| 10041 | while (1) { |
| 10042 | struct inode *inode; |
| 10043 | |
| 10044 | block_group = btrfs_lookup_first_block_group(info, last); |
| 10045 | while (block_group) { |
Josef Bacik | 3aa7c7a | 2018-09-12 10:45:45 -0400 | [diff] [blame] | 10046 | wait_block_group_cache_done(block_group); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10047 | spin_lock(&block_group->lock); |
| 10048 | if (block_group->iref) |
| 10049 | break; |
| 10050 | spin_unlock(&block_group->lock); |
David Sterba | f87b7eb | 2019-03-20 12:01:07 +0100 | [diff] [blame] | 10051 | block_group = next_block_group(block_group); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10052 | } |
| 10053 | if (!block_group) { |
| 10054 | if (last == 0) |
| 10055 | break; |
| 10056 | last = 0; |
| 10057 | continue; |
| 10058 | } |
| 10059 | |
| 10060 | inode = block_group->inode; |
| 10061 | block_group->iref = 0; |
| 10062 | block_group->inode = NULL; |
| 10063 | spin_unlock(&block_group->lock); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 10064 | ASSERT(block_group->io_ctl.inode == NULL); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10065 | iput(inode); |
| 10066 | last = block_group->key.objectid + block_group->key.offset; |
| 10067 | btrfs_put_block_group(block_group); |
| 10068 | } |
| 10069 | } |
| 10070 | |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 10071 | /* |
| 10072 | * Must be called only after stopping all workers, since we could have block |
| 10073 | * group caching kthreads running, and therefore they could race with us if we |
| 10074 | * freed the block groups before stopping them. |
| 10075 | */ |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10076 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 10077 | { |
| 10078 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10079 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10080 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10081 | struct rb_node *n; |
| 10082 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 10083 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10084 | while (!list_empty(&info->caching_block_groups)) { |
| 10085 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 10086 | struct btrfs_caching_control, list); |
| 10087 | list_del(&caching_ctl->list); |
| 10088 | put_caching_control(caching_ctl); |
| 10089 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 10090 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10091 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10092 | spin_lock(&info->unused_bgs_lock); |
| 10093 | while (!list_empty(&info->unused_bgs)) { |
| 10094 | block_group = list_first_entry(&info->unused_bgs, |
| 10095 | struct btrfs_block_group_cache, |
| 10096 | bg_list); |
| 10097 | list_del_init(&block_group->bg_list); |
| 10098 | btrfs_put_block_group(block_group); |
| 10099 | } |
| 10100 | spin_unlock(&info->unused_bgs_lock); |
| 10101 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10102 | spin_lock(&info->block_group_cache_lock); |
| 10103 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 10104 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 10105 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10106 | rb_erase(&block_group->cache_node, |
| 10107 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10108 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 10109 | spin_unlock(&info->block_group_cache_lock); |
| 10110 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10111 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10112 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10113 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 10114 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10115 | /* |
| 10116 | * We haven't cached this block group, which means we could |
| 10117 | * possibly have excluded extents on this block group. |
| 10118 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 10119 | if (block_group->cached == BTRFS_CACHE_NO || |
| 10120 | block_group->cached == BTRFS_CACHE_ERROR) |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 10121 | free_excluded_extents(block_group); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10122 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10123 | btrfs_remove_free_space_cache(block_group); |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 10124 | ASSERT(block_group->cached != BTRFS_CACHE_STARTED); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 10125 | ASSERT(list_empty(&block_group->dirty_list)); |
| 10126 | ASSERT(list_empty(&block_group->io_list)); |
| 10127 | ASSERT(list_empty(&block_group->bg_list)); |
| 10128 | ASSERT(atomic_read(&block_group->count) == 1); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 10129 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 10130 | |
| 10131 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10132 | } |
| 10133 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10134 | |
| 10135 | /* now that all the block groups are freed, go through and |
| 10136 | * free all the space_info structs. This is only called during |
| 10137 | * the final stages of unmount, and so we know nobody is |
| 10138 | * using them. We call synchronize_rcu() once before we start, |
| 10139 | * just to be on the safe side. |
| 10140 | */ |
| 10141 | synchronize_rcu(); |
| 10142 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 10143 | release_global_block_rsv(info); |
| 10144 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 10145 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10146 | int i; |
| 10147 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10148 | space_info = list_entry(info->space_info.next, |
| 10149 | struct btrfs_space_info, |
| 10150 | list); |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 10151 | |
| 10152 | /* |
| 10153 | * Do not hide this behind enospc_debug, this is actually |
| 10154 | * important and indicates a real bug if this happens. |
| 10155 | */ |
| 10156 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 10157 | space_info->bytes_reserved > 0 || |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 10158 | space_info->bytes_may_use > 0)) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 10159 | dump_space_info(info, space_info, 0, 0); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10160 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10161 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 10162 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10163 | kobj = space_info->block_group_kobjs[i]; |
| 10164 | space_info->block_group_kobjs[i] = NULL; |
| 10165 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10166 | kobject_del(kobj); |
| 10167 | kobject_put(kobj); |
| 10168 | } |
| 10169 | } |
| 10170 | kobject_del(&space_info->kobj); |
| 10171 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 10172 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10173 | return 0; |
| 10174 | } |
| 10175 | |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 10176 | /* link_block_group will queue up kobjects to add when we're reclaim-safe */ |
| 10177 | void btrfs_add_raid_kobjects(struct btrfs_fs_info *fs_info) |
| 10178 | { |
| 10179 | struct btrfs_space_info *space_info; |
| 10180 | struct raid_kobject *rkobj; |
| 10181 | LIST_HEAD(list); |
| 10182 | int index; |
| 10183 | int ret = 0; |
| 10184 | |
| 10185 | spin_lock(&fs_info->pending_raid_kobjs_lock); |
| 10186 | list_splice_init(&fs_info->pending_raid_kobjs, &list); |
| 10187 | spin_unlock(&fs_info->pending_raid_kobjs_lock); |
| 10188 | |
| 10189 | list_for_each_entry(rkobj, &list, list) { |
| 10190 | space_info = __find_space_info(fs_info, rkobj->flags); |
| 10191 | index = btrfs_bg_flags_to_raid_index(rkobj->flags); |
| 10192 | |
| 10193 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 10194 | "%s", get_raid_name(index)); |
| 10195 | if (ret) { |
| 10196 | kobject_put(&rkobj->kobj); |
| 10197 | break; |
| 10198 | } |
| 10199 | } |
| 10200 | if (ret) |
| 10201 | btrfs_warn(fs_info, |
| 10202 | "failed to add kobject for block cache, ignoring"); |
| 10203 | } |
| 10204 | |
Nikolay Borisov | c434d21 | 2017-08-21 12:43:50 +0300 | [diff] [blame] | 10205 | static void link_block_group(struct btrfs_block_group_cache *cache) |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10206 | { |
Nikolay Borisov | c434d21 | 2017-08-21 12:43:50 +0300 | [diff] [blame] | 10207 | struct btrfs_space_info *space_info = cache->space_info; |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 10208 | struct btrfs_fs_info *fs_info = cache->fs_info; |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 10209 | int index = btrfs_bg_flags_to_raid_index(cache->flags); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 10210 | bool first = false; |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10211 | |
| 10212 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 10213 | if (list_empty(&space_info->block_groups[index])) |
| 10214 | first = true; |
| 10215 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 10216 | up_write(&space_info->groups_sem); |
| 10217 | |
| 10218 | if (first) { |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 10219 | struct raid_kobject *rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 10220 | if (!rkobj) { |
| 10221 | btrfs_warn(cache->fs_info, |
| 10222 | "couldn't alloc memory for raid level kobject"); |
| 10223 | return; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10224 | } |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 10225 | rkobj->flags = cache->flags; |
| 10226 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 10227 | |
| 10228 | spin_lock(&fs_info->pending_raid_kobjs_lock); |
| 10229 | list_add_tail(&rkobj->list, &fs_info->pending_raid_kobjs); |
| 10230 | spin_unlock(&fs_info->pending_raid_kobjs_lock); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10231 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10232 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10233 | } |
| 10234 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10235 | static struct btrfs_block_group_cache * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10236 | btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info, |
| 10237 | u64 start, u64 size) |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10238 | { |
| 10239 | struct btrfs_block_group_cache *cache; |
| 10240 | |
| 10241 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 10242 | if (!cache) |
| 10243 | return NULL; |
| 10244 | |
| 10245 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 10246 | GFP_NOFS); |
| 10247 | if (!cache->free_space_ctl) { |
| 10248 | kfree(cache); |
| 10249 | return NULL; |
| 10250 | } |
| 10251 | |
| 10252 | cache->key.objectid = start; |
| 10253 | cache->key.offset = size; |
| 10254 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 10255 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10256 | cache->fs_info = fs_info; |
Nikolay Borisov | e4ff5fb | 2017-07-19 10:48:42 +0300 | [diff] [blame] | 10257 | cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10258 | set_free_space_tree_thresholds(cache); |
| 10259 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10260 | atomic_set(&cache->count, 1); |
| 10261 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 10262 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10263 | INIT_LIST_HEAD(&cache->list); |
| 10264 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10265 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 10266 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10267 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 10268 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10269 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10270 | atomic_set(&cache->trimming, 0); |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 10271 | mutex_init(&cache->free_space_lock); |
Qu Wenruo | 0966a7b | 2017-04-14 08:35:54 +0800 | [diff] [blame] | 10272 | btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10273 | |
| 10274 | return cache; |
| 10275 | } |
| 10276 | |
Qu Wenruo | 7ef4951 | 2018-08-01 10:37:17 +0800 | [diff] [blame] | 10277 | |
| 10278 | /* |
| 10279 | * Iterate all chunks and verify that each of them has the corresponding block |
| 10280 | * group |
| 10281 | */ |
| 10282 | static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info) |
| 10283 | { |
| 10284 | struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; |
| 10285 | struct extent_map *em; |
| 10286 | struct btrfs_block_group_cache *bg; |
| 10287 | u64 start = 0; |
| 10288 | int ret = 0; |
| 10289 | |
| 10290 | while (1) { |
| 10291 | read_lock(&map_tree->map_tree.lock); |
| 10292 | /* |
| 10293 | * lookup_extent_mapping will return the first extent map |
| 10294 | * intersecting the range, so setting @len to 1 is enough to |
| 10295 | * get the first chunk. |
| 10296 | */ |
| 10297 | em = lookup_extent_mapping(&map_tree->map_tree, start, 1); |
| 10298 | read_unlock(&map_tree->map_tree.lock); |
| 10299 | if (!em) |
| 10300 | break; |
| 10301 | |
| 10302 | bg = btrfs_lookup_block_group(fs_info, em->start); |
| 10303 | if (!bg) { |
| 10304 | btrfs_err(fs_info, |
| 10305 | "chunk start=%llu len=%llu doesn't have corresponding block group", |
| 10306 | em->start, em->len); |
| 10307 | ret = -EUCLEAN; |
| 10308 | free_extent_map(em); |
| 10309 | break; |
| 10310 | } |
| 10311 | if (bg->key.objectid != em->start || |
| 10312 | bg->key.offset != em->len || |
| 10313 | (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) != |
| 10314 | (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) { |
| 10315 | btrfs_err(fs_info, |
| 10316 | "chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx", |
| 10317 | em->start, em->len, |
| 10318 | em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK, |
| 10319 | bg->key.objectid, bg->key.offset, |
| 10320 | bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK); |
| 10321 | ret = -EUCLEAN; |
| 10322 | free_extent_map(em); |
| 10323 | btrfs_put_block_group(bg); |
| 10324 | break; |
| 10325 | } |
| 10326 | start = em->start + em->len; |
| 10327 | free_extent_map(em); |
| 10328 | btrfs_put_block_group(bg); |
| 10329 | } |
| 10330 | return ret; |
| 10331 | } |
| 10332 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 10333 | int btrfs_read_block_groups(struct btrfs_fs_info *info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10334 | { |
| 10335 | struct btrfs_path *path; |
| 10336 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10337 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10338 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10339 | struct btrfs_key key; |
| 10340 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10341 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10342 | int need_clear = 0; |
| 10343 | u64 cache_gen; |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 10344 | u64 feature; |
| 10345 | int mixed; |
| 10346 | |
| 10347 | feature = btrfs_super_incompat_flags(info->super_copy); |
| 10348 | mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10349 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10350 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10351 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 10352 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10353 | path = btrfs_alloc_path(); |
| 10354 | if (!path) |
| 10355 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 10356 | path->reada = READA_FORWARD; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10357 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10358 | cache_gen = btrfs_super_cache_generation(info->super_copy); |
| 10359 | if (btrfs_test_opt(info, SPACE_CACHE) && |
| 10360 | btrfs_super_generation(info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10361 | need_clear = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10362 | if (btrfs_test_opt(info, CLEAR_CACHE)) |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 10363 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10364 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 10365 | while (1) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10366 | ret = find_first_block_group(info, path, &key); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10367 | if (ret > 0) |
| 10368 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10369 | if (ret != 0) |
| 10370 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10371 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10372 | leaf = path->nodes[0]; |
| 10373 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10374 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10375 | cache = btrfs_create_block_group_cache(info, found_key.objectid, |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10376 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10377 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10378 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10379 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10380 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10381 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10382 | if (need_clear) { |
| 10383 | /* |
| 10384 | * When we mount with old space cache, we need to |
| 10385 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 10386 | * |
| 10387 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 10388 | * truncate the old free space cache inode and |
| 10389 | * setup a new one. |
| 10390 | * b) Setting 'dirty flag' makes sure that we flush |
| 10391 | * the new space cache info onto disk. |
| 10392 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10393 | if (btrfs_test_opt(info, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10394 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10395 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10396 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10397 | read_extent_buffer(leaf, &cache->item, |
| 10398 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 10399 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10400 | cache->flags = btrfs_block_group_flags(&cache->item); |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 10401 | if (!mixed && |
| 10402 | ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) && |
| 10403 | (cache->flags & BTRFS_BLOCK_GROUP_DATA))) { |
| 10404 | btrfs_err(info, |
| 10405 | "bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups", |
| 10406 | cache->key.objectid); |
| 10407 | ret = -EINVAL; |
| 10408 | goto error; |
| 10409 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10410 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10411 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10412 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10413 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10414 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10415 | * We need to exclude the super stripes now so that the space |
| 10416 | * info has super bytes accounted for, otherwise we'll think |
| 10417 | * we have more space than we actually do. |
| 10418 | */ |
Nikolay Borisov | 3c4da65 | 2018-06-20 15:49:09 +0300 | [diff] [blame] | 10419 | ret = exclude_super_stripes(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10420 | if (ret) { |
| 10421 | /* |
| 10422 | * We may have excluded something, so call this just in |
| 10423 | * case. |
| 10424 | */ |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 10425 | free_excluded_extents(cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10426 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10427 | goto error; |
| 10428 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10429 | |
| 10430 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10431 | * check for two cases, either we are full, and therefore |
| 10432 | * don't need to bother with the caching work since we won't |
| 10433 | * find any space, or we are empty, and we can just add all |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 10434 | * the space in and be done with it. This saves us _a_lot_ of |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10435 | * time, particularly in the full case. |
| 10436 | */ |
| 10437 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10438 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10439 | cache->cached = BTRFS_CACHE_FINISHED; |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 10440 | free_excluded_extents(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10441 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10442 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10443 | cache->cached = BTRFS_CACHE_FINISHED; |
Nikolay Borisov | 4457c1c | 2018-05-10 15:44:45 +0300 | [diff] [blame] | 10444 | add_new_free_space(cache, found_key.objectid, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10445 | found_key.objectid + |
| 10446 | found_key.offset); |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 10447 | free_excluded_extents(cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10448 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10449 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10450 | ret = btrfs_add_block_group_cache(info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10451 | if (ret) { |
| 10452 | btrfs_remove_free_space_cache(cache); |
| 10453 | btrfs_put_block_group(cache); |
| 10454 | goto error; |
| 10455 | } |
| 10456 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10457 | trace_btrfs_add_block_group(info, cache, 0); |
Nikolay Borisov | d2006e6 | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 10458 | update_space_info(info, cache->flags, found_key.offset, |
| 10459 | btrfs_block_group_used(&cache->item), |
| 10460 | cache->bytes_super, &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10461 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10462 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10463 | |
Nikolay Borisov | c434d21 | 2017-08-21 12:43:50 +0300 | [diff] [blame] | 10464 | link_block_group(cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10465 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10466 | set_avail_alloc_bits(info, cache->flags); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10467 | if (btrfs_chunk_readonly(info, cache->key.objectid)) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10468 | inc_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10469 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Qu Wenruo | 031f24d | 2018-05-22 16:43:47 +0800 | [diff] [blame] | 10470 | ASSERT(list_empty(&cache->bg_list)); |
| 10471 | btrfs_mark_bg_unused(cache); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10472 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10473 | } |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10474 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10475 | list_for_each_entry_rcu(space_info, &info->space_info, list) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10476 | if (!(get_alloc_profile(info, space_info->flags) & |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10477 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 10478 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 10479 | BTRFS_BLOCK_GROUP_RAID5 | |
| 10480 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10481 | BTRFS_BLOCK_GROUP_DUP))) |
| 10482 | continue; |
| 10483 | /* |
| 10484 | * avoid allocating from un-mirrored block group if there are |
| 10485 | * mirrored block groups. |
| 10486 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10487 | list_for_each_entry(cache, |
| 10488 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 10489 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10490 | inc_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10491 | list_for_each_entry(cache, |
| 10492 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 10493 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10494 | inc_block_group_ro(cache, 1); |
Yan, Zheng | b742bb82 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10495 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10496 | |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 10497 | btrfs_add_raid_kobjects(info); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10498 | init_global_block_rsv(info); |
Qu Wenruo | 7ef4951 | 2018-08-01 10:37:17 +0800 | [diff] [blame] | 10499 | ret = check_chunk_block_group_mappings(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10500 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10501 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10502 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10503 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10504 | |
Nikolay Borisov | 6c686b3 | 2018-02-07 17:55:40 +0200 | [diff] [blame] | 10505 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10506 | { |
Nikolay Borisov | 6c686b3 | 2018-02-07 17:55:40 +0200 | [diff] [blame] | 10507 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Josef Bacik | 545e336 | 2018-09-28 07:18:02 -0400 | [diff] [blame] | 10508 | struct btrfs_block_group_cache *block_group; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10509 | struct btrfs_root *extent_root = fs_info->extent_root; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10510 | struct btrfs_block_group_item item; |
| 10511 | struct btrfs_key key; |
| 10512 | int ret = 0; |
| 10513 | |
Filipe Manana | 5ce5555 | 2018-10-12 10:03:55 +0100 | [diff] [blame] | 10514 | if (!trans->can_flush_pending_bgs) |
| 10515 | return; |
| 10516 | |
Josef Bacik | 545e336 | 2018-09-28 07:18:02 -0400 | [diff] [blame] | 10517 | while (!list_empty(&trans->new_bgs)) { |
| 10518 | block_group = list_first_entry(&trans->new_bgs, |
| 10519 | struct btrfs_block_group_cache, |
| 10520 | bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10521 | if (ret) |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10522 | goto next; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10523 | |
| 10524 | spin_lock(&block_group->lock); |
| 10525 | memcpy(&item, &block_group->item, sizeof(item)); |
| 10526 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10527 | spin_unlock(&block_group->lock); |
| 10528 | |
| 10529 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 10530 | sizeof(item)); |
| 10531 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10532 | btrfs_abort_transaction(trans, ret); |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 10533 | ret = btrfs_finish_chunk_alloc(trans, key.objectid, key.offset); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 10534 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10535 | btrfs_abort_transaction(trans, ret); |
Nikolay Borisov | e4e0711 | 2018-05-10 15:44:41 +0300 | [diff] [blame] | 10536 | add_block_group_free_space(trans, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10537 | /* already aborted the transaction if it failed. */ |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10538 | next: |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 10539 | btrfs_delayed_refs_rsv_release(fs_info, 1); |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10540 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10541 | } |
Filipe Manana | 5ce5555 | 2018-10-12 10:03:55 +0100 | [diff] [blame] | 10542 | btrfs_trans_release_chunk_metadata(trans); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10543 | } |
| 10544 | |
Nikolay Borisov | e7e0209 | 2018-06-20 15:48:55 +0300 | [diff] [blame] | 10545 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, u64 bytes_used, |
Nikolay Borisov | 0174484 | 2017-07-27 14:22:11 +0300 | [diff] [blame] | 10546 | u64 type, u64 chunk_offset, u64 size) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10547 | { |
Nikolay Borisov | e7e0209 | 2018-06-20 15:48:55 +0300 | [diff] [blame] | 10548 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10549 | struct btrfs_block_group_cache *cache; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10550 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10551 | |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 10552 | btrfs_set_log_full_commit(trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 10553 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10554 | cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 10555 | if (!cache) |
| 10556 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10557 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10558 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Nikolay Borisov | 0174484 | 2017-07-27 14:22:11 +0300 | [diff] [blame] | 10559 | btrfs_set_block_group_chunk_objectid(&cache->item, |
| 10560 | BTRFS_FIRST_CHUNK_TREE_OBJECTID); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10561 | btrfs_set_block_group_flags(&cache->item, type); |
| 10562 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10563 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10564 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10565 | cache->cached = BTRFS_CACHE_FINISHED; |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10566 | cache->needs_free_space = 1; |
Nikolay Borisov | 3c4da65 | 2018-06-20 15:49:09 +0300 | [diff] [blame] | 10567 | ret = exclude_super_stripes(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10568 | if (ret) { |
| 10569 | /* |
| 10570 | * We may have excluded something, so call this just in |
| 10571 | * case. |
| 10572 | */ |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 10573 | free_excluded_extents(cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10574 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10575 | return ret; |
| 10576 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10577 | |
Nikolay Borisov | 4457c1c | 2018-05-10 15:44:45 +0300 | [diff] [blame] | 10578 | add_new_free_space(cache, chunk_offset, chunk_offset + size); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10579 | |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 10580 | free_excluded_extents(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10581 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10582 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10583 | if (btrfs_should_fragment_free_space(cache)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10584 | u64 new_bytes_used = size - bytes_used; |
| 10585 | |
| 10586 | bytes_used += new_bytes_used >> 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10587 | fragment_free_space(cache); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10588 | } |
| 10589 | #endif |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10590 | /* |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10591 | * Ensure the corresponding space_info object is created and |
| 10592 | * assigned to our block group. We want our bg to be added to the rbtree |
| 10593 | * with its ->space_info set. |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10594 | */ |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10595 | cache->space_info = __find_space_info(fs_info, cache->flags); |
Jeff Mahoney | dc2d300 | 2018-03-20 15:25:25 -0400 | [diff] [blame] | 10596 | ASSERT(cache->space_info); |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10597 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10598 | ret = btrfs_add_block_group_cache(fs_info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10599 | if (ret) { |
| 10600 | btrfs_remove_free_space_cache(cache); |
| 10601 | btrfs_put_block_group(cache); |
| 10602 | return ret; |
| 10603 | } |
| 10604 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10605 | /* |
| 10606 | * Now that our block group has its ->space_info set and is inserted in |
| 10607 | * the rbtree, update the space info's counters. |
| 10608 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10609 | trace_btrfs_add_block_group(fs_info, cache, 1); |
Nikolay Borisov | d2006e6 | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 10610 | update_space_info(fs_info, cache->flags, size, bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10611 | cache->bytes_super, &cache->space_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10612 | update_global_block_rsv(fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10613 | |
Nikolay Borisov | c434d21 | 2017-08-21 12:43:50 +0300 | [diff] [blame] | 10614 | link_block_group(cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10615 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10616 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 10617 | trans->delayed_ref_updates++; |
| 10618 | btrfs_update_delayed_refs_rsv(trans); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10619 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10620 | set_avail_alloc_bits(fs_info, type); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10621 | return 0; |
| 10622 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10623 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10624 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 10625 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 10626 | u64 extra_flags = chunk_to_extended(flags) & |
| 10627 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10628 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10629 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10630 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 10631 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 10632 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 10633 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 10634 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 10635 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10636 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10637 | } |
| 10638 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10639 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 5a98ec0 | 2018-06-20 15:48:56 +0300 | [diff] [blame] | 10640 | u64 group_start, struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10641 | { |
Nikolay Borisov | 5a98ec0 | 2018-06-20 15:48:56 +0300 | [diff] [blame] | 10642 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10643 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10644 | struct btrfs_path *path; |
| 10645 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10646 | struct btrfs_free_cluster *cluster; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10647 | struct btrfs_root *tree_root = fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10648 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10649 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10650 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10651 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10652 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10653 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10654 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10655 | bool remove_em; |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 10656 | bool remove_rsv = false; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10657 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10658 | block_group = btrfs_lookup_block_group(fs_info, group_start); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10659 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10660 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10661 | |
Qu Wenruo | 4ed0a7a | 2018-04-26 17:17:20 +0800 | [diff] [blame] | 10662 | trace_btrfs_remove_block_group(block_group); |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10663 | /* |
| 10664 | * Free the reserved super bytes from this block group before |
| 10665 | * remove it. |
| 10666 | */ |
Nikolay Borisov | 9e715da | 2018-06-20 15:49:08 +0300 | [diff] [blame] | 10667 | free_excluded_extents(block_group); |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 10668 | btrfs_free_ref_tree_range(fs_info, block_group->key.objectid, |
| 10669 | block_group->key.offset); |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10670 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10671 | memcpy(&key, &block_group->key, sizeof(key)); |
Qu Wenruo | 3e72ee8 | 2018-01-30 18:20:45 +0800 | [diff] [blame] | 10672 | index = btrfs_bg_flags_to_raid_index(block_group->flags); |
David Sterba | 46df06b | 2018-07-13 20:46:30 +0200 | [diff] [blame] | 10673 | factor = btrfs_bg_type_to_factor(block_group->flags); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10674 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10675 | /* make sure this block group isn't part of an allocation cluster */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10676 | cluster = &fs_info->data_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10677 | spin_lock(&cluster->refill_lock); |
| 10678 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10679 | spin_unlock(&cluster->refill_lock); |
| 10680 | |
| 10681 | /* |
| 10682 | * make sure this block group isn't part of a metadata |
| 10683 | * allocation cluster |
| 10684 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10685 | cluster = &fs_info->meta_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10686 | spin_lock(&cluster->refill_lock); |
| 10687 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10688 | spin_unlock(&cluster->refill_lock); |
| 10689 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10690 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 10691 | if (!path) { |
| 10692 | ret = -ENOMEM; |
| 10693 | goto out; |
| 10694 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10695 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10696 | /* |
| 10697 | * get the inode first so any iput calls done for the io_list |
| 10698 | * aren't the final iput (no unlinks allowed now) |
| 10699 | */ |
David Sterba | 7949f33 | 2019-03-20 13:40:19 +0100 | [diff] [blame] | 10700 | inode = lookup_free_space_inode(block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10701 | |
| 10702 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 10703 | /* |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 10704 | * Make sure our free space cache IO is done before removing the |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10705 | * free space inode |
| 10706 | */ |
| 10707 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10708 | if (!list_empty(&block_group->io_list)) { |
| 10709 | list_del_init(&block_group->io_list); |
| 10710 | |
| 10711 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 10712 | |
| 10713 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 10714 | btrfs_wait_cache_io(trans, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10715 | btrfs_put_block_group(block_group); |
| 10716 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10717 | } |
| 10718 | |
| 10719 | if (!list_empty(&block_group->dirty_list)) { |
| 10720 | list_del_init(&block_group->dirty_list); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 10721 | remove_rsv = true; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10722 | btrfs_put_block_group(block_group); |
| 10723 | } |
| 10724 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10725 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 10726 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10727 | if (!IS_ERR(inode)) { |
Nikolay Borisov | 73f2e54 | 2017-02-20 13:50:59 +0200 | [diff] [blame] | 10728 | ret = btrfs_orphan_add(trans, BTRFS_I(inode)); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 10729 | if (ret) { |
| 10730 | btrfs_add_delayed_iput(inode); |
| 10731 | goto out; |
| 10732 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10733 | clear_nlink(inode); |
| 10734 | /* One for the block groups ref */ |
| 10735 | spin_lock(&block_group->lock); |
| 10736 | if (block_group->iref) { |
| 10737 | block_group->iref = 0; |
| 10738 | block_group->inode = NULL; |
| 10739 | spin_unlock(&block_group->lock); |
| 10740 | iput(inode); |
| 10741 | } else { |
| 10742 | spin_unlock(&block_group->lock); |
| 10743 | } |
| 10744 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 10745 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10746 | } |
| 10747 | |
| 10748 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 10749 | key.offset = block_group->key.objectid; |
| 10750 | key.type = 0; |
| 10751 | |
| 10752 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 10753 | if (ret < 0) |
| 10754 | goto out; |
| 10755 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10756 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10757 | if (ret == 0) { |
| 10758 | ret = btrfs_del_item(trans, tree_root, path); |
| 10759 | if (ret) |
| 10760 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10761 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10762 | } |
| 10763 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10764 | spin_lock(&fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10765 | rb_erase(&block_group->cache_node, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10766 | &fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 10767 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 10768 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10769 | if (fs_info->first_logical_byte == block_group->key.objectid) |
| 10770 | fs_info->first_logical_byte = (u64)-1; |
| 10771 | spin_unlock(&fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10772 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10773 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10774 | /* |
| 10775 | * we must use list_del_init so people can check to see if they |
| 10776 | * are still on the list after taking the semaphore |
| 10777 | */ |
| 10778 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10779 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10780 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 10781 | block_group->space_info->block_group_kobjs[index] = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10782 | clear_avail_alloc_bits(fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10783 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10784 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10785 | if (kobj) { |
| 10786 | kobject_del(kobj); |
| 10787 | kobject_put(kobj); |
| 10788 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10789 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10790 | if (block_group->has_caching_ctl) |
| 10791 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10792 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10793 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10794 | if (block_group->has_caching_ctl) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10795 | down_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10796 | if (!caching_ctl) { |
| 10797 | struct btrfs_caching_control *ctl; |
| 10798 | |
| 10799 | list_for_each_entry(ctl, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10800 | &fs_info->caching_block_groups, list) |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10801 | if (ctl->block_group == block_group) { |
| 10802 | caching_ctl = ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 10803 | refcount_inc(&caching_ctl->count); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10804 | break; |
| 10805 | } |
| 10806 | } |
| 10807 | if (caching_ctl) |
| 10808 | list_del_init(&caching_ctl->list); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10809 | up_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10810 | if (caching_ctl) { |
| 10811 | /* Once for the caching bgs list and once for us. */ |
| 10812 | put_caching_control(caching_ctl); |
| 10813 | put_caching_control(caching_ctl); |
| 10814 | } |
| 10815 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10816 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10817 | spin_lock(&trans->transaction->dirty_bgs_lock); |
Nikolay Borisov | 9a0ec83 | 2019-01-30 16:50:49 +0200 | [diff] [blame] | 10818 | WARN_ON(!list_empty(&block_group->dirty_list)); |
| 10819 | WARN_ON(!list_empty(&block_group->io_list)); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10820 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Nikolay Borisov | 9a0ec83 | 2019-01-30 16:50:49 +0200 | [diff] [blame] | 10821 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10822 | btrfs_remove_free_space_cache(block_group); |
| 10823 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10824 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 10825 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10826 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10827 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10828 | WARN_ON(block_group->space_info->total_bytes |
| 10829 | < block_group->key.offset); |
| 10830 | WARN_ON(block_group->space_info->bytes_readonly |
| 10831 | < block_group->key.offset); |
| 10832 | WARN_ON(block_group->space_info->disk_total |
| 10833 | < block_group->key.offset * factor); |
| 10834 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10835 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 10836 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10837 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10838 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10839 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 10840 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10841 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10842 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10843 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10844 | spin_lock(&block_group->lock); |
| 10845 | block_group->removed = 1; |
| 10846 | /* |
| 10847 | * At this point trimming can't start on this block group, because we |
| 10848 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 10849 | * so no one can't find it anymore and even if someone already got this |
| 10850 | * block group before we removed it from the rbtree, they have already |
| 10851 | * incremented block_group->trimming - if they didn't, they won't find |
| 10852 | * any free space entries because we already removed them all when we |
| 10853 | * called btrfs_remove_free_space_cache(). |
| 10854 | * |
| 10855 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 10856 | * to prevent the same logical address range and physical device space |
| 10857 | * ranges from being reused for a new block group. This is because our |
| 10858 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 10859 | * completely transactionless, so while it is trimming a range the |
| 10860 | * currently running transaction might finish and a new one start, |
| 10861 | * allowing for new block groups to be created that can reuse the same |
| 10862 | * physical device locations unless we take this special care. |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10863 | * |
| 10864 | * There may also be an implicit trim operation if the file system |
| 10865 | * is mounted with -odiscard. The same protections must remain |
| 10866 | * in place until the extents have been discarded completely when |
| 10867 | * the transaction commit has completed. |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10868 | */ |
| 10869 | remove_em = (atomic_read(&block_group->trimming) == 0); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10870 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10871 | |
| 10872 | if (remove_em) { |
| 10873 | struct extent_map_tree *em_tree; |
| 10874 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10875 | em_tree = &fs_info->mapping_tree.map_tree; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10876 | write_lock(&em_tree->lock); |
| 10877 | remove_extent_mapping(em_tree, em); |
| 10878 | write_unlock(&em_tree->lock); |
| 10879 | /* once for the tree */ |
| 10880 | free_extent_map(em); |
| 10881 | } |
| 10882 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10883 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10884 | |
Nikolay Borisov | f3f7277 | 2018-05-10 15:44:46 +0300 | [diff] [blame] | 10885 | ret = remove_block_group_free_space(trans, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10886 | if (ret) |
| 10887 | goto out; |
| 10888 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 10889 | btrfs_put_block_group(block_group); |
| 10890 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10891 | |
| 10892 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 10893 | if (ret > 0) |
| 10894 | ret = -EIO; |
| 10895 | if (ret < 0) |
| 10896 | goto out; |
| 10897 | |
| 10898 | ret = btrfs_del_item(trans, root, path); |
| 10899 | out: |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 10900 | if (remove_rsv) |
| 10901 | btrfs_delayed_refs_rsv_release(fs_info, 1); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10902 | btrfs_free_path(path); |
| 10903 | return ret; |
| 10904 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10905 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10906 | struct btrfs_trans_handle * |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10907 | btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info, |
| 10908 | const u64 chunk_offset) |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10909 | { |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10910 | struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree; |
| 10911 | struct extent_map *em; |
| 10912 | struct map_lookup *map; |
| 10913 | unsigned int num_items; |
| 10914 | |
| 10915 | read_lock(&em_tree->lock); |
| 10916 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 10917 | read_unlock(&em_tree->lock); |
| 10918 | ASSERT(em && em->start == chunk_offset); |
| 10919 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10920 | /* |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10921 | * We need to reserve 3 + N units from the metadata space info in order |
| 10922 | * to remove a block group (done at btrfs_remove_chunk() and at |
| 10923 | * btrfs_remove_block_group()), which are used for: |
| 10924 | * |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10925 | * 1 unit for adding the free space inode's orphan (located in the tree |
| 10926 | * of tree roots). |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10927 | * 1 unit for deleting the block group item (located in the extent |
| 10928 | * tree). |
| 10929 | * 1 unit for deleting the free space item (located in tree of tree |
| 10930 | * roots). |
| 10931 | * N units for deleting N device extent items corresponding to each |
| 10932 | * stripe (located in the device tree). |
| 10933 | * |
| 10934 | * In order to remove a block group we also need to reserve units in the |
| 10935 | * system space info in order to update the chunk tree (update one or |
| 10936 | * more device items and remove one chunk item), but this is done at |
| 10937 | * btrfs_remove_chunk() through a call to check_system_chunk(). |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10938 | */ |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 10939 | map = em->map_lookup; |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10940 | num_items = 3 + map->num_stripes; |
| 10941 | free_extent_map(em); |
| 10942 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10943 | return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root, |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10944 | num_items, 1); |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10945 | } |
| 10946 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10947 | /* |
| 10948 | * Process the unused_bgs list and remove any that don't have any allocated |
| 10949 | * space inside of them. |
| 10950 | */ |
| 10951 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 10952 | { |
| 10953 | struct btrfs_block_group_cache *block_group; |
| 10954 | struct btrfs_space_info *space_info; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10955 | struct btrfs_trans_handle *trans; |
| 10956 | int ret = 0; |
| 10957 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 10958 | if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags)) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10959 | return; |
| 10960 | |
| 10961 | spin_lock(&fs_info->unused_bgs_lock); |
| 10962 | while (!list_empty(&fs_info->unused_bgs)) { |
| 10963 | u64 start, end; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10964 | int trimming; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10965 | |
| 10966 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 10967 | struct btrfs_block_group_cache, |
| 10968 | bg_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10969 | list_del_init(&block_group->bg_list); |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10970 | |
| 10971 | space_info = block_group->space_info; |
| 10972 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10973 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 10974 | btrfs_put_block_group(block_group); |
| 10975 | continue; |
| 10976 | } |
| 10977 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10978 | |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10979 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10980 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10981 | /* Don't want to race with allocators so take the groups_sem */ |
| 10982 | down_write(&space_info->groups_sem); |
| 10983 | spin_lock(&block_group->lock); |
Qu Wenruo | 4379444 | 2018-06-22 12:35:00 +0800 | [diff] [blame] | 10984 | if (block_group->reserved || block_group->pinned || |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10985 | btrfs_block_group_used(&block_group->item) || |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 10986 | block_group->ro || |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10987 | list_is_singular(&block_group->list)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10988 | /* |
| 10989 | * We want to bail if we made new allocations or have |
| 10990 | * outstanding allocations in this block group. We do |
| 10991 | * the ro check in case balance is currently acting on |
| 10992 | * this block group. |
| 10993 | */ |
Qu Wenruo | 4ed0a7a | 2018-04-26 17:17:20 +0800 | [diff] [blame] | 10994 | trace_btrfs_skip_unused_block_group(block_group); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10995 | spin_unlock(&block_group->lock); |
| 10996 | up_write(&space_info->groups_sem); |
| 10997 | goto next; |
| 10998 | } |
| 10999 | spin_unlock(&block_group->lock); |
| 11000 | |
| 11001 | /* 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] | 11002 | ret = inc_block_group_ro(block_group, 0); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11003 | up_write(&space_info->groups_sem); |
| 11004 | if (ret < 0) { |
| 11005 | ret = 0; |
| 11006 | goto next; |
| 11007 | } |
| 11008 | |
| 11009 | /* |
| 11010 | * Want to do this before we do anything else so we can recover |
| 11011 | * properly if we fail to join the transaction. |
| 11012 | */ |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 11013 | trans = btrfs_start_trans_remove_block_group(fs_info, |
| 11014 | block_group->key.objectid); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11015 | if (IS_ERR(trans)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 11016 | btrfs_dec_block_group_ro(block_group); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11017 | ret = PTR_ERR(trans); |
| 11018 | goto next; |
| 11019 | } |
| 11020 | |
| 11021 | /* |
| 11022 | * We could have pending pinned extents for this block group, |
| 11023 | * just delete them, we don't care about them anymore. |
| 11024 | */ |
| 11025 | start = block_group->key.objectid; |
| 11026 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 11027 | /* |
| 11028 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 11029 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 11030 | * another task might be running finish_extent_commit() for the |
| 11031 | * previous transaction N - 1, and have seen a range belonging |
| 11032 | * to the block group in freed_extents[] before we were able to |
| 11033 | * clear the whole block group range from freed_extents[]. This |
| 11034 | * means that task can lookup for the block group after we |
| 11035 | * unpinned it from freed_extents[] and removed it, leading to |
| 11036 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 11037 | */ |
| 11038 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 11039 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 11040 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 11041 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 11042 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 11043 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 11044 | goto end_trans; |
| 11045 | } |
| 11046 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 11047 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 11048 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 11049 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 11050 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 11051 | goto end_trans; |
| 11052 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 11053 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11054 | |
| 11055 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 11056 | spin_lock(&space_info->lock); |
| 11057 | spin_lock(&block_group->lock); |
| 11058 | |
Lu Fengqi | e2907c1 | 2018-10-24 20:24:02 +0800 | [diff] [blame] | 11059 | update_bytes_pinned(space_info, -block_group->pinned); |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 11060 | space_info->bytes_readonly += block_group->pinned; |
Ethan Lien | dec59fa | 2018-07-13 16:50:42 +0800 | [diff] [blame] | 11061 | percpu_counter_add_batch(&space_info->total_bytes_pinned, |
| 11062 | -block_group->pinned, |
| 11063 | BTRFS_TOTAL_BYTES_PINNED_BATCH); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11064 | block_group->pinned = 0; |
| 11065 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 11066 | spin_unlock(&block_group->lock); |
| 11067 | spin_unlock(&space_info->lock); |
| 11068 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 11069 | /* DISCARD can flip during remount */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 11070 | trimming = btrfs_test_opt(fs_info, DISCARD); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 11071 | |
| 11072 | /* Implicit trim during transaction commit. */ |
| 11073 | if (trimming) |
| 11074 | btrfs_get_block_group_trimming(block_group); |
| 11075 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11076 | /* |
| 11077 | * Btrfs_remove_chunk will abort the transaction if things go |
| 11078 | * horribly wrong. |
| 11079 | */ |
Nikolay Borisov | 97aff91 | 2018-07-20 19:37:53 +0300 | [diff] [blame] | 11080 | ret = btrfs_remove_chunk(trans, block_group->key.objectid); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 11081 | |
| 11082 | if (ret) { |
| 11083 | if (trimming) |
| 11084 | btrfs_put_block_group_trimming(block_group); |
| 11085 | goto end_trans; |
| 11086 | } |
| 11087 | |
| 11088 | /* |
| 11089 | * If we're not mounted with -odiscard, we can just forget |
| 11090 | * about this block group. Otherwise we'll need to wait |
| 11091 | * until transaction commit to do the actual discard. |
| 11092 | */ |
| 11093 | if (trimming) { |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 11094 | spin_lock(&fs_info->unused_bgs_lock); |
| 11095 | /* |
| 11096 | * A concurrent scrub might have added us to the list |
| 11097 | * fs_info->unused_bgs, so use a list_move operation |
| 11098 | * to add the block group to the deleted_bgs list. |
| 11099 | */ |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 11100 | list_move(&block_group->bg_list, |
| 11101 | &trans->transaction->deleted_bgs); |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 11102 | spin_unlock(&fs_info->unused_bgs_lock); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 11103 | btrfs_get_block_group(block_group); |
| 11104 | } |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 11105 | end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 11106 | btrfs_end_transaction(trans); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11107 | next: |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 11108 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 11109 | btrfs_put_block_group(block_group); |
| 11110 | spin_lock(&fs_info->unused_bgs_lock); |
| 11111 | } |
| 11112 | spin_unlock(&fs_info->unused_bgs_lock); |
| 11113 | } |
| 11114 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 11115 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 11116 | { |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11117 | struct btrfs_super_block *disk_super; |
| 11118 | u64 features; |
| 11119 | u64 flags; |
| 11120 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 11121 | int ret; |
| 11122 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 11123 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11124 | if (!btrfs_super_root(disk_super)) |
Dan Carpenter | 0dc924c5 | 2016-01-13 15:21:17 +0300 | [diff] [blame] | 11125 | return -EINVAL; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 11126 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11127 | features = btrfs_super_incompat_flags(disk_super); |
| 11128 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 11129 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 11130 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11131 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
Lu Fengqi | 4ca6168 | 2018-05-28 14:30:27 +0800 | [diff] [blame] | 11132 | ret = create_space_info(fs_info, flags); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 11133 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11134 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 11135 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11136 | if (mixed) { |
| 11137 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
Lu Fengqi | 4ca6168 | 2018-05-28 14:30:27 +0800 | [diff] [blame] | 11138 | ret = create_space_info(fs_info, flags); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11139 | } else { |
| 11140 | flags = BTRFS_BLOCK_GROUP_METADATA; |
Lu Fengqi | 4ca6168 | 2018-05-28 14:30:27 +0800 | [diff] [blame] | 11141 | ret = create_space_info(fs_info, flags); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11142 | if (ret) |
| 11143 | goto out; |
| 11144 | |
| 11145 | flags = BTRFS_BLOCK_GROUP_DATA; |
Lu Fengqi | 4ca6168 | 2018-05-28 14:30:27 +0800 | [diff] [blame] | 11146 | ret = create_space_info(fs_info, flags); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 11147 | } |
| 11148 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 11149 | return ret; |
| 11150 | } |
| 11151 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 11152 | int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 11153 | u64 start, u64 end) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 11154 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 11155 | return unpin_extent_range(fs_info, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 11156 | } |
| 11157 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11158 | /* |
| 11159 | * It used to be that old block groups would be left around forever. |
| 11160 | * Iterating over them would be enough to trim unused space. Since we |
| 11161 | * now automatically remove them, we also need to iterate over unallocated |
| 11162 | * space. |
| 11163 | * |
| 11164 | * We don't want a transaction for this since the discard may take a |
| 11165 | * substantial amount of time. We don't require that a transaction be |
| 11166 | * running, but we do need to take a running transaction into account |
Jeff Mahoney | fee7acc | 2018-09-06 17:18:16 -0400 | [diff] [blame] | 11167 | * to ensure that we're not discarding chunks that were released or |
| 11168 | * allocated in the current transaction. |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11169 | * |
| 11170 | * Holding the chunks lock will prevent other threads from allocating |
| 11171 | * or releasing chunks, but it won't prevent a running transaction |
| 11172 | * from committing and releasing the memory that the pending chunks |
| 11173 | * list head uses. For that, we need to take a reference to the |
Jeff Mahoney | fee7acc | 2018-09-06 17:18:16 -0400 | [diff] [blame] | 11174 | * transaction and hold the commit root sem. We only need to hold |
| 11175 | * it while performing the free space search since we have already |
| 11176 | * held back allocations. |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11177 | */ |
| 11178 | static int btrfs_trim_free_extents(struct btrfs_device *device, |
Nikolay Borisov | c2d1b3a | 2019-03-25 14:31:21 +0200 | [diff] [blame] | 11179 | struct fstrim_range *range, u64 *trimmed) |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11180 | { |
Nikolay Borisov | 929be17 | 2019-03-27 14:24:18 +0200 | [diff] [blame] | 11181 | u64 start, len = 0, end = 0; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11182 | int ret; |
| 11183 | |
Nikolay Borisov | 929be17 | 2019-03-27 14:24:18 +0200 | [diff] [blame] | 11184 | start = max_t(u64, range->start, SZ_1M); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11185 | *trimmed = 0; |
| 11186 | |
Jeff Mahoney | 0be88e3 | 2018-09-06 17:18:15 -0400 | [diff] [blame] | 11187 | /* Discard not supported = nothing to do. */ |
| 11188 | if (!blk_queue_discard(bdev_get_queue(device->bdev))) |
| 11189 | return 0; |
| 11190 | |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 11191 | /* Not writable = nothing to do. */ |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 11192 | if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11193 | return 0; |
| 11194 | |
| 11195 | /* No free space = nothing to do. */ |
| 11196 | if (device->total_bytes <= device->bytes_used) |
| 11197 | return 0; |
| 11198 | |
| 11199 | ret = 0; |
| 11200 | |
| 11201 | while (1) { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 11202 | struct btrfs_fs_info *fs_info = device->fs_info; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11203 | u64 bytes; |
| 11204 | |
| 11205 | ret = mutex_lock_interruptible(&fs_info->chunk_mutex); |
| 11206 | if (ret) |
Jeff Mahoney | fee7acc | 2018-09-06 17:18:16 -0400 | [diff] [blame] | 11207 | break; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11208 | |
Nikolay Borisov | 929be17 | 2019-03-27 14:24:18 +0200 | [diff] [blame] | 11209 | find_first_clear_extent_bit(&device->alloc_state, start, |
| 11210 | &start, &end, |
| 11211 | CHUNK_TRIMMED | CHUNK_ALLOCATED); |
| 11212 | /* |
| 11213 | * If find_first_clear_extent_bit find a range that spans the |
| 11214 | * end of the device it will set end to -1, in this case it's up |
| 11215 | * to the caller to trim the value to the size of the device. |
| 11216 | */ |
| 11217 | end = min(end, device->total_bytes - 1); |
| 11218 | len = end - start + 1; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11219 | |
Nikolay Borisov | 929be17 | 2019-03-27 14:24:18 +0200 | [diff] [blame] | 11220 | /* We didn't find any extents */ |
| 11221 | if (!len) { |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11222 | mutex_unlock(&fs_info->chunk_mutex); |
Nikolay Borisov | 929be17 | 2019-03-27 14:24:18 +0200 | [diff] [blame] | 11223 | ret = 0; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11224 | break; |
| 11225 | } |
| 11226 | |
Nikolay Borisov | 929be17 | 2019-03-27 14:24:18 +0200 | [diff] [blame] | 11227 | /* Keep going until we satisfy minlen or reach end of space */ |
| 11228 | if (len < range->minlen) { |
| 11229 | mutex_unlock(&fs_info->chunk_mutex); |
| 11230 | start += len; |
| 11231 | continue; |
| 11232 | } |
| 11233 | |
Nikolay Borisov | c2d1b3a | 2019-03-25 14:31:21 +0200 | [diff] [blame] | 11234 | /* If we are out of the passed range break */ |
| 11235 | if (start > range->start + range->len - 1) { |
| 11236 | mutex_unlock(&fs_info->chunk_mutex); |
Nikolay Borisov | c2d1b3a | 2019-03-25 14:31:21 +0200 | [diff] [blame] | 11237 | break; |
| 11238 | } |
| 11239 | |
| 11240 | start = max(range->start, start); |
| 11241 | len = min(range->len, len); |
| 11242 | |
Nikolay Borisov | 929be17 | 2019-03-27 14:24:18 +0200 | [diff] [blame] | 11243 | ret = btrfs_issue_discard(device->bdev, start, len, |
| 11244 | &bytes); |
| 11245 | if (!ret) |
| 11246 | set_extent_bits(&device->alloc_state, start, |
| 11247 | start + bytes - 1, |
| 11248 | CHUNK_TRIMMED); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11249 | mutex_unlock(&fs_info->chunk_mutex); |
| 11250 | |
| 11251 | if (ret) |
| 11252 | break; |
| 11253 | |
| 11254 | start += len; |
| 11255 | *trimmed += bytes; |
| 11256 | |
Nikolay Borisov | c2d1b3a | 2019-03-25 14:31:21 +0200 | [diff] [blame] | 11257 | /* We've trimmed enough */ |
| 11258 | if (*trimmed >= range->len) |
| 11259 | break; |
| 11260 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11261 | if (fatal_signal_pending(current)) { |
| 11262 | ret = -ERESTARTSYS; |
| 11263 | break; |
| 11264 | } |
| 11265 | |
| 11266 | cond_resched(); |
| 11267 | } |
| 11268 | |
| 11269 | return ret; |
| 11270 | } |
| 11271 | |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11272 | /* |
| 11273 | * Trim the whole filesystem by: |
| 11274 | * 1) trimming the free space in each block group |
| 11275 | * 2) trimming the unallocated space on each device |
| 11276 | * |
| 11277 | * This will also continue trimming even if a block group or device encounters |
| 11278 | * an error. The return value will be the last error, or 0 if nothing bad |
| 11279 | * happens. |
| 11280 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 11281 | int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range) |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11282 | { |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11283 | struct btrfs_block_group_cache *cache = NULL; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11284 | struct btrfs_device *device; |
| 11285 | struct list_head *devices; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11286 | u64 group_trimmed; |
| 11287 | u64 start; |
| 11288 | u64 end; |
| 11289 | u64 trimmed = 0; |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11290 | u64 bg_failed = 0; |
| 11291 | u64 dev_failed = 0; |
| 11292 | int bg_ret = 0; |
| 11293 | int dev_ret = 0; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11294 | int ret = 0; |
| 11295 | |
Qu Wenruo | 6ba9fc8 | 2018-09-07 14:16:24 +0800 | [diff] [blame] | 11296 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
David Sterba | f87b7eb | 2019-03-20 12:01:07 +0100 | [diff] [blame] | 11297 | for (; cache; cache = next_block_group(cache)) { |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11298 | if (cache->key.objectid >= (range->start + range->len)) { |
| 11299 | btrfs_put_block_group(cache); |
| 11300 | break; |
| 11301 | } |
| 11302 | |
| 11303 | start = max(range->start, cache->key.objectid); |
| 11304 | end = min(range->start + range->len, |
| 11305 | cache->key.objectid + cache->key.offset); |
| 11306 | |
| 11307 | if (end - start >= range->minlen) { |
| 11308 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 11309 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 11310 | if (ret) { |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11311 | bg_failed++; |
| 11312 | bg_ret = ret; |
| 11313 | continue; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 11314 | } |
| 11315 | ret = wait_block_group_cache_done(cache); |
| 11316 | if (ret) { |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11317 | bg_failed++; |
| 11318 | bg_ret = ret; |
| 11319 | continue; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 11320 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11321 | } |
| 11322 | ret = btrfs_trim_block_group(cache, |
| 11323 | &group_trimmed, |
| 11324 | start, |
| 11325 | end, |
| 11326 | range->minlen); |
| 11327 | |
| 11328 | trimmed += group_trimmed; |
| 11329 | if (ret) { |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11330 | bg_failed++; |
| 11331 | bg_ret = ret; |
| 11332 | continue; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11333 | } |
| 11334 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11335 | } |
| 11336 | |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11337 | if (bg_failed) |
| 11338 | btrfs_warn(fs_info, |
| 11339 | "failed to trim %llu block group(s), last error %d", |
| 11340 | bg_failed, bg_ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 11341 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | d4e329d | 2018-09-06 17:18:14 -0400 | [diff] [blame] | 11342 | devices = &fs_info->fs_devices->devices; |
| 11343 | list_for_each_entry(device, devices, dev_list) { |
Nikolay Borisov | c2d1b3a | 2019-03-25 14:31:21 +0200 | [diff] [blame] | 11344 | ret = btrfs_trim_free_extents(device, range, &group_trimmed); |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11345 | if (ret) { |
| 11346 | dev_failed++; |
| 11347 | dev_ret = ret; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11348 | break; |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11349 | } |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11350 | |
| 11351 | trimmed += group_trimmed; |
| 11352 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 11353 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 11354 | |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11355 | if (dev_failed) |
| 11356 | btrfs_warn(fs_info, |
| 11357 | "failed to trim %llu device(s), last error %d", |
| 11358 | dev_failed, dev_ret); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11359 | range->len = trimmed; |
Qu Wenruo | 93bba24 | 2018-09-07 14:16:23 +0800 | [diff] [blame] | 11360 | if (bg_ret) |
| 11361 | return bg_ret; |
| 11362 | return dev_ret; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 11363 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11364 | |
| 11365 | /* |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 11366 | * btrfs_{start,end}_write_no_snapshotting() are similar to |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11367 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 11368 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 11369 | * but flush the data into disk after the snapshot creation, or to prevent |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 11370 | * operations while snapshotting is ongoing and that cause the snapshot to be |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11371 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11372 | */ |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 11373 | void btrfs_end_write_no_snapshotting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11374 | { |
| 11375 | percpu_counter_dec(&root->subv_writers->counter); |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 11376 | cond_wake_up(&root->subv_writers->wait); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11377 | } |
| 11378 | |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 11379 | int btrfs_start_write_no_snapshotting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11380 | { |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 11381 | if (atomic_read(&root->will_be_snapshotted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11382 | return 0; |
| 11383 | |
| 11384 | percpu_counter_inc(&root->subv_writers->counter); |
| 11385 | /* |
| 11386 | * Make sure counter is updated before we check for snapshot creation. |
| 11387 | */ |
| 11388 | smp_mb(); |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 11389 | if (atomic_read(&root->will_be_snapshotted)) { |
| 11390 | btrfs_end_write_no_snapshotting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11391 | return 0; |
| 11392 | } |
| 11393 | return 1; |
| 11394 | } |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11395 | |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11396 | void btrfs_wait_for_snapshot_creation(struct btrfs_root *root) |
| 11397 | { |
| 11398 | while (true) { |
| 11399 | int ret; |
| 11400 | |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 11401 | ret = btrfs_start_write_no_snapshotting(root); |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11402 | if (ret) |
| 11403 | break; |
Peter Zijlstra | 4625956 | 2018-03-15 11:43:08 +0100 | [diff] [blame] | 11404 | wait_var_event(&root->will_be_snapshotted, |
| 11405 | !atomic_read(&root->will_be_snapshotted)); |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11406 | } |
| 11407 | } |
Qu Wenruo | 031f24d | 2018-05-22 16:43:47 +0800 | [diff] [blame] | 11408 | |
| 11409 | void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg) |
| 11410 | { |
| 11411 | struct btrfs_fs_info *fs_info = bg->fs_info; |
| 11412 | |
| 11413 | spin_lock(&fs_info->unused_bgs_lock); |
| 11414 | if (list_empty(&bg->bg_list)) { |
| 11415 | btrfs_get_block_group(bg); |
| 11416 | trace_btrfs_add_unused_block_group(bg); |
| 11417 | list_add_tail(&bg->bg_list, &fs_info->unused_bgs); |
| 11418 | } |
| 11419 | spin_unlock(&fs_info->unused_bgs_lock); |
| 11420 | } |