Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Oracle. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public |
| 6 | * License v2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public |
| 14 | * License along with this program; if not, write to the |
| 15 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 16 | * Boston, MA 021110-1307, USA. |
| 17 | */ |
Zach Brown | ec6b910 | 2007-07-11 10:00:37 -0400 | [diff] [blame] | 18 | #include <linux/sched.h> |
Ingo Molnar | f361bf4 | 2017-02-03 23:47:37 +0100 | [diff] [blame] | 19 | #include <linux/sched/signal.h> |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 20 | #include <linux/pagemap.h> |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 21 | #include <linux/writeback.h> |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 22 | #include <linux/blkdev.h> |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 23 | #include <linux/sort.h> |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 24 | #include <linux/rcupdate.h> |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 25 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 26 | #include <linux/slab.h> |
David Sterba | dff51cd | 2011-06-14 12:52:17 +0200 | [diff] [blame] | 27 | #include <linux/ratelimit.h> |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 28 | #include <linux/percpu_counter.h> |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 29 | #include "hash.h" |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 30 | #include "tree-log.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 31 | #include "disk-io.h" |
| 32 | #include "print-tree.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 33 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 34 | #include "raid56.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 35 | #include "locking.h" |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 36 | #include "free-space-cache.h" |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 37 | #include "free-space-tree.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 38 | #include "math.h" |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 39 | #include "sysfs.h" |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 40 | #include "qgroup.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 41 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 42 | #undef SCRAMBLE_DELAYED_REFS |
| 43 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 44 | /* |
| 45 | * control flags for do_chunk_alloc's force field |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 46 | * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk |
| 47 | * if we really need one. |
| 48 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 49 | * CHUNK_ALLOC_LIMITED means to only try and allocate one |
| 50 | * if we have very few chunks already allocated. This is |
| 51 | * used as part of the clustering code to help make sure |
| 52 | * we have a good pool of storage to cluster in, without |
| 53 | * filling the FS with empty chunks |
| 54 | * |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 55 | * CHUNK_ALLOC_FORCE means it must try to allocate one |
| 56 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 57 | */ |
| 58 | enum { |
| 59 | CHUNK_ALLOC_NO_FORCE = 0, |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 60 | CHUNK_ALLOC_LIMITED = 1, |
| 61 | CHUNK_ALLOC_FORCE = 2, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 62 | }; |
| 63 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 64 | static int update_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 65 | struct btrfs_fs_info *fs_info, u64 bytenr, |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 66 | u64 num_bytes, int alloc); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 67 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 68 | struct btrfs_fs_info *fs_info, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 69 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 70 | u64 root_objectid, u64 owner_objectid, |
| 71 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 72 | struct btrfs_delayed_extent_op *extra_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 73 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 74 | struct extent_buffer *leaf, |
| 75 | struct btrfs_extent_item *ei); |
| 76 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 77 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 78 | u64 parent, u64 root_objectid, |
| 79 | u64 flags, u64 owner, u64 offset, |
| 80 | struct btrfs_key *ins, int ref_mod); |
| 81 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 82 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 83 | u64 parent, u64 root_objectid, |
| 84 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 85 | int level, struct btrfs_key *ins); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 86 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 87 | struct btrfs_fs_info *fs_info, 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); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 94 | static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 95 | u64 ram_bytes, u64 num_bytes, int delalloc); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 96 | static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 97 | u64 num_bytes, int delalloc); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 98 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 99 | u64 num_bytes); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 100 | static int __reserve_metadata_bytes(struct btrfs_root *root, |
| 101 | struct btrfs_space_info *space_info, |
| 102 | u64 orig_bytes, |
| 103 | enum btrfs_reserve_flush_enum flush); |
| 104 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 105 | struct btrfs_space_info *space_info, |
| 106 | u64 num_bytes); |
| 107 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 108 | struct btrfs_space_info *space_info, |
| 109 | u64 num_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 110 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 111 | static noinline int |
| 112 | block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 113 | { |
| 114 | smp_mb(); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 115 | return cache->cached == BTRFS_CACHE_FINISHED || |
| 116 | cache->cached == BTRFS_CACHE_ERROR; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 117 | } |
| 118 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 119 | static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits) |
| 120 | { |
| 121 | return (cache->flags & bits) == bits; |
| 122 | } |
| 123 | |
Filipe Manana | 758f2df | 2015-11-19 11:45:48 +0000 | [diff] [blame] | 124 | void btrfs_get_block_group(struct btrfs_block_group_cache *cache) |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 125 | { |
| 126 | atomic_inc(&cache->count); |
| 127 | } |
| 128 | |
| 129 | void btrfs_put_block_group(struct btrfs_block_group_cache *cache) |
| 130 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 131 | if (atomic_dec_and_test(&cache->count)) { |
| 132 | WARN_ON(cache->pinned > 0); |
| 133 | WARN_ON(cache->reserved > 0); |
Qu Wenruo | 0966a7b | 2017-04-14 08:35:54 +0800 | [diff] [blame] | 134 | |
| 135 | /* |
| 136 | * If not empty, someone is still holding mutex of |
| 137 | * full_stripe_lock, which can only be released by caller. |
| 138 | * And it will definitely cause use-after-free when caller |
| 139 | * tries to release full stripe lock. |
| 140 | * |
| 141 | * No better way to resolve, but only to warn. |
| 142 | */ |
| 143 | WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root)); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 144 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 145 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 146 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 149 | /* |
| 150 | * this adds the block group to the fs_info rb tree for the block group |
| 151 | * cache |
| 152 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 153 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 154 | struct btrfs_block_group_cache *block_group) |
| 155 | { |
| 156 | struct rb_node **p; |
| 157 | struct rb_node *parent = NULL; |
| 158 | struct btrfs_block_group_cache *cache; |
| 159 | |
| 160 | spin_lock(&info->block_group_cache_lock); |
| 161 | p = &info->block_group_cache_tree.rb_node; |
| 162 | |
| 163 | while (*p) { |
| 164 | parent = *p; |
| 165 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 166 | cache_node); |
| 167 | if (block_group->key.objectid < cache->key.objectid) { |
| 168 | p = &(*p)->rb_left; |
| 169 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 170 | p = &(*p)->rb_right; |
| 171 | } else { |
| 172 | spin_unlock(&info->block_group_cache_lock); |
| 173 | return -EEXIST; |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | rb_link_node(&block_group->cache_node, parent, p); |
| 178 | rb_insert_color(&block_group->cache_node, |
| 179 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 180 | |
| 181 | if (info->first_logical_byte > block_group->key.objectid) |
| 182 | info->first_logical_byte = block_group->key.objectid; |
| 183 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 184 | spin_unlock(&info->block_group_cache_lock); |
| 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
| 189 | /* |
| 190 | * This will return the block group at or after bytenr if contains is 0, else |
| 191 | * it will return the block group that contains the bytenr |
| 192 | */ |
| 193 | static struct btrfs_block_group_cache * |
| 194 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 195 | int contains) |
| 196 | { |
| 197 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 198 | struct rb_node *n; |
| 199 | u64 end, start; |
| 200 | |
| 201 | spin_lock(&info->block_group_cache_lock); |
| 202 | n = info->block_group_cache_tree.rb_node; |
| 203 | |
| 204 | while (n) { |
| 205 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 206 | cache_node); |
| 207 | end = cache->key.objectid + cache->key.offset - 1; |
| 208 | start = cache->key.objectid; |
| 209 | |
| 210 | if (bytenr < start) { |
| 211 | if (!contains && (!ret || start < ret->key.objectid)) |
| 212 | ret = cache; |
| 213 | n = n->rb_left; |
| 214 | } else if (bytenr > start) { |
| 215 | if (contains && bytenr <= end) { |
| 216 | ret = cache; |
| 217 | break; |
| 218 | } |
| 219 | n = n->rb_right; |
| 220 | } else { |
| 221 | ret = cache; |
| 222 | break; |
| 223 | } |
| 224 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 225 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 226 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 227 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 228 | info->first_logical_byte = ret->key.objectid; |
| 229 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 230 | spin_unlock(&info->block_group_cache_lock); |
| 231 | |
| 232 | return ret; |
| 233 | } |
| 234 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 235 | static int add_excluded_extent(struct btrfs_fs_info *fs_info, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 236 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 237 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 238 | u64 end = start + num_bytes - 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 239 | set_extent_bits(&fs_info->freed_extents[0], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 240 | start, end, EXTENT_UPTODATE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 241 | set_extent_bits(&fs_info->freed_extents[1], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 242 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 243 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 244 | } |
| 245 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 246 | static void free_excluded_extents(struct btrfs_fs_info *fs_info, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 247 | struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 248 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 249 | u64 start, end; |
| 250 | |
| 251 | start = cache->key.objectid; |
| 252 | end = start + cache->key.offset - 1; |
| 253 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 254 | clear_extent_bits(&fs_info->freed_extents[0], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 255 | start, end, EXTENT_UPTODATE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 256 | clear_extent_bits(&fs_info->freed_extents[1], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 257 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 258 | } |
| 259 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 260 | static int exclude_super_stripes(struct btrfs_fs_info *fs_info, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 261 | struct btrfs_block_group_cache *cache) |
| 262 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 263 | u64 bytenr; |
| 264 | u64 *logical; |
| 265 | int stripe_len; |
| 266 | int i, nr, ret; |
| 267 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 268 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 269 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 270 | cache->bytes_super += stripe_len; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 271 | ret = add_excluded_extent(fs_info, cache->key.objectid, |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 272 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 273 | if (ret) |
| 274 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 277 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 278 | bytenr = btrfs_sb_offset(i); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 279 | ret = btrfs_rmap_block(fs_info, cache->key.objectid, |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 280 | bytenr, 0, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 281 | if (ret) |
| 282 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 283 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 284 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 285 | u64 start, len; |
| 286 | |
| 287 | if (logical[nr] > cache->key.objectid + |
| 288 | cache->key.offset) |
| 289 | continue; |
| 290 | |
| 291 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 292 | continue; |
| 293 | |
| 294 | start = logical[nr]; |
| 295 | if (start < cache->key.objectid) { |
| 296 | start = cache->key.objectid; |
| 297 | len = (logical[nr] + stripe_len) - start; |
| 298 | } else { |
| 299 | len = min_t(u64, stripe_len, |
| 300 | cache->key.objectid + |
| 301 | cache->key.offset - start); |
| 302 | } |
| 303 | |
| 304 | cache->bytes_super += len; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 305 | ret = add_excluded_extent(fs_info, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 306 | if (ret) { |
| 307 | kfree(logical); |
| 308 | return ret; |
| 309 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 310 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 311 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 312 | kfree(logical); |
| 313 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 314 | return 0; |
| 315 | } |
| 316 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 317 | static struct btrfs_caching_control * |
| 318 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 319 | { |
| 320 | struct btrfs_caching_control *ctl; |
| 321 | |
| 322 | spin_lock(&cache->lock); |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 323 | if (!cache->caching_ctl) { |
| 324 | spin_unlock(&cache->lock); |
| 325 | return NULL; |
| 326 | } |
| 327 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 328 | ctl = cache->caching_ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 329 | refcount_inc(&ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 330 | spin_unlock(&cache->lock); |
| 331 | return ctl; |
| 332 | } |
| 333 | |
| 334 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 335 | { |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 336 | if (refcount_dec_and_test(&ctl->count)) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 337 | kfree(ctl); |
| 338 | } |
| 339 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 340 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 341 | static void fragment_free_space(struct btrfs_block_group_cache *block_group) |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 342 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 343 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 344 | u64 start = block_group->key.objectid; |
| 345 | u64 len = block_group->key.offset; |
| 346 | u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ? |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 347 | fs_info->nodesize : fs_info->sectorsize; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 348 | u64 step = chunk << 1; |
| 349 | |
| 350 | while (len > chunk) { |
| 351 | btrfs_remove_free_space(block_group, start, chunk); |
| 352 | start += step; |
| 353 | if (len < step) |
| 354 | len = 0; |
| 355 | else |
| 356 | len -= step; |
| 357 | } |
| 358 | } |
| 359 | #endif |
| 360 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 361 | /* |
| 362 | * this is only called by cache_block_group, since we could have freed extents |
| 363 | * we need to check the pinned_extents for any extents that can't be used yet |
| 364 | * since their free space will be released as soon as the transaction commits. |
| 365 | */ |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 366 | u64 add_new_free_space(struct btrfs_block_group_cache *block_group, |
| 367 | struct btrfs_fs_info *info, u64 start, u64 end) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 368 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 369 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 370 | int ret; |
| 371 | |
| 372 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 373 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 374 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 375 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 376 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 377 | if (ret) |
| 378 | break; |
| 379 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 380 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 381 | start = extent_end + 1; |
| 382 | } else if (extent_start > start && extent_start < end) { |
| 383 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 384 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 385 | ret = btrfs_add_free_space(block_group, start, |
| 386 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 387 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 388 | start = extent_end + 1; |
| 389 | } else { |
| 390 | break; |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | if (start < end) { |
| 395 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 396 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 397 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 398 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 399 | } |
| 400 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 401 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 402 | } |
| 403 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 404 | static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 405 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 406 | struct btrfs_block_group_cache *block_group = caching_ctl->block_group; |
| 407 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
| 408 | struct btrfs_root *extent_root = fs_info->extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 409 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 410 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 411 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 412 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 413 | u64 last = 0; |
| 414 | u32 nritems; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 415 | int ret; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 416 | bool wakeup = true; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 417 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 418 | path = btrfs_alloc_path(); |
| 419 | if (!path) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 420 | return -ENOMEM; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 421 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 422 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 423 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 424 | #ifdef CONFIG_BTRFS_DEBUG |
| 425 | /* |
| 426 | * If we're fragmenting we don't want to make anybody think we can |
| 427 | * allocate from this block group until we've had a chance to fragment |
| 428 | * the free space. |
| 429 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 430 | if (btrfs_should_fragment_free_space(block_group)) |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 431 | wakeup = false; |
| 432 | #endif |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 433 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 434 | * We don't want to deadlock with somebody trying to allocate a new |
| 435 | * extent for the extent root while also trying to search the extent |
| 436 | * root to add free space. So we skip locking and search the commit |
| 437 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 438 | */ |
| 439 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 440 | path->search_commit_root = 1; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 441 | path->reada = READA_FORWARD; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 442 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 443 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 444 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 445 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 446 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 447 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 448 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 449 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 450 | goto out; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 451 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 452 | leaf = path->nodes[0]; |
| 453 | nritems = btrfs_header_nritems(leaf); |
| 454 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 455 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 456 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 457 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 458 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 459 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 460 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 461 | if (path->slots[0] < nritems) { |
| 462 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 463 | } else { |
| 464 | ret = find_next_key(path, 0, &key); |
| 465 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 466 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 467 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 468 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 469 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 470 | if (wakeup) |
| 471 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 472 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 473 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 474 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 475 | cond_resched(); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 476 | mutex_lock(&caching_ctl->mutex); |
| 477 | down_read(&fs_info->commit_root_sem); |
| 478 | goto next; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 479 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 480 | |
| 481 | ret = btrfs_next_leaf(extent_root, path); |
| 482 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 483 | goto out; |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 484 | if (ret) |
| 485 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 486 | leaf = path->nodes[0]; |
| 487 | nritems = btrfs_header_nritems(leaf); |
| 488 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 489 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 490 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 491 | if (key.objectid < last) { |
| 492 | key.objectid = last; |
| 493 | key.offset = 0; |
| 494 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 495 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 496 | if (wakeup) |
| 497 | caching_ctl->progress = last; |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 498 | btrfs_release_path(path); |
| 499 | goto next; |
| 500 | } |
| 501 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 502 | if (key.objectid < block_group->key.objectid) { |
| 503 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 504 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 505 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 506 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 507 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 508 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 509 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 510 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 511 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 512 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 513 | total_found += add_new_free_space(block_group, |
| 514 | fs_info, last, |
| 515 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 516 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 517 | last = key.objectid + |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 518 | fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 519 | else |
| 520 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 521 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 522 | if (total_found > CACHING_CTL_WAKE_UP) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 523 | total_found = 0; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 524 | if (wakeup) |
| 525 | wake_up(&caching_ctl->wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 526 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 527 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 528 | path->slots[0]++; |
| 529 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 530 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 531 | |
| 532 | total_found += add_new_free_space(block_group, fs_info, last, |
| 533 | block_group->key.objectid + |
| 534 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 535 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 536 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 537 | out: |
| 538 | btrfs_free_path(path); |
| 539 | return ret; |
| 540 | } |
| 541 | |
| 542 | static noinline void caching_thread(struct btrfs_work *work) |
| 543 | { |
| 544 | struct btrfs_block_group_cache *block_group; |
| 545 | struct btrfs_fs_info *fs_info; |
| 546 | struct btrfs_caching_control *caching_ctl; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 547 | struct btrfs_root *extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 548 | int ret; |
| 549 | |
| 550 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 551 | block_group = caching_ctl->block_group; |
| 552 | fs_info = block_group->fs_info; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 553 | extent_root = fs_info->extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 554 | |
| 555 | mutex_lock(&caching_ctl->mutex); |
| 556 | down_read(&fs_info->commit_root_sem); |
| 557 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 558 | if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) |
| 559 | ret = load_free_space_tree(caching_ctl); |
| 560 | else |
| 561 | ret = load_extent_tree_free(caching_ctl); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 562 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 563 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 564 | block_group->caching_ctl = NULL; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 565 | block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 566 | spin_unlock(&block_group->lock); |
| 567 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 568 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 569 | if (btrfs_should_fragment_free_space(block_group)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 570 | u64 bytes_used; |
| 571 | |
| 572 | spin_lock(&block_group->space_info->lock); |
| 573 | spin_lock(&block_group->lock); |
| 574 | bytes_used = block_group->key.offset - |
| 575 | btrfs_block_group_used(&block_group->item); |
| 576 | block_group->space_info->bytes_used += bytes_used >> 1; |
| 577 | spin_unlock(&block_group->lock); |
| 578 | spin_unlock(&block_group->space_info->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 579 | fragment_free_space(block_group); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 580 | } |
| 581 | #endif |
| 582 | |
| 583 | caching_ctl->progress = (u64)-1; |
Chris Mason | f7d3d2f | 2015-12-18 11:11:10 -0800 | [diff] [blame] | 584 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 585 | up_read(&fs_info->commit_root_sem); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 586 | free_excluded_extents(fs_info, block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 587 | mutex_unlock(&caching_ctl->mutex); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 588 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 589 | wake_up(&caching_ctl->wait); |
| 590 | |
| 591 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 592 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 593 | } |
| 594 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 595 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 596 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 597 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 598 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 599 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 600 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 601 | int ret = 0; |
| 602 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 603 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 604 | if (!caching_ctl) |
| 605 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 606 | |
| 607 | INIT_LIST_HEAD(&caching_ctl->list); |
| 608 | mutex_init(&caching_ctl->mutex); |
| 609 | init_waitqueue_head(&caching_ctl->wait); |
| 610 | caching_ctl->block_group = cache; |
| 611 | caching_ctl->progress = cache->key.objectid; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 612 | refcount_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 613 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 614 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 615 | |
| 616 | spin_lock(&cache->lock); |
| 617 | /* |
| 618 | * This should be a rare occasion, but this could happen I think in the |
| 619 | * case where one thread starts to load the space cache info, and then |
| 620 | * some other thread starts a transaction commit which tries to do an |
| 621 | * allocation while the other thread is still loading the space cache |
| 622 | * info. The previous loop should have kept us from choosing this block |
| 623 | * group, but if we've moved to the state where we will wait on caching |
| 624 | * block groups we need to first check if we're doing a fast load here, |
| 625 | * so we can wait for it to finish, otherwise we could end up allocating |
| 626 | * from a block group who's cache gets evicted for one reason or |
| 627 | * another. |
| 628 | */ |
| 629 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 630 | struct btrfs_caching_control *ctl; |
| 631 | |
| 632 | ctl = cache->caching_ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 633 | refcount_inc(&ctl->count); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 634 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 635 | spin_unlock(&cache->lock); |
| 636 | |
| 637 | schedule(); |
| 638 | |
| 639 | finish_wait(&ctl->wait, &wait); |
| 640 | put_caching_control(ctl); |
| 641 | spin_lock(&cache->lock); |
| 642 | } |
| 643 | |
| 644 | if (cache->cached != BTRFS_CACHE_NO) { |
| 645 | spin_unlock(&cache->lock); |
| 646 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 647 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 648 | } |
| 649 | WARN_ON(cache->caching_ctl); |
| 650 | cache->caching_ctl = caching_ctl; |
| 651 | cache->cached = BTRFS_CACHE_FAST; |
| 652 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 653 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 654 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 655 | mutex_lock(&caching_ctl->mutex); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 656 | ret = load_free_space_cache(fs_info, cache); |
| 657 | |
| 658 | spin_lock(&cache->lock); |
| 659 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 660 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 661 | cache->cached = BTRFS_CACHE_FINISHED; |
| 662 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 663 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 664 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 665 | if (load_cache_only) { |
| 666 | cache->caching_ctl = NULL; |
| 667 | cache->cached = BTRFS_CACHE_NO; |
| 668 | } else { |
| 669 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 670 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 671 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 672 | } |
| 673 | spin_unlock(&cache->lock); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 674 | #ifdef CONFIG_BTRFS_DEBUG |
| 675 | if (ret == 1 && |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 676 | btrfs_should_fragment_free_space(cache)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 677 | u64 bytes_used; |
| 678 | |
| 679 | spin_lock(&cache->space_info->lock); |
| 680 | spin_lock(&cache->lock); |
| 681 | bytes_used = cache->key.offset - |
| 682 | btrfs_block_group_used(&cache->item); |
| 683 | cache->space_info->bytes_used += bytes_used >> 1; |
| 684 | spin_unlock(&cache->lock); |
| 685 | spin_unlock(&cache->space_info->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 686 | fragment_free_space(cache); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 687 | } |
| 688 | #endif |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 689 | mutex_unlock(&caching_ctl->mutex); |
| 690 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 691 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 692 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 693 | put_caching_control(caching_ctl); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 694 | free_excluded_extents(fs_info, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 695 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 696 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 697 | } else { |
| 698 | /* |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 699 | * We're either using the free space tree or no caching at all. |
| 700 | * Set cached to the appropriate value and wakeup any waiters. |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 701 | */ |
| 702 | spin_lock(&cache->lock); |
| 703 | if (load_cache_only) { |
| 704 | cache->caching_ctl = NULL; |
| 705 | cache->cached = BTRFS_CACHE_NO; |
| 706 | } else { |
| 707 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 708 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 709 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 710 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 711 | wake_up(&caching_ctl->wait); |
| 712 | } |
| 713 | |
| 714 | if (load_cache_only) { |
| 715 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 716 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 717 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 718 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 719 | down_write(&fs_info->commit_root_sem); |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 720 | refcount_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 721 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 722 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 723 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 724 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 725 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 726 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 727 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 728 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 729 | } |
| 730 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 731 | /* |
| 732 | * return the block group that starts at or after bytenr |
| 733 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 734 | static struct btrfs_block_group_cache * |
| 735 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -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, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 738 | } |
| 739 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 740 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 741 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 742 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 743 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 744 | struct btrfs_fs_info *info, |
| 745 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 746 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 747 | return block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 748 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 749 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 750 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 751 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 752 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 753 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 754 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 755 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 756 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 757 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 758 | rcu_read_lock(); |
| 759 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 760 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 761 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 762 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 763 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 764 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 765 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 766 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 767 | } |
| 768 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 769 | /* |
| 770 | * after adding space to the filesystem, we need to clear the full flags |
| 771 | * on all the space infos. |
| 772 | */ |
| 773 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 774 | { |
| 775 | struct list_head *head = &info->space_info; |
| 776 | struct btrfs_space_info *found; |
| 777 | |
| 778 | rcu_read_lock(); |
| 779 | list_for_each_entry_rcu(found, head, list) |
| 780 | found->full = 0; |
| 781 | rcu_read_unlock(); |
| 782 | } |
| 783 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 784 | /* 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] | 785 | 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] | 786 | { |
| 787 | int ret; |
| 788 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 789 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 790 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 791 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 792 | if (!path) |
| 793 | return -ENOMEM; |
| 794 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 795 | key.objectid = start; |
| 796 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 797 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 798 | 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] | 799 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 800 | return ret; |
| 801 | } |
| 802 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 803 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 804 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 805 | * |
| 806 | * the head node for delayed ref is used to store the sum of all the |
| 807 | * reference count modifications queued up in the rbtree. the head |
| 808 | * node may also store the extent flags to set. This way you can check |
| 809 | * to see what the reference count and extent flags would be if all of |
| 810 | * the delayed refs are not processed. |
| 811 | */ |
| 812 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 813 | struct btrfs_fs_info *fs_info, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 814 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 815 | { |
| 816 | struct btrfs_delayed_ref_head *head; |
| 817 | struct btrfs_delayed_ref_root *delayed_refs; |
| 818 | struct btrfs_path *path; |
| 819 | struct btrfs_extent_item *ei; |
| 820 | struct extent_buffer *leaf; |
| 821 | struct btrfs_key key; |
| 822 | u32 item_size; |
| 823 | u64 num_refs; |
| 824 | u64 extent_flags; |
| 825 | int ret; |
| 826 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 827 | /* |
| 828 | * If we don't have skinny metadata, don't bother doing anything |
| 829 | * different |
| 830 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 831 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) { |
| 832 | offset = fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 833 | metadata = 0; |
| 834 | } |
| 835 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 836 | path = btrfs_alloc_path(); |
| 837 | if (!path) |
| 838 | return -ENOMEM; |
| 839 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 840 | if (!trans) { |
| 841 | path->skip_locking = 1; |
| 842 | path->search_commit_root = 1; |
| 843 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 844 | |
| 845 | search_again: |
| 846 | key.objectid = bytenr; |
| 847 | key.offset = offset; |
| 848 | if (metadata) |
| 849 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 850 | else |
| 851 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 852 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 853 | 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] | 854 | if (ret < 0) |
| 855 | goto out_free; |
| 856 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 857 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 858 | if (path->slots[0]) { |
| 859 | path->slots[0]--; |
| 860 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 861 | path->slots[0]); |
| 862 | if (key.objectid == bytenr && |
| 863 | key.type == BTRFS_EXTENT_ITEM_KEY && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 864 | key.offset == fs_info->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 865 | ret = 0; |
| 866 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 867 | } |
| 868 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 869 | if (ret == 0) { |
| 870 | leaf = path->nodes[0]; |
| 871 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 872 | if (item_size >= sizeof(*ei)) { |
| 873 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 874 | struct btrfs_extent_item); |
| 875 | num_refs = btrfs_extent_refs(leaf, ei); |
| 876 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 877 | } else { |
| 878 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 879 | struct btrfs_extent_item_v0 *ei0; |
| 880 | BUG_ON(item_size != sizeof(*ei0)); |
| 881 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 882 | struct btrfs_extent_item_v0); |
| 883 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 884 | /* FIXME: this isn't correct for data */ |
| 885 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 886 | #else |
| 887 | BUG(); |
| 888 | #endif |
| 889 | } |
| 890 | BUG_ON(num_refs == 0); |
| 891 | } else { |
| 892 | num_refs = 0; |
| 893 | extent_flags = 0; |
| 894 | ret = 0; |
| 895 | } |
| 896 | |
| 897 | if (!trans) |
| 898 | goto out; |
| 899 | |
| 900 | delayed_refs = &trans->transaction->delayed_refs; |
| 901 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 902 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 903 | if (head) { |
| 904 | if (!mutex_trylock(&head->mutex)) { |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 905 | refcount_inc(&head->node.refs); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 906 | spin_unlock(&delayed_refs->lock); |
| 907 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 908 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 909 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 910 | /* |
| 911 | * Mutex was contended, block until it's released and try |
| 912 | * again |
| 913 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 914 | mutex_lock(&head->mutex); |
| 915 | mutex_unlock(&head->mutex); |
| 916 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 917 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 918 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 919 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 920 | if (head->extent_op && head->extent_op->update_flags) |
| 921 | extent_flags |= head->extent_op->flags_to_set; |
| 922 | else |
| 923 | BUG_ON(num_refs == 0); |
| 924 | |
| 925 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 926 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 927 | mutex_unlock(&head->mutex); |
| 928 | } |
| 929 | spin_unlock(&delayed_refs->lock); |
| 930 | out: |
| 931 | WARN_ON(num_refs == 0); |
| 932 | if (refs) |
| 933 | *refs = num_refs; |
| 934 | if (flags) |
| 935 | *flags = extent_flags; |
| 936 | out_free: |
| 937 | btrfs_free_path(path); |
| 938 | return ret; |
| 939 | } |
| 940 | |
| 941 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 942 | * Back reference rules. Back refs have three main goals: |
| 943 | * |
| 944 | * 1) differentiate between all holders of references to an extent so that |
| 945 | * when a reference is dropped we can make sure it was a valid reference |
| 946 | * before freeing the extent. |
| 947 | * |
| 948 | * 2) Provide enough information to quickly find the holders of an extent |
| 949 | * if we notice a given block is corrupted or bad. |
| 950 | * |
| 951 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 952 | * maintenance. This is actually the same as #2, but with a slightly |
| 953 | * different use case. |
| 954 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 955 | * There are two kinds of back refs. The implicit back refs is optimized |
| 956 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 957 | * back refs of this kind provide information about the block's owner tree |
| 958 | * and the pointer's key. These information allow us to find the block by |
| 959 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 960 | * referenced by their owner trees. The location of tree block is recorded |
| 961 | * in the back refs. Actually the full back refs is generic, and can be |
| 962 | * used in all cases the implicit back refs is used. The major shortcoming |
| 963 | * of the full back refs is its overhead. Every time a tree block gets |
| 964 | * COWed, we have to update back refs entry for all pointers in it. |
| 965 | * |
| 966 | * For a newly allocated tree block, we use implicit back refs for |
| 967 | * pointers in it. This means most tree related operations only involve |
| 968 | * implicit back refs. For a tree block created in old transaction, the |
| 969 | * only way to drop a reference to it is COW it. So we can detect the |
| 970 | * event that tree block loses its owner tree's reference and do the |
| 971 | * back refs conversion. |
| 972 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 973 | * 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] | 974 | * |
| 975 | * The reference count of the block is one and the tree is the block's |
| 976 | * owner tree. Nothing to do in this case. |
| 977 | * |
| 978 | * The reference count of the block is one and the tree is not the |
| 979 | * block's owner tree. In this case, full back refs is used for pointers |
| 980 | * in the block. Remove these full back refs, add implicit back refs for |
| 981 | * every pointers in the new block. |
| 982 | * |
| 983 | * The reference count of the block is greater than one and the tree is |
| 984 | * the block's owner tree. In this case, implicit back refs is used for |
| 985 | * pointers in the block. Add full back refs for every pointers in the |
| 986 | * block, increase lower level extents' reference counts. The original |
| 987 | * implicit back refs are entailed to the new block. |
| 988 | * |
| 989 | * The reference count of the block is greater than one and the tree is |
| 990 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 991 | * the new block, increase lower level extents' reference count. |
| 992 | * |
| 993 | * Back Reference Key composing: |
| 994 | * |
| 995 | * The key objectid corresponds to the first byte in the extent, |
| 996 | * The key type is used to differentiate between types of back refs. |
| 997 | * There are different meanings of the key offset for different types |
| 998 | * of back refs. |
| 999 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1000 | * File extents can be referenced by: |
| 1001 | * |
| 1002 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1003 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1004 | * - different offsets inside a file (bookend extents in file.c) |
| 1005 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1006 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1007 | * |
| 1008 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1009 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1010 | * - original offset in the file |
| 1011 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1012 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1013 | * The key offset for the implicit back refs is hash of the first |
| 1014 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1015 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1016 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1017 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1018 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1019 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1020 | * The key offset for the implicit back refs is the first byte of |
| 1021 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1022 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1023 | * When a file extent is allocated, The implicit back refs is used. |
| 1024 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1025 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1026 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 1027 | * |
| 1028 | * When a file extent is removed file truncation, we find the |
| 1029 | * corresponding implicit back refs and check the following fields: |
| 1030 | * |
| 1031 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1032 | * |
| 1033 | * Btree extents can be referenced by: |
| 1034 | * |
| 1035 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1036 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1037 | * Both the implicit back refs and the full back refs for tree blocks |
| 1038 | * only consist of key. The key offset for the implicit back refs is |
| 1039 | * objectid of block's owner tree. The key offset for the full back refs |
| 1040 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1041 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1042 | * When implicit back refs is used, information about the lowest key and |
| 1043 | * level of the tree block are required. These information are stored in |
| 1044 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1045 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1046 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1047 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1048 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1049 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1050 | struct btrfs_path *path, |
| 1051 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1052 | { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1053 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1054 | struct btrfs_extent_item *item; |
| 1055 | struct btrfs_extent_item_v0 *ei0; |
| 1056 | struct btrfs_extent_ref_v0 *ref0; |
| 1057 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1058 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1059 | struct btrfs_key key; |
| 1060 | struct btrfs_key found_key; |
| 1061 | u32 new_size = sizeof(*item); |
| 1062 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1063 | int ret; |
| 1064 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1065 | leaf = path->nodes[0]; |
| 1066 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1067 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1068 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1069 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1070 | struct btrfs_extent_item_v0); |
| 1071 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1072 | |
| 1073 | if (owner == (u64)-1) { |
| 1074 | while (1) { |
| 1075 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1076 | ret = btrfs_next_leaf(root, path); |
| 1077 | if (ret < 0) |
| 1078 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1079 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1080 | leaf = path->nodes[0]; |
| 1081 | } |
| 1082 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1083 | path->slots[0]); |
| 1084 | BUG_ON(key.objectid != found_key.objectid); |
| 1085 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1086 | path->slots[0]++; |
| 1087 | continue; |
| 1088 | } |
| 1089 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1090 | struct btrfs_extent_ref_v0); |
| 1091 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1092 | break; |
| 1093 | } |
| 1094 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1095 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1096 | |
| 1097 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1098 | new_size += sizeof(*bi); |
| 1099 | |
| 1100 | new_size -= sizeof(*ei0); |
| 1101 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1102 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1103 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1104 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1105 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1106 | |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1107 | btrfs_extend_item(fs_info, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1108 | |
| 1109 | leaf = path->nodes[0]; |
| 1110 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1111 | btrfs_set_extent_refs(leaf, item, refs); |
| 1112 | /* FIXME: get real generation */ |
| 1113 | btrfs_set_extent_generation(leaf, item, 0); |
| 1114 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1115 | btrfs_set_extent_flags(leaf, item, |
| 1116 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1117 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1118 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1119 | /* FIXME: get first key of the block */ |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 1120 | memzero_extent_buffer(leaf, (unsigned long)bi, sizeof(*bi)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1121 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1122 | } else { |
| 1123 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1124 | } |
| 1125 | btrfs_mark_buffer_dirty(leaf); |
| 1126 | return 0; |
| 1127 | } |
| 1128 | #endif |
| 1129 | |
| 1130 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1131 | { |
| 1132 | u32 high_crc = ~(u32)0; |
| 1133 | u32 low_crc = ~(u32)0; |
| 1134 | __le64 lenum; |
| 1135 | |
| 1136 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1137 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1138 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1139 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1140 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1141 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1142 | |
| 1143 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1144 | } |
| 1145 | |
| 1146 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1147 | struct btrfs_extent_data_ref *ref) |
| 1148 | { |
| 1149 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1150 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1151 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1152 | } |
| 1153 | |
| 1154 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1155 | struct btrfs_extent_data_ref *ref, |
| 1156 | u64 root_objectid, u64 owner, u64 offset) |
| 1157 | { |
| 1158 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1159 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1160 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1161 | return 0; |
| 1162 | return 1; |
| 1163 | } |
| 1164 | |
| 1165 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1166 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1167 | struct btrfs_path *path, |
| 1168 | u64 bytenr, u64 parent, |
| 1169 | u64 root_objectid, |
| 1170 | u64 owner, u64 offset) |
| 1171 | { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1172 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1173 | struct btrfs_key key; |
| 1174 | struct btrfs_extent_data_ref *ref; |
| 1175 | struct extent_buffer *leaf; |
| 1176 | u32 nritems; |
| 1177 | int ret; |
| 1178 | int recow; |
| 1179 | int err = -ENOENT; |
| 1180 | |
| 1181 | key.objectid = bytenr; |
| 1182 | if (parent) { |
| 1183 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1184 | key.offset = parent; |
| 1185 | } else { |
| 1186 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1187 | key.offset = hash_extent_data_ref(root_objectid, |
| 1188 | owner, offset); |
| 1189 | } |
| 1190 | again: |
| 1191 | recow = 0; |
| 1192 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1193 | if (ret < 0) { |
| 1194 | err = ret; |
| 1195 | goto fail; |
| 1196 | } |
| 1197 | |
| 1198 | if (parent) { |
| 1199 | if (!ret) |
| 1200 | return 0; |
| 1201 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1202 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1203 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1204 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1205 | if (ret < 0) { |
| 1206 | err = ret; |
| 1207 | goto fail; |
| 1208 | } |
| 1209 | if (!ret) |
| 1210 | return 0; |
| 1211 | #endif |
| 1212 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1213 | } |
| 1214 | |
| 1215 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1216 | nritems = btrfs_header_nritems(leaf); |
| 1217 | while (1) { |
| 1218 | if (path->slots[0] >= nritems) { |
| 1219 | ret = btrfs_next_leaf(root, path); |
| 1220 | if (ret < 0) |
| 1221 | err = ret; |
| 1222 | if (ret) |
| 1223 | goto fail; |
| 1224 | |
| 1225 | leaf = path->nodes[0]; |
| 1226 | nritems = btrfs_header_nritems(leaf); |
| 1227 | recow = 1; |
| 1228 | } |
| 1229 | |
| 1230 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1231 | if (key.objectid != bytenr || |
| 1232 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1233 | goto fail; |
| 1234 | |
| 1235 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1236 | struct btrfs_extent_data_ref); |
| 1237 | |
| 1238 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1239 | owner, offset)) { |
| 1240 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1241 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1242 | goto again; |
| 1243 | } |
| 1244 | err = 0; |
| 1245 | break; |
| 1246 | } |
| 1247 | path->slots[0]++; |
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 | fail: |
| 1250 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1251 | } |
| 1252 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1253 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1254 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1255 | struct btrfs_path *path, |
| 1256 | u64 bytenr, u64 parent, |
| 1257 | u64 root_objectid, u64 owner, |
| 1258 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1259 | { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1260 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1261 | struct btrfs_key key; |
| 1262 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1263 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1264 | u32 num_refs; |
| 1265 | int ret; |
| 1266 | |
| 1267 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1268 | if (parent) { |
| 1269 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1270 | key.offset = parent; |
| 1271 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1272 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1273 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1274 | key.offset = hash_extent_data_ref(root_objectid, |
| 1275 | owner, offset); |
| 1276 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1277 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1278 | |
| 1279 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1280 | if (ret && ret != -EEXIST) |
| 1281 | goto fail; |
| 1282 | |
| 1283 | leaf = path->nodes[0]; |
| 1284 | if (parent) { |
| 1285 | struct btrfs_shared_data_ref *ref; |
| 1286 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1287 | struct btrfs_shared_data_ref); |
| 1288 | if (ret == 0) { |
| 1289 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1290 | } else { |
| 1291 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1292 | num_refs += refs_to_add; |
| 1293 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1294 | } |
| 1295 | } else { |
| 1296 | struct btrfs_extent_data_ref *ref; |
| 1297 | while (ret == -EEXIST) { |
| 1298 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1299 | struct btrfs_extent_data_ref); |
| 1300 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1301 | owner, offset)) |
| 1302 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1303 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1304 | key.offset++; |
| 1305 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1306 | size); |
| 1307 | if (ret && ret != -EEXIST) |
| 1308 | goto fail; |
| 1309 | |
| 1310 | leaf = path->nodes[0]; |
| 1311 | } |
| 1312 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1313 | struct btrfs_extent_data_ref); |
| 1314 | if (ret == 0) { |
| 1315 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1316 | root_objectid); |
| 1317 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1318 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1319 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1320 | } else { |
| 1321 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1322 | num_refs += refs_to_add; |
| 1323 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1324 | } |
| 1325 | } |
| 1326 | btrfs_mark_buffer_dirty(leaf); |
| 1327 | ret = 0; |
| 1328 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1329 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1330 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1331 | } |
| 1332 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1333 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1334 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1335 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1336 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1337 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1338 | struct btrfs_key key; |
| 1339 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1340 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1341 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1342 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1343 | int ret = 0; |
| 1344 | |
| 1345 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1346 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1347 | |
| 1348 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1349 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1350 | struct btrfs_extent_data_ref); |
| 1351 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1352 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1353 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1354 | struct btrfs_shared_data_ref); |
| 1355 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1356 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1357 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1358 | struct btrfs_extent_ref_v0 *ref0; |
| 1359 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1360 | struct btrfs_extent_ref_v0); |
| 1361 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1362 | #endif |
| 1363 | } else { |
| 1364 | BUG(); |
| 1365 | } |
| 1366 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1367 | BUG_ON(num_refs < refs_to_drop); |
| 1368 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1369 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1370 | if (num_refs == 0) { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1371 | ret = btrfs_del_item(trans, fs_info->extent_root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1372 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1373 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1374 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1375 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1376 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1377 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1378 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1379 | else { |
| 1380 | struct btrfs_extent_ref_v0 *ref0; |
| 1381 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1382 | struct btrfs_extent_ref_v0); |
| 1383 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1384 | } |
| 1385 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1386 | btrfs_mark_buffer_dirty(leaf); |
| 1387 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1388 | return ret; |
| 1389 | } |
| 1390 | |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 1391 | static noinline u32 extent_data_ref_count(struct btrfs_path *path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1392 | struct btrfs_extent_inline_ref *iref) |
| 1393 | { |
| 1394 | struct btrfs_key key; |
| 1395 | struct extent_buffer *leaf; |
| 1396 | struct btrfs_extent_data_ref *ref1; |
| 1397 | struct btrfs_shared_data_ref *ref2; |
| 1398 | u32 num_refs = 0; |
| 1399 | |
| 1400 | leaf = path->nodes[0]; |
| 1401 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1402 | if (iref) { |
| 1403 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1404 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1405 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1406 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1407 | } else { |
| 1408 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1409 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1410 | } |
| 1411 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1412 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1413 | struct btrfs_extent_data_ref); |
| 1414 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1415 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1416 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1417 | struct btrfs_shared_data_ref); |
| 1418 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1419 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1420 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1421 | struct btrfs_extent_ref_v0 *ref0; |
| 1422 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1423 | struct btrfs_extent_ref_v0); |
| 1424 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1425 | #endif |
| 1426 | } else { |
| 1427 | WARN_ON(1); |
| 1428 | } |
| 1429 | return num_refs; |
| 1430 | } |
| 1431 | |
| 1432 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1433 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1434 | struct btrfs_path *path, |
| 1435 | u64 bytenr, u64 parent, |
| 1436 | u64 root_objectid) |
| 1437 | { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1438 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1439 | struct btrfs_key key; |
| 1440 | int ret; |
| 1441 | |
| 1442 | key.objectid = bytenr; |
| 1443 | if (parent) { |
| 1444 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1445 | key.offset = parent; |
| 1446 | } else { |
| 1447 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1448 | key.offset = root_objectid; |
| 1449 | } |
| 1450 | |
| 1451 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1452 | if (ret > 0) |
| 1453 | ret = -ENOENT; |
| 1454 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1455 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1456 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1457 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1458 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1459 | if (ret > 0) |
| 1460 | ret = -ENOENT; |
| 1461 | } |
| 1462 | #endif |
| 1463 | return ret; |
| 1464 | } |
| 1465 | |
| 1466 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1467 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1468 | struct btrfs_path *path, |
| 1469 | u64 bytenr, u64 parent, |
| 1470 | u64 root_objectid) |
| 1471 | { |
| 1472 | struct btrfs_key key; |
| 1473 | int ret; |
| 1474 | |
| 1475 | key.objectid = bytenr; |
| 1476 | if (parent) { |
| 1477 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1478 | key.offset = parent; |
| 1479 | } else { |
| 1480 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1481 | key.offset = root_objectid; |
| 1482 | } |
| 1483 | |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1484 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, |
| 1485 | path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1486 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1487 | return ret; |
| 1488 | } |
| 1489 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1490 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1491 | { |
| 1492 | int type; |
| 1493 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1494 | if (parent > 0) |
| 1495 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1496 | else |
| 1497 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1498 | } else { |
| 1499 | if (parent > 0) |
| 1500 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1501 | else |
| 1502 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1503 | } |
| 1504 | return type; |
| 1505 | } |
| 1506 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1507 | static int find_next_key(struct btrfs_path *path, int level, |
| 1508 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1509 | |
| 1510 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1511 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1512 | if (!path->nodes[level]) |
| 1513 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1514 | if (path->slots[level] + 1 >= |
| 1515 | btrfs_header_nritems(path->nodes[level])) |
| 1516 | continue; |
| 1517 | if (level == 0) |
| 1518 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1519 | path->slots[level] + 1); |
| 1520 | else |
| 1521 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1522 | path->slots[level] + 1); |
| 1523 | return 0; |
| 1524 | } |
| 1525 | return 1; |
| 1526 | } |
| 1527 | |
| 1528 | /* |
| 1529 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1530 | * to the address of inline back ref, and 0 is returned. |
| 1531 | * |
| 1532 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1533 | * should be inserted, and -ENOENT is returned. |
| 1534 | * |
| 1535 | * if insert is true and there are too many inline back refs, the path |
| 1536 | * points to the extent item, and -EAGAIN is returned. |
| 1537 | * |
| 1538 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1539 | * items in the tree are ordered. |
| 1540 | */ |
| 1541 | static noinline_for_stack |
| 1542 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1543 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1544 | struct btrfs_path *path, |
| 1545 | struct btrfs_extent_inline_ref **ref_ret, |
| 1546 | u64 bytenr, u64 num_bytes, |
| 1547 | u64 parent, u64 root_objectid, |
| 1548 | u64 owner, u64 offset, int insert) |
| 1549 | { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1550 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1551 | struct btrfs_key key; |
| 1552 | struct extent_buffer *leaf; |
| 1553 | struct btrfs_extent_item *ei; |
| 1554 | struct btrfs_extent_inline_ref *iref; |
| 1555 | u64 flags; |
| 1556 | u64 item_size; |
| 1557 | unsigned long ptr; |
| 1558 | unsigned long end; |
| 1559 | int extra_size; |
| 1560 | int type; |
| 1561 | int want; |
| 1562 | int ret; |
| 1563 | int err = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1564 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1565 | |
| 1566 | key.objectid = bytenr; |
| 1567 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1568 | key.offset = num_bytes; |
| 1569 | |
| 1570 | want = extent_ref_type(parent, owner); |
| 1571 | if (insert) { |
| 1572 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1573 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1574 | } else |
| 1575 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1576 | |
| 1577 | /* |
| 1578 | * Owner is our parent level, so we can just add one to get the level |
| 1579 | * for the block we are interested in. |
| 1580 | */ |
| 1581 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1582 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1583 | key.offset = owner; |
| 1584 | } |
| 1585 | |
| 1586 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1587 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1588 | if (ret < 0) { |
| 1589 | err = ret; |
| 1590 | goto out; |
| 1591 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1592 | |
| 1593 | /* |
| 1594 | * We may be a newly converted file system which still has the old fat |
| 1595 | * extent entries for metadata, so try and see if we have one of those. |
| 1596 | */ |
| 1597 | if (ret > 0 && skinny_metadata) { |
| 1598 | skinny_metadata = false; |
| 1599 | if (path->slots[0]) { |
| 1600 | path->slots[0]--; |
| 1601 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1602 | path->slots[0]); |
| 1603 | if (key.objectid == bytenr && |
| 1604 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1605 | key.offset == num_bytes) |
| 1606 | ret = 0; |
| 1607 | } |
| 1608 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1609 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1610 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1611 | key.offset = num_bytes; |
| 1612 | btrfs_release_path(path); |
| 1613 | goto again; |
| 1614 | } |
| 1615 | } |
| 1616 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1617 | if (ret && !insert) { |
| 1618 | err = -ENOENT; |
| 1619 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1620 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1621 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1622 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1623 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1624 | |
| 1625 | leaf = path->nodes[0]; |
| 1626 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1627 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1628 | if (item_size < sizeof(*ei)) { |
| 1629 | if (!insert) { |
| 1630 | err = -ENOENT; |
| 1631 | goto out; |
| 1632 | } |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1633 | ret = convert_extent_item_v0(trans, fs_info, path, owner, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1634 | extra_size); |
| 1635 | if (ret < 0) { |
| 1636 | err = ret; |
| 1637 | goto out; |
| 1638 | } |
| 1639 | leaf = path->nodes[0]; |
| 1640 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1641 | } |
| 1642 | #endif |
| 1643 | BUG_ON(item_size < sizeof(*ei)); |
| 1644 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1645 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1646 | flags = btrfs_extent_flags(leaf, ei); |
| 1647 | |
| 1648 | ptr = (unsigned long)(ei + 1); |
| 1649 | end = (unsigned long)ei + item_size; |
| 1650 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1651 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1652 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1653 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1654 | } |
| 1655 | |
| 1656 | err = -ENOENT; |
| 1657 | while (1) { |
| 1658 | if (ptr >= end) { |
| 1659 | WARN_ON(ptr > end); |
| 1660 | break; |
| 1661 | } |
| 1662 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1663 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1664 | if (want < type) |
| 1665 | break; |
| 1666 | if (want > type) { |
| 1667 | ptr += btrfs_extent_inline_ref_size(type); |
| 1668 | continue; |
| 1669 | } |
| 1670 | |
| 1671 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1672 | struct btrfs_extent_data_ref *dref; |
| 1673 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1674 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1675 | owner, offset)) { |
| 1676 | err = 0; |
| 1677 | break; |
| 1678 | } |
| 1679 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1680 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1681 | break; |
| 1682 | } else { |
| 1683 | u64 ref_offset; |
| 1684 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1685 | if (parent > 0) { |
| 1686 | if (parent == ref_offset) { |
| 1687 | err = 0; |
| 1688 | break; |
| 1689 | } |
| 1690 | if (ref_offset < parent) |
| 1691 | break; |
| 1692 | } else { |
| 1693 | if (root_objectid == ref_offset) { |
| 1694 | err = 0; |
| 1695 | break; |
| 1696 | } |
| 1697 | if (ref_offset < root_objectid) |
| 1698 | break; |
| 1699 | } |
| 1700 | } |
| 1701 | ptr += btrfs_extent_inline_ref_size(type); |
| 1702 | } |
| 1703 | if (err == -ENOENT && insert) { |
| 1704 | if (item_size + extra_size >= |
| 1705 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1706 | err = -EAGAIN; |
| 1707 | goto out; |
| 1708 | } |
| 1709 | /* |
| 1710 | * To add new inline back ref, we have to make sure |
| 1711 | * there is no corresponding back ref item. |
| 1712 | * For simplicity, we just do not add new inline back |
| 1713 | * ref if there is any kind of item for this block |
| 1714 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1715 | if (find_next_key(path, 0, &key) == 0 && |
| 1716 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1717 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1718 | err = -EAGAIN; |
| 1719 | goto out; |
| 1720 | } |
| 1721 | } |
| 1722 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1723 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1724 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1725 | path->keep_locks = 0; |
| 1726 | btrfs_unlock_up_safe(path, 1); |
| 1727 | } |
| 1728 | return err; |
| 1729 | } |
| 1730 | |
| 1731 | /* |
| 1732 | * helper to add new inline back ref |
| 1733 | */ |
| 1734 | static noinline_for_stack |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1735 | void setup_inline_extent_backref(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1736 | struct btrfs_path *path, |
| 1737 | struct btrfs_extent_inline_ref *iref, |
| 1738 | u64 parent, u64 root_objectid, |
| 1739 | u64 owner, u64 offset, int refs_to_add, |
| 1740 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1741 | { |
| 1742 | struct extent_buffer *leaf; |
| 1743 | struct btrfs_extent_item *ei; |
| 1744 | unsigned long ptr; |
| 1745 | unsigned long end; |
| 1746 | unsigned long item_offset; |
| 1747 | u64 refs; |
| 1748 | int size; |
| 1749 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1750 | |
| 1751 | leaf = path->nodes[0]; |
| 1752 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1753 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1754 | |
| 1755 | type = extent_ref_type(parent, owner); |
| 1756 | size = btrfs_extent_inline_ref_size(type); |
| 1757 | |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1758 | btrfs_extend_item(fs_info, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1759 | |
| 1760 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1761 | refs = btrfs_extent_refs(leaf, ei); |
| 1762 | refs += refs_to_add; |
| 1763 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1764 | if (extent_op) |
| 1765 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1766 | |
| 1767 | ptr = (unsigned long)ei + item_offset; |
| 1768 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1769 | if (ptr < end - size) |
| 1770 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1771 | end - size - ptr); |
| 1772 | |
| 1773 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1774 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1775 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1776 | struct btrfs_extent_data_ref *dref; |
| 1777 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1778 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1779 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1780 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1781 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1782 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1783 | struct btrfs_shared_data_ref *sref; |
| 1784 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1785 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1786 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1787 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1788 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1789 | } else { |
| 1790 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1791 | } |
| 1792 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1793 | } |
| 1794 | |
| 1795 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1796 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1797 | struct btrfs_path *path, |
| 1798 | struct btrfs_extent_inline_ref **ref_ret, |
| 1799 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1800 | u64 root_objectid, u64 owner, u64 offset) |
| 1801 | { |
| 1802 | int ret; |
| 1803 | |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1804 | ret = lookup_inline_extent_backref(trans, fs_info, path, ref_ret, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1805 | bytenr, num_bytes, parent, |
| 1806 | root_objectid, owner, offset, 0); |
| 1807 | if (ret != -ENOENT) |
| 1808 | return ret; |
| 1809 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1810 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1811 | *ref_ret = NULL; |
| 1812 | |
| 1813 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1814 | ret = lookup_tree_block_ref(trans, fs_info, path, bytenr, |
| 1815 | parent, root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1816 | } else { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1817 | ret = lookup_extent_data_ref(trans, fs_info, path, bytenr, |
| 1818 | parent, root_objectid, owner, |
| 1819 | offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1820 | } |
| 1821 | return ret; |
| 1822 | } |
| 1823 | |
| 1824 | /* |
| 1825 | * helper to update/remove inline back ref |
| 1826 | */ |
| 1827 | static noinline_for_stack |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1828 | void update_inline_extent_backref(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1829 | struct btrfs_path *path, |
| 1830 | struct btrfs_extent_inline_ref *iref, |
| 1831 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1832 | struct btrfs_delayed_extent_op *extent_op, |
| 1833 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1834 | { |
| 1835 | struct extent_buffer *leaf; |
| 1836 | struct btrfs_extent_item *ei; |
| 1837 | struct btrfs_extent_data_ref *dref = NULL; |
| 1838 | struct btrfs_shared_data_ref *sref = NULL; |
| 1839 | unsigned long ptr; |
| 1840 | unsigned long end; |
| 1841 | u32 item_size; |
| 1842 | int size; |
| 1843 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1844 | u64 refs; |
| 1845 | |
| 1846 | leaf = path->nodes[0]; |
| 1847 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1848 | refs = btrfs_extent_refs(leaf, ei); |
| 1849 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1850 | refs += refs_to_mod; |
| 1851 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1852 | if (extent_op) |
| 1853 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1854 | |
| 1855 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1856 | |
| 1857 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1858 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1859 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1860 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1861 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1862 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1863 | } else { |
| 1864 | refs = 1; |
| 1865 | BUG_ON(refs_to_mod != -1); |
| 1866 | } |
| 1867 | |
| 1868 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1869 | refs += refs_to_mod; |
| 1870 | |
| 1871 | if (refs > 0) { |
| 1872 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1873 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1874 | else |
| 1875 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1876 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1877 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1878 | size = btrfs_extent_inline_ref_size(type); |
| 1879 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1880 | ptr = (unsigned long)iref; |
| 1881 | end = (unsigned long)ei + item_size; |
| 1882 | if (ptr + size < end) |
| 1883 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1884 | end - ptr - size); |
| 1885 | item_size -= size; |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1886 | btrfs_truncate_item(fs_info, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1887 | } |
| 1888 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1889 | } |
| 1890 | |
| 1891 | static noinline_for_stack |
| 1892 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1893 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1894 | struct btrfs_path *path, |
| 1895 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1896 | u64 root_objectid, u64 owner, |
| 1897 | u64 offset, int refs_to_add, |
| 1898 | struct btrfs_delayed_extent_op *extent_op) |
| 1899 | { |
| 1900 | struct btrfs_extent_inline_ref *iref; |
| 1901 | int ret; |
| 1902 | |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1903 | ret = lookup_inline_extent_backref(trans, fs_info, path, &iref, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1904 | bytenr, num_bytes, parent, |
| 1905 | root_objectid, owner, offset, 1); |
| 1906 | if (ret == 0) { |
| 1907 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1908 | update_inline_extent_backref(fs_info, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1909 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1910 | } else if (ret == -ENOENT) { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1911 | setup_inline_extent_backref(fs_info, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1912 | root_objectid, owner, offset, |
| 1913 | refs_to_add, extent_op); |
| 1914 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1915 | } |
| 1916 | return ret; |
| 1917 | } |
| 1918 | |
| 1919 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1920 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1921 | struct btrfs_path *path, |
| 1922 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1923 | u64 owner, u64 offset, int refs_to_add) |
| 1924 | { |
| 1925 | int ret; |
| 1926 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1927 | BUG_ON(refs_to_add != 1); |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1928 | ret = insert_tree_block_ref(trans, fs_info, path, bytenr, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1929 | parent, root_objectid); |
| 1930 | } else { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1931 | ret = insert_extent_data_ref(trans, fs_info, path, bytenr, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1932 | parent, root_objectid, |
| 1933 | owner, offset, refs_to_add); |
| 1934 | } |
| 1935 | return ret; |
| 1936 | } |
| 1937 | |
| 1938 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1939 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1940 | struct btrfs_path *path, |
| 1941 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1942 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1943 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1944 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1945 | |
| 1946 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1947 | if (iref) { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1948 | update_inline_extent_backref(fs_info, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1949 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1950 | } else if (is_data) { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1951 | ret = remove_extent_data_ref(trans, fs_info, path, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1952 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1953 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1954 | *last_ref = 1; |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1955 | ret = btrfs_del_item(trans, fs_info->extent_root, path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1956 | } |
| 1957 | return ret; |
| 1958 | } |
| 1959 | |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1960 | #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1961 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1962 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1963 | { |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1964 | int j, ret = 0; |
| 1965 | u64 bytes_left, end; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1966 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1967 | |
| 1968 | if (WARN_ON(start != aligned_start)) { |
| 1969 | len -= aligned_start - start; |
| 1970 | len = round_down(len, 1 << 9); |
| 1971 | start = aligned_start; |
| 1972 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1973 | |
| 1974 | *discarded_bytes = 0; |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1975 | |
| 1976 | if (!len) |
| 1977 | return 0; |
| 1978 | |
| 1979 | end = start + len; |
| 1980 | bytes_left = len; |
| 1981 | |
| 1982 | /* Skip any superblocks on this device. */ |
| 1983 | for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) { |
| 1984 | u64 sb_start = btrfs_sb_offset(j); |
| 1985 | u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE; |
| 1986 | u64 size = sb_start - start; |
| 1987 | |
| 1988 | if (!in_range(sb_start, start, bytes_left) && |
| 1989 | !in_range(sb_end, start, bytes_left) && |
| 1990 | !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE)) |
| 1991 | continue; |
| 1992 | |
| 1993 | /* |
| 1994 | * Superblock spans beginning of range. Adjust start and |
| 1995 | * try again. |
| 1996 | */ |
| 1997 | if (sb_start <= start) { |
| 1998 | start += sb_end - start; |
| 1999 | if (start > end) { |
| 2000 | bytes_left = 0; |
| 2001 | break; |
| 2002 | } |
| 2003 | bytes_left = end - start; |
| 2004 | continue; |
| 2005 | } |
| 2006 | |
| 2007 | if (size) { |
| 2008 | ret = blkdev_issue_discard(bdev, start >> 9, size >> 9, |
| 2009 | GFP_NOFS, 0); |
| 2010 | if (!ret) |
| 2011 | *discarded_bytes += size; |
| 2012 | else if (ret != -EOPNOTSUPP) |
| 2013 | return ret; |
| 2014 | } |
| 2015 | |
| 2016 | start = sb_end; |
| 2017 | if (start > end) { |
| 2018 | bytes_left = 0; |
| 2019 | break; |
| 2020 | } |
| 2021 | bytes_left = end - start; |
| 2022 | } |
| 2023 | |
| 2024 | if (bytes_left) { |
| 2025 | ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9, |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2026 | GFP_NOFS, 0); |
| 2027 | if (!ret) |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 2028 | *discarded_bytes += bytes_left; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2029 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2030 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2031 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2032 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2033 | int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr, |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 2034 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2035 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2036 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2037 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2038 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2039 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2040 | |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 2041 | /* |
| 2042 | * Avoid races with device replace and make sure our bbio has devices |
| 2043 | * associated to its stripes that don't go away while we are discarding. |
| 2044 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2045 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2046 | /* Tell the block device(s) that the sectors can be discarded */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2047 | ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes, |
| 2048 | &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2049 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2050 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2051 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2052 | int i; |
| 2053 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2054 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2055 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2056 | u64 bytes; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2057 | if (!stripe->dev->can_discard) |
| 2058 | continue; |
| 2059 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2060 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 2061 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2062 | stripe->length, |
| 2063 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2064 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2065 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2066 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2067 | 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] | 2068 | |
| 2069 | /* |
| 2070 | * Just in case we get back EOPNOTSUPP for some reason, |
| 2071 | * just ignore the return value so we don't screw up |
| 2072 | * people calling discard_extent. |
| 2073 | */ |
| 2074 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2075 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2076 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2077 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2078 | btrfs_bio_counter_dec(fs_info); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2079 | |
| 2080 | if (actual_bytes) |
| 2081 | *actual_bytes = discarded_bytes; |
| 2082 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2083 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2084 | if (ret == -EOPNOTSUPP) |
| 2085 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2086 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2087 | } |
| 2088 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2089 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2090 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2091 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2092 | u64 bytenr, u64 num_bytes, u64 parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2093 | u64 root_objectid, u64 owner, u64 offset) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2094 | { |
| 2095 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2096 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2097 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 2098 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2099 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2100 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2101 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 2102 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2103 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2104 | BTRFS_ADD_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2105 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2106 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 2107 | num_bytes, parent, root_objectid, |
| 2108 | owner, offset, 0, |
Jeff Mahoney | fef394f | 2016-12-13 14:39:34 -0500 | [diff] [blame] | 2109 | BTRFS_ADD_DELAYED_REF); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2110 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2111 | return ret; |
| 2112 | } |
| 2113 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2114 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2115 | struct btrfs_fs_info *fs_info, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2116 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2117 | u64 parent, u64 root_objectid, |
| 2118 | u64 owner, u64 offset, int refs_to_add, |
| 2119 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2120 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2121 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2122 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2123 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2124 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2125 | u64 bytenr = node->bytenr; |
| 2126 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2127 | u64 refs; |
| 2128 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2129 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2130 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2131 | if (!path) |
| 2132 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2133 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2134 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2135 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2136 | /* this will setup the path even if it fails to insert the back ref */ |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2137 | ret = insert_inline_extent_backref(trans, fs_info, path, bytenr, |
| 2138 | num_bytes, parent, root_objectid, |
| 2139 | owner, offset, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2140 | 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 */ |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2163 | ret = insert_extent_backref(trans, fs_info, path, bytenr, parent, |
| 2164 | root_objectid, 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, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2173 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2174 | struct btrfs_delayed_ref_node *node, |
| 2175 | struct btrfs_delayed_extent_op *extent_op, |
| 2176 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2177 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2178 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2179 | struct btrfs_delayed_data_ref *ref; |
| 2180 | struct btrfs_key ins; |
| 2181 | u64 parent = 0; |
| 2182 | u64 ref_root = 0; |
| 2183 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2184 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2185 | ins.objectid = node->bytenr; |
| 2186 | ins.offset = node->num_bytes; |
| 2187 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2188 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2189 | ref = btrfs_delayed_node_to_data_ref(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2190 | trace_run_delayed_data_ref(fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2191 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2192 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2193 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2194 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2195 | |
| 2196 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2197 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2198 | flags |= extent_op->flags_to_set; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2199 | ret = alloc_reserved_file_extent(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2200 | parent, ref_root, flags, |
| 2201 | ref->objectid, ref->offset, |
| 2202 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2203 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2204 | ret = __btrfs_inc_extent_ref(trans, fs_info, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2205 | ref_root, ref->objectid, |
| 2206 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2207 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2208 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2209 | ret = __btrfs_free_extent(trans, fs_info, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2210 | ref_root, ref->objectid, |
| 2211 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2212 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2213 | } else { |
| 2214 | BUG(); |
| 2215 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2216 | return ret; |
| 2217 | } |
| 2218 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2219 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2220 | struct extent_buffer *leaf, |
| 2221 | struct btrfs_extent_item *ei) |
| 2222 | { |
| 2223 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2224 | if (extent_op->update_flags) { |
| 2225 | flags |= extent_op->flags_to_set; |
| 2226 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2227 | } |
| 2228 | |
| 2229 | if (extent_op->update_key) { |
| 2230 | struct btrfs_tree_block_info *bi; |
| 2231 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2232 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2233 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2234 | } |
| 2235 | } |
| 2236 | |
| 2237 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2238 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2239 | struct btrfs_delayed_ref_node *node, |
| 2240 | struct btrfs_delayed_extent_op *extent_op) |
| 2241 | { |
| 2242 | struct btrfs_key key; |
| 2243 | struct btrfs_path *path; |
| 2244 | struct btrfs_extent_item *ei; |
| 2245 | struct extent_buffer *leaf; |
| 2246 | u32 item_size; |
| 2247 | int ret; |
| 2248 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2249 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2250 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2251 | if (trans->aborted) |
| 2252 | return 0; |
| 2253 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2254 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2255 | metadata = 0; |
| 2256 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2257 | path = btrfs_alloc_path(); |
| 2258 | if (!path) |
| 2259 | return -ENOMEM; |
| 2260 | |
| 2261 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2262 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2263 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2264 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2265 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2266 | } else { |
| 2267 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2268 | key.offset = node->num_bytes; |
| 2269 | } |
| 2270 | |
| 2271 | again: |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2272 | path->reada = READA_FORWARD; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2273 | path->leave_spinning = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2274 | 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] | 2275 | if (ret < 0) { |
| 2276 | err = ret; |
| 2277 | goto out; |
| 2278 | } |
| 2279 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2280 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2281 | if (path->slots[0] > 0) { |
| 2282 | path->slots[0]--; |
| 2283 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2284 | path->slots[0]); |
| 2285 | if (key.objectid == node->bytenr && |
| 2286 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2287 | key.offset == node->num_bytes) |
| 2288 | ret = 0; |
| 2289 | } |
| 2290 | if (ret > 0) { |
| 2291 | btrfs_release_path(path); |
| 2292 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2293 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2294 | key.objectid = node->bytenr; |
| 2295 | key.offset = node->num_bytes; |
| 2296 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2297 | goto again; |
| 2298 | } |
| 2299 | } else { |
| 2300 | err = -EIO; |
| 2301 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2302 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2303 | } |
| 2304 | |
| 2305 | leaf = path->nodes[0]; |
| 2306 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2307 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2308 | if (item_size < sizeof(*ei)) { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2309 | ret = convert_extent_item_v0(trans, fs_info, path, (u64)-1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2310 | if (ret < 0) { |
| 2311 | err = ret; |
| 2312 | goto out; |
| 2313 | } |
| 2314 | leaf = path->nodes[0]; |
| 2315 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2316 | } |
| 2317 | #endif |
| 2318 | BUG_ON(item_size < sizeof(*ei)); |
| 2319 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2320 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2321 | |
| 2322 | btrfs_mark_buffer_dirty(leaf); |
| 2323 | out: |
| 2324 | btrfs_free_path(path); |
| 2325 | return err; |
| 2326 | } |
| 2327 | |
| 2328 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2329 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2330 | struct btrfs_delayed_ref_node *node, |
| 2331 | struct btrfs_delayed_extent_op *extent_op, |
| 2332 | int insert_reserved) |
| 2333 | { |
| 2334 | int ret = 0; |
| 2335 | struct btrfs_delayed_tree_ref *ref; |
| 2336 | struct btrfs_key ins; |
| 2337 | u64 parent = 0; |
| 2338 | u64 ref_root = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2339 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2340 | |
| 2341 | ref = btrfs_delayed_node_to_tree_ref(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2342 | trace_run_delayed_tree_ref(fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2343 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2344 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2345 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2346 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2347 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2348 | ins.objectid = node->bytenr; |
| 2349 | if (skinny_metadata) { |
| 2350 | ins.offset = ref->level; |
| 2351 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2352 | } else { |
| 2353 | ins.offset = node->num_bytes; |
| 2354 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2355 | } |
| 2356 | |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2357 | if (node->ref_mod != 1) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2358 | btrfs_err(fs_info, |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2359 | "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu", |
| 2360 | node->bytenr, node->ref_mod, node->action, ref_root, |
| 2361 | parent); |
| 2362 | return -EIO; |
| 2363 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2364 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2365 | BUG_ON(!extent_op || !extent_op->update_flags); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2366 | ret = alloc_reserved_tree_block(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2367 | parent, ref_root, |
| 2368 | extent_op->flags_to_set, |
| 2369 | &extent_op->key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2370 | ref->level, &ins); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2371 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2372 | ret = __btrfs_inc_extent_ref(trans, fs_info, node, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2373 | parent, ref_root, |
| 2374 | ref->level, 0, 1, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2375 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2376 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2377 | ret = __btrfs_free_extent(trans, fs_info, node, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2378 | parent, ref_root, |
| 2379 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2380 | } else { |
| 2381 | BUG(); |
| 2382 | } |
| 2383 | return ret; |
| 2384 | } |
| 2385 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2386 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2387 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2388 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2389 | struct btrfs_delayed_ref_node *node, |
| 2390 | struct btrfs_delayed_extent_op *extent_op, |
| 2391 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2392 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2393 | int ret = 0; |
| 2394 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2395 | if (trans->aborted) { |
| 2396 | if (insert_reserved) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2397 | btrfs_pin_extent(fs_info, node->bytenr, |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2398 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2399 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2400 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2401 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2402 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2403 | struct btrfs_delayed_ref_head *head; |
| 2404 | /* |
| 2405 | * we've hit the end of the chain and we were supposed |
| 2406 | * to insert this extent into the tree. But, it got |
| 2407 | * deleted before we ever needed to insert it, so all |
| 2408 | * we have to do is clean up the accounting |
| 2409 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2410 | BUG_ON(extent_op); |
| 2411 | head = btrfs_delayed_node_to_head(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2412 | trace_run_delayed_ref_head(fs_info, node, head, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2413 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2414 | if (insert_reserved) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2415 | btrfs_pin_extent(fs_info, node->bytenr, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2416 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2417 | if (head->is_data) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2418 | ret = btrfs_del_csums(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2419 | node->bytenr, |
| 2420 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2421 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2422 | } |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2423 | |
| 2424 | /* Also free its reserved qgroup space */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2425 | btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root, |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2426 | head->qgroup_reserved); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2427 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2428 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2429 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2430 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2431 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2432 | ret = run_delayed_tree_ref(trans, fs_info, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2433 | insert_reserved); |
| 2434 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2435 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2436 | ret = run_delayed_data_ref(trans, fs_info, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2437 | insert_reserved); |
| 2438 | else |
| 2439 | BUG(); |
| 2440 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2441 | } |
| 2442 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2443 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2444 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2445 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2446 | struct btrfs_delayed_ref_node *ref; |
| 2447 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2448 | if (list_empty(&head->ref_list)) |
| 2449 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2450 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2451 | /* |
| 2452 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2453 | * This is to prevent a ref count from going down to zero, which deletes |
| 2454 | * the extent item from the extent tree, when there still are references |
| 2455 | * to add, which would fail because they would not find the extent item. |
| 2456 | */ |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2457 | if (!list_empty(&head->ref_add_list)) |
| 2458 | return list_first_entry(&head->ref_add_list, |
| 2459 | struct btrfs_delayed_ref_node, add_list); |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2460 | |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2461 | ref = list_first_entry(&head->ref_list, struct btrfs_delayed_ref_node, |
| 2462 | list); |
| 2463 | ASSERT(list_empty(&ref->add_list)); |
| 2464 | return ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2465 | } |
| 2466 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2467 | /* |
| 2468 | * Returns 0 on success or if called with an already aborted transaction. |
| 2469 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2470 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2471 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2472 | struct btrfs_fs_info *fs_info, |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2473 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2474 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2475 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2476 | struct btrfs_delayed_ref_node *ref; |
| 2477 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2478 | struct btrfs_delayed_extent_op *extent_op; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2479 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2480 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2481 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2482 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2483 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2484 | |
| 2485 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2486 | while (1) { |
| 2487 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2488 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2489 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2490 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2491 | spin_lock(&delayed_refs->lock); |
| 2492 | locked_ref = btrfs_select_ref_head(trans); |
| 2493 | if (!locked_ref) { |
| 2494 | spin_unlock(&delayed_refs->lock); |
| 2495 | break; |
| 2496 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2497 | |
| 2498 | /* grab the lock that says we are going to process |
| 2499 | * all the refs for this head */ |
| 2500 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2501 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2502 | /* |
| 2503 | * we may have dropped the spin lock to get the head |
| 2504 | * mutex lock, and that might have given someone else |
| 2505 | * time to free the head. If that's true, it has been |
| 2506 | * removed from our list and we can move on. |
| 2507 | */ |
| 2508 | if (ret == -EAGAIN) { |
| 2509 | locked_ref = NULL; |
| 2510 | count++; |
| 2511 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2512 | } |
| 2513 | } |
| 2514 | |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2515 | /* |
| 2516 | * We need to try and merge add/drops of the same ref since we |
| 2517 | * can run into issues with relocate dropping the implicit ref |
| 2518 | * and then it being added back again before the drop can |
| 2519 | * finish. If we merged anything we need to re-loop so we can |
| 2520 | * get a good ref. |
| 2521 | * Or we can get node references of the same type that weren't |
| 2522 | * merged when created due to bumps in the tree mod seq, and |
| 2523 | * we need to merge them to prevent adding an inline extent |
| 2524 | * backref before dropping it (triggering a BUG_ON at |
| 2525 | * insert_inline_extent_backref()). |
| 2526 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2527 | spin_lock(&locked_ref->lock); |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2528 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2529 | locked_ref); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2530 | |
| 2531 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2532 | * locked_ref is the head node, so we have to go one |
| 2533 | * node back for any delayed ref updates |
| 2534 | */ |
| 2535 | ref = select_delayed_ref(locked_ref); |
| 2536 | |
| 2537 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2538 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2539 | spin_unlock(&locked_ref->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2540 | spin_lock(&delayed_refs->lock); |
| 2541 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2542 | delayed_refs->num_heads_ready++; |
| 2543 | spin_unlock(&delayed_refs->lock); |
Jeff Mahoney | d028099 | 2016-12-20 13:28:28 -0500 | [diff] [blame] | 2544 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2545 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2546 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2547 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2548 | continue; |
| 2549 | } |
| 2550 | |
| 2551 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2552 | * record the must insert reserved flag before we |
| 2553 | * drop the spin lock. |
| 2554 | */ |
| 2555 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2556 | locked_ref->must_insert_reserved = 0; |
| 2557 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2558 | extent_op = locked_ref->extent_op; |
| 2559 | locked_ref->extent_op = NULL; |
| 2560 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2561 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2562 | |
| 2563 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2564 | /* All delayed refs have been processed, Go ahead |
| 2565 | * and send the head node to run_one_delayed_ref, |
| 2566 | * so that any accounting fixes can happen |
| 2567 | */ |
| 2568 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2569 | |
| 2570 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2571 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2572 | extent_op = NULL; |
| 2573 | } |
| 2574 | |
| 2575 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2576 | spin_unlock(&locked_ref->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2577 | ret = run_delayed_extent_op(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2578 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2579 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2580 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2581 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2582 | /* |
| 2583 | * Need to reset must_insert_reserved if |
| 2584 | * there was an error so the abort stuff |
| 2585 | * can cleanup the reserved space |
| 2586 | * properly. |
| 2587 | */ |
| 2588 | if (must_insert_reserved) |
| 2589 | locked_ref->must_insert_reserved = 1; |
Jeff Mahoney | aa7c8da | 2016-12-20 13:28:27 -0500 | [diff] [blame] | 2590 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2591 | locked_ref->processing = 0; |
Jeff Mahoney | aa7c8da | 2016-12-20 13:28:27 -0500 | [diff] [blame] | 2592 | delayed_refs->num_heads_ready++; |
| 2593 | spin_unlock(&delayed_refs->lock); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2594 | btrfs_debug(fs_info, |
| 2595 | "run_delayed_extent_op returned %d", |
| 2596 | ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2597 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2598 | return ret; |
| 2599 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2600 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2601 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2602 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2603 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2604 | * Need to drop our head ref lock and re-acquire the |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2605 | * delayed ref lock and then re-check to make sure |
| 2606 | * nobody got added. |
| 2607 | */ |
| 2608 | spin_unlock(&locked_ref->lock); |
| 2609 | spin_lock(&delayed_refs->lock); |
| 2610 | spin_lock(&locked_ref->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2611 | if (!list_empty(&locked_ref->ref_list) || |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2612 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2613 | spin_unlock(&locked_ref->lock); |
| 2614 | spin_unlock(&delayed_refs->lock); |
| 2615 | continue; |
| 2616 | } |
| 2617 | ref->in_tree = 0; |
| 2618 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2619 | rb_erase(&locked_ref->href_node, |
| 2620 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2621 | spin_unlock(&delayed_refs->lock); |
| 2622 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2623 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2624 | ref->in_tree = 0; |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2625 | list_del(&ref->list); |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2626 | if (!list_empty(&ref->add_list)) |
| 2627 | list_del(&ref->add_list); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2628 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2629 | atomic_dec(&delayed_refs->num_entries); |
| 2630 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2631 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2632 | /* |
| 2633 | * when we play the delayed ref, also correct the |
| 2634 | * ref_mod on head |
| 2635 | */ |
| 2636 | switch (ref->action) { |
| 2637 | case BTRFS_ADD_DELAYED_REF: |
| 2638 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2639 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2640 | break; |
| 2641 | case BTRFS_DROP_DELAYED_REF: |
| 2642 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2643 | break; |
| 2644 | default: |
| 2645 | WARN_ON(1); |
| 2646 | } |
| 2647 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2648 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2649 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2650 | ret = run_one_delayed_ref(trans, fs_info, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2651 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2652 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2653 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2654 | if (ret) { |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2655 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2656 | locked_ref->processing = 0; |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2657 | delayed_refs->num_heads_ready++; |
| 2658 | spin_unlock(&delayed_refs->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2659 | btrfs_delayed_ref_unlock(locked_ref); |
| 2660 | btrfs_put_delayed_ref(ref); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2661 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", |
| 2662 | ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2663 | return ret; |
| 2664 | } |
| 2665 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2666 | /* |
| 2667 | * If this node is a head, that means all the refs in this head |
| 2668 | * have been dealt with, and we will pick the next head to deal |
| 2669 | * with, so we must unlock the head and drop it from the cluster |
| 2670 | * list before we release it. |
| 2671 | */ |
| 2672 | if (btrfs_delayed_ref_is_head(ref)) { |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2673 | if (locked_ref->is_data && |
| 2674 | locked_ref->total_ref_mod < 0) { |
| 2675 | spin_lock(&delayed_refs->lock); |
| 2676 | delayed_refs->pending_csums -= ref->num_bytes; |
| 2677 | spin_unlock(&delayed_refs->lock); |
| 2678 | } |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2679 | btrfs_delayed_ref_unlock(locked_ref); |
| 2680 | locked_ref = NULL; |
| 2681 | } |
| 2682 | btrfs_put_delayed_ref(ref); |
| 2683 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2684 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2685 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2686 | |
| 2687 | /* |
| 2688 | * We don't want to include ref heads since we can have empty ref heads |
| 2689 | * and those will drastically skew our runtime down since we just do |
| 2690 | * accounting, no actual extent tree updates. |
| 2691 | */ |
| 2692 | if (actual_count > 0) { |
| 2693 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2694 | u64 avg; |
| 2695 | |
| 2696 | /* |
| 2697 | * We weigh the current average higher than our current runtime |
| 2698 | * to avoid large swings in the average. |
| 2699 | */ |
| 2700 | spin_lock(&delayed_refs->lock); |
| 2701 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2702 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2703 | spin_unlock(&delayed_refs->lock); |
| 2704 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2705 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2706 | } |
| 2707 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2708 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2709 | /* |
| 2710 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2711 | * correlates in most cases to the order added. To expose dependencies on this |
| 2712 | * order, we start to process the tree in the middle instead of the beginning |
| 2713 | */ |
| 2714 | static u64 find_middle(struct rb_root *root) |
| 2715 | { |
| 2716 | struct rb_node *n = root->rb_node; |
| 2717 | struct btrfs_delayed_ref_node *entry; |
| 2718 | int alt = 1; |
| 2719 | u64 middle; |
| 2720 | u64 first = 0, last = 0; |
| 2721 | |
| 2722 | n = rb_first(root); |
| 2723 | if (n) { |
| 2724 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2725 | first = entry->bytenr; |
| 2726 | } |
| 2727 | n = rb_last(root); |
| 2728 | if (n) { |
| 2729 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2730 | last = entry->bytenr; |
| 2731 | } |
| 2732 | n = root->rb_node; |
| 2733 | |
| 2734 | while (n) { |
| 2735 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2736 | WARN_ON(!entry->in_tree); |
| 2737 | |
| 2738 | middle = entry->bytenr; |
| 2739 | |
| 2740 | if (alt) |
| 2741 | n = n->rb_left; |
| 2742 | else |
| 2743 | n = n->rb_right; |
| 2744 | |
| 2745 | alt = 1 - alt; |
| 2746 | } |
| 2747 | return middle; |
| 2748 | } |
| 2749 | #endif |
| 2750 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2751 | 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] | 2752 | { |
| 2753 | u64 num_bytes; |
| 2754 | |
| 2755 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2756 | sizeof(struct btrfs_extent_inline_ref)); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2757 | if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2758 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2759 | |
| 2760 | /* |
| 2761 | * 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] | 2762 | * closer to what we're really going to want to use. |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2763 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2764 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2765 | } |
| 2766 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2767 | /* |
| 2768 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2769 | * would require to store the csums for that many bytes. |
| 2770 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2771 | 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] | 2772 | { |
| 2773 | u64 csum_size; |
| 2774 | u64 num_csums_per_leaf; |
| 2775 | u64 num_csums; |
| 2776 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2777 | csum_size = BTRFS_MAX_ITEM_SIZE(fs_info); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2778 | num_csums_per_leaf = div64_u64(csum_size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2779 | (u64)btrfs_super_csum_size(fs_info->super_copy)); |
| 2780 | num_csums = div64_u64(csum_bytes, fs_info->sectorsize); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2781 | num_csums += num_csums_per_leaf - 1; |
| 2782 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2783 | return num_csums; |
| 2784 | } |
| 2785 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2786 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2787 | struct btrfs_fs_info *fs_info) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2788 | { |
| 2789 | struct btrfs_block_rsv *global_rsv; |
| 2790 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2791 | u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2792 | u64 num_dirty_bgs = trans->transaction->num_dirty_bgs; |
| 2793 | u64 num_bytes, num_dirty_bgs_bytes; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2794 | int ret = 0; |
| 2795 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2796 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2797 | num_heads = heads_to_leaves(fs_info, num_heads); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2798 | if (num_heads > 1) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2799 | num_bytes += (num_heads - 1) * fs_info->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2800 | num_bytes <<= 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2801 | num_bytes += btrfs_csum_bytes_to_leaves(fs_info, csum_bytes) * |
| 2802 | fs_info->nodesize; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2803 | num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(fs_info, |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2804 | num_dirty_bgs); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2805 | global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2806 | |
| 2807 | /* |
| 2808 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2809 | * wiggle room since running delayed refs can create more delayed refs. |
| 2810 | */ |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2811 | if (global_rsv->space_info->full) { |
| 2812 | num_dirty_bgs_bytes <<= 1; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2813 | num_bytes <<= 1; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2814 | } |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2815 | |
| 2816 | spin_lock(&global_rsv->lock); |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2817 | if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2818 | ret = 1; |
| 2819 | spin_unlock(&global_rsv->lock); |
| 2820 | return ret; |
| 2821 | } |
| 2822 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2823 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2824 | struct btrfs_fs_info *fs_info) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2825 | { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2826 | u64 num_entries = |
| 2827 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2828 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2829 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2830 | |
| 2831 | smp_mb(); |
| 2832 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2833 | val = num_entries * avg_runtime; |
Wang Xiaoguang | dc1a90c | 2016-10-26 15:23:01 +0800 | [diff] [blame] | 2834 | if (val >= NSEC_PER_SEC) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2835 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2836 | if (val >= NSEC_PER_SEC / 2) |
| 2837 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2838 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2839 | return btrfs_check_space_for_delayed_refs(trans, fs_info); |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2840 | } |
| 2841 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2842 | struct async_delayed_refs { |
| 2843 | struct btrfs_root *root; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2844 | u64 transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2845 | int count; |
| 2846 | int error; |
| 2847 | int sync; |
| 2848 | struct completion wait; |
| 2849 | struct btrfs_work work; |
| 2850 | }; |
| 2851 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2852 | static inline struct async_delayed_refs * |
| 2853 | to_async_delayed_refs(struct btrfs_work *work) |
| 2854 | { |
| 2855 | return container_of(work, struct async_delayed_refs, work); |
| 2856 | } |
| 2857 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2858 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2859 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2860 | struct async_delayed_refs *async = to_async_delayed_refs(work); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2861 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2862 | struct btrfs_fs_info *fs_info = async->root->fs_info; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2863 | int ret; |
| 2864 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2865 | /* if the commit is already started, we don't need to wait here */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2866 | if (btrfs_transaction_blocked(fs_info)) |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2867 | goto done; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2868 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2869 | trans = btrfs_join_transaction(async->root); |
| 2870 | if (IS_ERR(trans)) { |
| 2871 | async->error = PTR_ERR(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2872 | goto done; |
| 2873 | } |
| 2874 | |
| 2875 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2876 | * trans->sync means that when we call end_transaction, we won't |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2877 | * wait on delayed refs |
| 2878 | */ |
| 2879 | trans->sync = true; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2880 | |
| 2881 | /* Don't bother flushing if we got into a different transaction */ |
| 2882 | if (trans->transid > async->transid) |
| 2883 | goto end; |
| 2884 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2885 | ret = btrfs_run_delayed_refs(trans, fs_info, async->count); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2886 | if (ret) |
| 2887 | async->error = ret; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2888 | end: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2889 | ret = btrfs_end_transaction(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2890 | if (ret && !async->error) |
| 2891 | async->error = ret; |
| 2892 | done: |
| 2893 | if (async->sync) |
| 2894 | complete(&async->wait); |
| 2895 | else |
| 2896 | kfree(async); |
| 2897 | } |
| 2898 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2899 | int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info, |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2900 | unsigned long count, u64 transid, int wait) |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2901 | { |
| 2902 | struct async_delayed_refs *async; |
| 2903 | int ret; |
| 2904 | |
| 2905 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2906 | if (!async) |
| 2907 | return -ENOMEM; |
| 2908 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2909 | async->root = fs_info->tree_root; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2910 | async->count = count; |
| 2911 | async->error = 0; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2912 | async->transid = transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2913 | if (wait) |
| 2914 | async->sync = 1; |
| 2915 | else |
| 2916 | async->sync = 0; |
| 2917 | init_completion(&async->wait); |
| 2918 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2919 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2920 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2921 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2922 | btrfs_queue_work(fs_info->extent_workers, &async->work); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2923 | |
| 2924 | if (wait) { |
| 2925 | wait_for_completion(&async->wait); |
| 2926 | ret = async->error; |
| 2927 | kfree(async); |
| 2928 | return ret; |
| 2929 | } |
| 2930 | return 0; |
| 2931 | } |
| 2932 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2933 | /* |
| 2934 | * this starts processing the delayed reference count updates and |
| 2935 | * extent insertions we have queued up so far. count can be |
| 2936 | * 0, which means to process everything in the tree at the start |
| 2937 | * of the run (but not newly added entries), or it can be some target |
| 2938 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2939 | * |
| 2940 | * Returns 0 on success or if called with an aborted transaction |
| 2941 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2942 | */ |
| 2943 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2944 | struct btrfs_fs_info *fs_info, unsigned long count) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2945 | { |
| 2946 | struct rb_node *node; |
| 2947 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2948 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2949 | int ret; |
| 2950 | int run_all = count == (unsigned long)-1; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2951 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2952 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2953 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2954 | if (trans->aborted) |
| 2955 | return 0; |
| 2956 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2957 | if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags)) |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 2958 | return 0; |
| 2959 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2960 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2961 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2962 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2963 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2964 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2965 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2966 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2967 | #endif |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2968 | trans->can_flush_pending_bgs = false; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2969 | ret = __btrfs_run_delayed_refs(trans, fs_info, count); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2970 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2971 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2972 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2973 | } |
| 2974 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2975 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2976 | if (!list_empty(&trans->new_bgs)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2977 | btrfs_create_pending_block_groups(trans, fs_info); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2978 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2979 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2980 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2981 | if (!node) { |
| 2982 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2983 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2984 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2985 | |
| 2986 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2987 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2988 | href_node); |
| 2989 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2990 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2991 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2992 | ref = &head->node; |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 2993 | refcount_inc(&ref->refs); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2994 | |
| 2995 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2996 | /* |
| 2997 | * Mutex was contended, block until it's |
| 2998 | * released and try again |
| 2999 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3000 | mutex_lock(&head->mutex); |
| 3001 | mutex_unlock(&head->mutex); |
| 3002 | |
| 3003 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 3004 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3005 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3006 | } else { |
| 3007 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3008 | } |
| 3009 | node = rb_next(node); |
| 3010 | } |
| 3011 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3012 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3013 | goto again; |
| 3014 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3015 | out: |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 3016 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 3017 | return 0; |
| 3018 | } |
| 3019 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3020 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3021 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3022 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3023 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3024 | { |
| 3025 | struct btrfs_delayed_extent_op *extent_op; |
| 3026 | int ret; |
| 3027 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3028 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3029 | if (!extent_op) |
| 3030 | return -ENOMEM; |
| 3031 | |
| 3032 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 3033 | extent_op->update_flags = true; |
| 3034 | extent_op->update_key = false; |
| 3035 | extent_op->is_data = is_data ? true : false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3036 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3037 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3038 | ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3039 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3040 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3041 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3042 | return ret; |
| 3043 | } |
| 3044 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3045 | static noinline int check_delayed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3046 | struct btrfs_path *path, |
| 3047 | u64 objectid, u64 offset, u64 bytenr) |
| 3048 | { |
| 3049 | struct btrfs_delayed_ref_head *head; |
| 3050 | struct btrfs_delayed_ref_node *ref; |
| 3051 | struct btrfs_delayed_data_ref *data_ref; |
| 3052 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3053 | struct btrfs_transaction *cur_trans; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3054 | int ret = 0; |
| 3055 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3056 | cur_trans = root->fs_info->running_transaction; |
| 3057 | if (!cur_trans) |
| 3058 | return 0; |
| 3059 | |
| 3060 | delayed_refs = &cur_trans->delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3061 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 3062 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3063 | if (!head) { |
| 3064 | spin_unlock(&delayed_refs->lock); |
| 3065 | return 0; |
| 3066 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3067 | |
| 3068 | if (!mutex_trylock(&head->mutex)) { |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 3069 | refcount_inc(&head->node.refs); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3070 | spin_unlock(&delayed_refs->lock); |
| 3071 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3072 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3073 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3074 | /* |
| 3075 | * Mutex was contended, block until it's released and let |
| 3076 | * caller try again |
| 3077 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3078 | mutex_lock(&head->mutex); |
| 3079 | mutex_unlock(&head->mutex); |
| 3080 | btrfs_put_delayed_ref(&head->node); |
| 3081 | return -EAGAIN; |
| 3082 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3083 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3084 | |
| 3085 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 3086 | list_for_each_entry(ref, &head->ref_list, list) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3087 | /* If it's a shared ref we know a cross reference exists */ |
| 3088 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 3089 | ret = 1; |
| 3090 | break; |
| 3091 | } |
| 3092 | |
| 3093 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 3094 | |
| 3095 | /* |
| 3096 | * If our ref doesn't match the one we're currently looking at |
| 3097 | * then we have a cross reference. |
| 3098 | */ |
| 3099 | if (data_ref->root != root->root_key.objectid || |
| 3100 | data_ref->objectid != objectid || |
| 3101 | data_ref->offset != offset) { |
| 3102 | ret = 1; |
| 3103 | break; |
| 3104 | } |
| 3105 | } |
| 3106 | spin_unlock(&head->lock); |
| 3107 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3108 | return ret; |
| 3109 | } |
| 3110 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3111 | static noinline int check_committed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3112 | struct btrfs_path *path, |
| 3113 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3114 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3115 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 3116 | struct btrfs_root *extent_root = fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3117 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3118 | struct btrfs_extent_data_ref *ref; |
| 3119 | struct btrfs_extent_inline_ref *iref; |
| 3120 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3121 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3122 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3123 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3124 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3125 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3126 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3127 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3128 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3129 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 3130 | if (ret < 0) |
| 3131 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3132 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 3133 | |
| 3134 | ret = -ENOENT; |
| 3135 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3136 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3137 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3138 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3139 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3140 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3141 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3142 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3143 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3144 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3145 | ret = 1; |
| 3146 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 3147 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 3148 | if (item_size < sizeof(*ei)) { |
| 3149 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 3150 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3151 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3152 | #endif |
| 3153 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 3154 | |
| 3155 | if (item_size != sizeof(*ei) + |
| 3156 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 3157 | goto out; |
| 3158 | |
| 3159 | if (btrfs_extent_generation(leaf, ei) <= |
| 3160 | btrfs_root_last_snapshot(&root->root_item)) |
| 3161 | goto out; |
| 3162 | |
| 3163 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 3164 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 3165 | BTRFS_EXTENT_DATA_REF_KEY) |
| 3166 | goto out; |
| 3167 | |
| 3168 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3169 | if (btrfs_extent_refs(leaf, ei) != |
| 3170 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3171 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3172 | root->root_key.objectid || |
| 3173 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3174 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3175 | goto out; |
| 3176 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3177 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3178 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3179 | return ret; |
| 3180 | } |
| 3181 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3182 | int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset, |
| 3183 | u64 bytenr) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3184 | { |
| 3185 | struct btrfs_path *path; |
| 3186 | int ret; |
| 3187 | int ret2; |
| 3188 | |
| 3189 | path = btrfs_alloc_path(); |
| 3190 | if (!path) |
| 3191 | return -ENOENT; |
| 3192 | |
| 3193 | do { |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3194 | ret = check_committed_ref(root, path, objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3195 | offset, bytenr); |
| 3196 | if (ret && ret != -ENOENT) |
| 3197 | goto out; |
| 3198 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3199 | ret2 = check_delayed_ref(root, path, objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3200 | offset, bytenr); |
| 3201 | } while (ret2 == -EAGAIN); |
| 3202 | |
| 3203 | if (ret2 && ret2 != -ENOENT) { |
| 3204 | ret = ret2; |
| 3205 | goto out; |
| 3206 | } |
| 3207 | |
| 3208 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3209 | ret = 0; |
| 3210 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3211 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3212 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3213 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3214 | return ret; |
| 3215 | } |
| 3216 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3217 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3218 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3219 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3220 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3221 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3222 | struct btrfs_fs_info *fs_info = root->fs_info; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3223 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3224 | u64 num_bytes; |
| 3225 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3226 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3227 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3228 | struct btrfs_key key; |
| 3229 | struct btrfs_file_extent_item *fi; |
| 3230 | int i; |
| 3231 | int level; |
| 3232 | int ret = 0; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3233 | int (*process_func)(struct btrfs_trans_handle *, |
| 3234 | struct btrfs_fs_info *, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3235 | u64, u64, u64, u64, u64, u64); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3236 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3237 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3238 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3239 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3240 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3241 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3242 | nritems = btrfs_header_nritems(buf); |
| 3243 | level = btrfs_header_level(buf); |
| 3244 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3245 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3246 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3247 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3248 | if (inc) |
| 3249 | process_func = btrfs_inc_extent_ref; |
| 3250 | else |
| 3251 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3252 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3253 | if (full_backref) |
| 3254 | parent = buf->start; |
| 3255 | else |
| 3256 | parent = 0; |
| 3257 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3258 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3259 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3260 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3261 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3262 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3263 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3264 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3265 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3266 | BTRFS_FILE_EXTENT_INLINE) |
| 3267 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3268 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3269 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3270 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3271 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3272 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3273 | key.offset -= btrfs_file_extent_offset(buf, fi); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3274 | ret = process_func(trans, fs_info, bytenr, num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3275 | parent, ref_root, key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3276 | key.offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3277 | if (ret) |
| 3278 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3279 | } else { |
| 3280 | bytenr = btrfs_node_blockptr(buf, i); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3281 | num_bytes = fs_info->nodesize; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3282 | ret = process_func(trans, fs_info, bytenr, num_bytes, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3283 | parent, ref_root, level - 1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3284 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3285 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3286 | } |
| 3287 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3288 | return 0; |
| 3289 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3290 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3291 | } |
| 3292 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3293 | int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3294 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3295 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3296 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3297 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3298 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3299 | int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3300 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3301 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3302 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3303 | } |
| 3304 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3305 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3306 | struct btrfs_fs_info *fs_info, |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3307 | struct btrfs_path *path, |
| 3308 | struct btrfs_block_group_cache *cache) |
| 3309 | { |
| 3310 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3311 | struct btrfs_root *extent_root = fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3312 | unsigned long bi; |
| 3313 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3314 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3315 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3316 | if (ret) { |
| 3317 | if (ret > 0) |
| 3318 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3319 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3320 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3321 | |
| 3322 | leaf = path->nodes[0]; |
| 3323 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3324 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3325 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3326 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3327 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3328 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3329 | |
| 3330 | } |
| 3331 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3332 | static struct btrfs_block_group_cache * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3333 | next_block_group(struct btrfs_fs_info *fs_info, |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3334 | struct btrfs_block_group_cache *cache) |
| 3335 | { |
| 3336 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3337 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3338 | spin_lock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3339 | |
| 3340 | /* If our block group was removed, we need a full search. */ |
| 3341 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3342 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3343 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3344 | spin_unlock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3345 | btrfs_put_block_group(cache); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3346 | cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3347 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3348 | node = rb_next(&cache->cache_node); |
| 3349 | btrfs_put_block_group(cache); |
| 3350 | if (node) { |
| 3351 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3352 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3353 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3354 | } else |
| 3355 | cache = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3356 | spin_unlock(&fs_info->block_group_cache_lock); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3357 | return cache; |
| 3358 | } |
| 3359 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3360 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3361 | struct btrfs_trans_handle *trans, |
| 3362 | struct btrfs_path *path) |
| 3363 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3364 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
| 3365 | struct btrfs_root *root = fs_info->tree_root; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3366 | struct inode *inode = NULL; |
| 3367 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3368 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3369 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3370 | int retries = 0; |
| 3371 | int ret = 0; |
| 3372 | |
| 3373 | /* |
| 3374 | * If this block group is smaller than 100 megs don't bother caching the |
| 3375 | * block group. |
| 3376 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3377 | if (block_group->key.offset < (100 * SZ_1M)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3378 | spin_lock(&block_group->lock); |
| 3379 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3380 | spin_unlock(&block_group->lock); |
| 3381 | return 0; |
| 3382 | } |
| 3383 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3384 | if (trans->aborted) |
| 3385 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3386 | again: |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3387 | inode = lookup_free_space_inode(fs_info, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3388 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3389 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3390 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3391 | goto out; |
| 3392 | } |
| 3393 | |
| 3394 | if (IS_ERR(inode)) { |
| 3395 | BUG_ON(retries); |
| 3396 | retries++; |
| 3397 | |
| 3398 | if (block_group->ro) |
| 3399 | goto out_free; |
| 3400 | |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3401 | ret = create_free_space_inode(fs_info, trans, block_group, |
| 3402 | path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3403 | if (ret) |
| 3404 | goto out_free; |
| 3405 | goto again; |
| 3406 | } |
| 3407 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3408 | /* We've already setup this transaction, go ahead and exit */ |
| 3409 | if (block_group->cache_generation == trans->transid && |
| 3410 | i_size_read(inode)) { |
| 3411 | dcs = BTRFS_DC_SETUP; |
| 3412 | goto out_put; |
| 3413 | } |
| 3414 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3415 | /* |
| 3416 | * We want to set the generation to 0, that way if anything goes wrong |
| 3417 | * from here on out we know not to trust this cache when we load up next |
| 3418 | * time. |
| 3419 | */ |
| 3420 | BTRFS_I(inode)->generation = 0; |
| 3421 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3422 | if (ret) { |
| 3423 | /* |
| 3424 | * So theoretically we could recover from this, simply set the |
| 3425 | * super cache generation to 0 so we know to invalidate the |
| 3426 | * cache, but then we'd have to keep track of the block groups |
| 3427 | * that fail this way so we know we _have_ to reset this cache |
| 3428 | * before the next commit or risk reading stale cache. So to |
| 3429 | * limit our exposure to horrible edge cases lets just abort the |
| 3430 | * transaction, this only happens in really bad situations |
| 3431 | * anyway. |
| 3432 | */ |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3433 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3434 | goto out_put; |
| 3435 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3436 | WARN_ON(ret); |
| 3437 | |
| 3438 | if (i_size_read(inode) > 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3439 | ret = btrfs_check_trunc_cache_free_space(fs_info, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3440 | &fs_info->global_block_rsv); |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3441 | if (ret) |
| 3442 | goto out_put; |
| 3443 | |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3444 | ret = btrfs_truncate_free_space_cache(trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3445 | if (ret) |
| 3446 | goto out_put; |
| 3447 | } |
| 3448 | |
| 3449 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3450 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3451 | !btrfs_test_opt(fs_info, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3452 | /* |
| 3453 | * don't bother trying to write stuff out _if_ |
| 3454 | * a) we're not cached, |
Liu Bo | 1a79c1f | 2017-03-06 13:49:02 -0800 | [diff] [blame] | 3455 | * b) we're with nospace_cache mount option, |
| 3456 | * c) we're with v2 space_cache (FREE_SPACE_TREE). |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3457 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3458 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3459 | spin_unlock(&block_group->lock); |
| 3460 | goto out_put; |
| 3461 | } |
| 3462 | spin_unlock(&block_group->lock); |
| 3463 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3464 | /* |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3465 | * We hit an ENOSPC when setting up the cache in this transaction, just |
| 3466 | * skip doing the setup, we've already cleared the cache so we're safe. |
| 3467 | */ |
| 3468 | if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) { |
| 3469 | ret = -ENOSPC; |
| 3470 | goto out_put; |
| 3471 | } |
| 3472 | |
| 3473 | /* |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3474 | * Try to preallocate enough space based on how big the block group is. |
| 3475 | * Keep in mind this has to include any pinned space which could end up |
| 3476 | * taking up quite a bit since it's not folded into the other space |
| 3477 | * cache. |
| 3478 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3479 | num_pages = div_u64(block_group->key.offset, SZ_256M); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3480 | if (!num_pages) |
| 3481 | num_pages = 1; |
| 3482 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3483 | num_pages *= 16; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3484 | num_pages *= PAGE_SIZE; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3485 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 3486 | ret = btrfs_check_data_free_space(inode, 0, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3487 | if (ret) |
| 3488 | goto out_put; |
| 3489 | |
| 3490 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3491 | num_pages, num_pages, |
| 3492 | &alloc_hint); |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3493 | /* |
| 3494 | * Our cache requires contiguous chunks so that we don't modify a bunch |
| 3495 | * of metadata or split extents when writing the cache out, which means |
| 3496 | * we can enospc if we are heavily fragmented in addition to just normal |
| 3497 | * out of space conditions. So if we hit this just skip setting up any |
| 3498 | * other block groups for this transaction, maybe we'll unpin enough |
| 3499 | * space the next time around. |
| 3500 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3501 | if (!ret) |
| 3502 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3503 | else if (ret == -ENOSPC) |
| 3504 | set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3505 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3506 | out_put: |
| 3507 | iput(inode); |
| 3508 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3509 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3510 | out: |
| 3511 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3512 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3513 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3514 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3515 | spin_unlock(&block_group->lock); |
| 3516 | |
| 3517 | return ret; |
| 3518 | } |
| 3519 | |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3520 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3521 | struct btrfs_fs_info *fs_info) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3522 | { |
| 3523 | struct btrfs_block_group_cache *cache, *tmp; |
| 3524 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3525 | struct btrfs_path *path; |
| 3526 | |
| 3527 | if (list_empty(&cur_trans->dirty_bgs) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3528 | !btrfs_test_opt(fs_info, SPACE_CACHE)) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3529 | return 0; |
| 3530 | |
| 3531 | path = btrfs_alloc_path(); |
| 3532 | if (!path) |
| 3533 | return -ENOMEM; |
| 3534 | |
| 3535 | /* Could add new block groups, use _safe just in case */ |
| 3536 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3537 | dirty_list) { |
| 3538 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3539 | cache_save_setup(cache, trans, path); |
| 3540 | } |
| 3541 | |
| 3542 | btrfs_free_path(path); |
| 3543 | return 0; |
| 3544 | } |
| 3545 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3546 | /* |
| 3547 | * transaction commit does final block group cache writeback during a |
| 3548 | * critical section where nothing is allowed to change the FS. This is |
| 3549 | * required in order for the cache to actually match the block group, |
| 3550 | * but can introduce a lot of latency into the commit. |
| 3551 | * |
| 3552 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3553 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3554 | * block group changes again during the commit, but it greatly reduces |
| 3555 | * the commit latency by getting rid of the easy block groups while |
| 3556 | * we're still allowing others to join the commit. |
| 3557 | */ |
| 3558 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3559 | struct btrfs_fs_info *fs_info) |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3560 | { |
| 3561 | struct btrfs_block_group_cache *cache; |
| 3562 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3563 | int ret = 0; |
| 3564 | int should_put; |
| 3565 | struct btrfs_path *path = NULL; |
| 3566 | LIST_HEAD(dirty); |
| 3567 | struct list_head *io = &cur_trans->io_bgs; |
| 3568 | int num_started = 0; |
| 3569 | int loops = 0; |
| 3570 | |
| 3571 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3572 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3573 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3574 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3575 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3576 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3577 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3578 | |
| 3579 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3580 | /* |
| 3581 | * make sure all the block groups on our dirty list actually |
| 3582 | * exist |
| 3583 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3584 | btrfs_create_pending_block_groups(trans, fs_info); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3585 | |
| 3586 | if (!path) { |
| 3587 | path = btrfs_alloc_path(); |
| 3588 | if (!path) |
| 3589 | return -ENOMEM; |
| 3590 | } |
| 3591 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3592 | /* |
| 3593 | * cache_write_mutex is here only to save us from balance or automatic |
| 3594 | * removal of empty block groups deleting this block group while we are |
| 3595 | * writing out the cache |
| 3596 | */ |
| 3597 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3598 | while (!list_empty(&dirty)) { |
| 3599 | cache = list_first_entry(&dirty, |
| 3600 | struct btrfs_block_group_cache, |
| 3601 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3602 | /* |
| 3603 | * this can happen if something re-dirties a block |
| 3604 | * group that is already under IO. Just wait for it to |
| 3605 | * finish and then do it all again |
| 3606 | */ |
| 3607 | if (!list_empty(&cache->io_list)) { |
| 3608 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3609 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3610 | btrfs_put_block_group(cache); |
| 3611 | } |
| 3612 | |
| 3613 | |
| 3614 | /* |
| 3615 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3616 | * if it should update the cache_state. Don't delete |
| 3617 | * until after we wait. |
| 3618 | * |
| 3619 | * Since we're not running in the commit critical section |
| 3620 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3621 | */ |
| 3622 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3623 | list_del_init(&cache->dirty_list); |
| 3624 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3625 | |
| 3626 | should_put = 1; |
| 3627 | |
| 3628 | cache_save_setup(cache, trans, path); |
| 3629 | |
| 3630 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3631 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3632 | ret = btrfs_write_out_cache(fs_info, trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3633 | cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3634 | if (ret == 0 && cache->io_ctl.inode) { |
| 3635 | num_started++; |
| 3636 | should_put = 0; |
| 3637 | |
| 3638 | /* |
| 3639 | * the cache_write_mutex is protecting |
| 3640 | * the io_list |
| 3641 | */ |
| 3642 | list_add_tail(&cache->io_list, io); |
| 3643 | } else { |
| 3644 | /* |
| 3645 | * if we failed to write the cache, the |
| 3646 | * generation will be bad and life goes on |
| 3647 | */ |
| 3648 | ret = 0; |
| 3649 | } |
| 3650 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3651 | if (!ret) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3652 | ret = write_one_cache_group(trans, fs_info, |
| 3653 | path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3654 | /* |
| 3655 | * Our block group might still be attached to the list |
| 3656 | * of new block groups in the transaction handle of some |
| 3657 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3658 | * means its block group item isn't yet in the extent |
| 3659 | * tree. If this happens ignore the error, as we will |
| 3660 | * try again later in the critical section of the |
| 3661 | * transaction commit. |
| 3662 | */ |
| 3663 | if (ret == -ENOENT) { |
| 3664 | ret = 0; |
| 3665 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3666 | if (list_empty(&cache->dirty_list)) { |
| 3667 | list_add_tail(&cache->dirty_list, |
| 3668 | &cur_trans->dirty_bgs); |
| 3669 | btrfs_get_block_group(cache); |
| 3670 | } |
| 3671 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3672 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3673 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3674 | } |
| 3675 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3676 | |
| 3677 | /* if its not on the io list, we need to put the block group */ |
| 3678 | if (should_put) |
| 3679 | btrfs_put_block_group(cache); |
| 3680 | |
| 3681 | if (ret) |
| 3682 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3683 | |
| 3684 | /* |
| 3685 | * Avoid blocking other tasks for too long. It might even save |
| 3686 | * us from writing caches for block groups that are going to be |
| 3687 | * removed. |
| 3688 | */ |
| 3689 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3690 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3691 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3692 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3693 | |
| 3694 | /* |
| 3695 | * go through delayed refs for all the stuff we've just kicked off |
| 3696 | * and then loop back (just once) |
| 3697 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3698 | ret = btrfs_run_delayed_refs(trans, fs_info, 0); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3699 | if (!ret && loops == 0) { |
| 3700 | loops++; |
| 3701 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3702 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3703 | /* |
| 3704 | * dirty_bgs_lock protects us from concurrent block group |
| 3705 | * deletes too (not just cache_write_mutex). |
| 3706 | */ |
| 3707 | if (!list_empty(&dirty)) { |
| 3708 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3709 | goto again; |
| 3710 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3711 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 3712 | } else if (ret < 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3713 | btrfs_cleanup_dirty_bgs(cur_trans, fs_info); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3714 | } |
| 3715 | |
| 3716 | btrfs_free_path(path); |
| 3717 | return ret; |
| 3718 | } |
| 3719 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3720 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3721 | struct btrfs_fs_info *fs_info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3722 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3723 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3724 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3725 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3726 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3727 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3728 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3729 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3730 | |
| 3731 | path = btrfs_alloc_path(); |
| 3732 | if (!path) |
| 3733 | return -ENOMEM; |
| 3734 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3735 | /* |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3736 | * Even though we are in the critical section of the transaction commit, |
| 3737 | * we can still have concurrent tasks adding elements to this |
| 3738 | * transaction's list of dirty block groups. These tasks correspond to |
| 3739 | * endio free space workers started when writeback finishes for a |
| 3740 | * space cache, which run inode.c:btrfs_finish_ordered_io(), and can |
| 3741 | * allocate new block groups as a result of COWing nodes of the root |
| 3742 | * tree when updating the free space inode. The writeback for the space |
| 3743 | * caches is triggered by an earlier call to |
| 3744 | * btrfs_start_dirty_block_groups() and iterations of the following |
| 3745 | * loop. |
| 3746 | * 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] | 3747 | * delayed refs to make sure we have the best chance at doing this all |
| 3748 | * in one shot. |
| 3749 | */ |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3750 | spin_lock(&cur_trans->dirty_bgs_lock); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3751 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3752 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3753 | struct btrfs_block_group_cache, |
| 3754 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3755 | |
| 3756 | /* |
| 3757 | * this can happen if cache_save_setup re-dirties a block |
| 3758 | * group that is already under IO. Just wait for it to |
| 3759 | * finish and then do it all again |
| 3760 | */ |
| 3761 | if (!list_empty(&cache->io_list)) { |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3762 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3763 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3764 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3765 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3766 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3767 | } |
| 3768 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3769 | /* |
| 3770 | * don't remove from the dirty list until after we've waited |
| 3771 | * on any pending IO |
| 3772 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3773 | list_del_init(&cache->dirty_list); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3774 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3775 | should_put = 1; |
| 3776 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3777 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3778 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3779 | if (!ret) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3780 | ret = btrfs_run_delayed_refs(trans, fs_info, |
| 3781 | (unsigned long) -1); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3782 | |
| 3783 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3784 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3785 | ret = btrfs_write_out_cache(fs_info, trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3786 | cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3787 | if (ret == 0 && cache->io_ctl.inode) { |
| 3788 | num_started++; |
| 3789 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3790 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3791 | } else { |
| 3792 | /* |
| 3793 | * if we failed to write the cache, the |
| 3794 | * generation will be bad and life goes on |
| 3795 | */ |
| 3796 | ret = 0; |
| 3797 | } |
| 3798 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3799 | if (!ret) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3800 | ret = write_one_cache_group(trans, fs_info, |
| 3801 | path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3802 | /* |
| 3803 | * One of the free space endio workers might have |
| 3804 | * created a new block group while updating a free space |
| 3805 | * cache's inode (at inode.c:btrfs_finish_ordered_io()) |
| 3806 | * and hasn't released its transaction handle yet, in |
| 3807 | * which case the new block group is still attached to |
| 3808 | * its transaction handle and its creation has not |
| 3809 | * finished yet (no block group item in the extent tree |
| 3810 | * yet, etc). If this is the case, wait for all free |
| 3811 | * space endio workers to finish and retry. This is a |
| 3812 | * a very rare case so no need for a more efficient and |
| 3813 | * complex approach. |
| 3814 | */ |
| 3815 | if (ret == -ENOENT) { |
| 3816 | wait_event(cur_trans->writer_wait, |
| 3817 | atomic_read(&cur_trans->num_writers) == 1); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3818 | ret = write_one_cache_group(trans, fs_info, |
| 3819 | path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3820 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3821 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3822 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3823 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3824 | |
| 3825 | /* if its not on the io list, we need to put the block group */ |
| 3826 | if (should_put) |
| 3827 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3828 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3829 | } |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3830 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3831 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3832 | while (!list_empty(io)) { |
| 3833 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3834 | io_list); |
| 3835 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3836 | btrfs_wait_cache_io(trans, cache, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3837 | btrfs_put_block_group(cache); |
| 3838 | } |
| 3839 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3840 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3841 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3842 | } |
| 3843 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3844 | int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr) |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3845 | { |
| 3846 | struct btrfs_block_group_cache *block_group; |
| 3847 | int readonly = 0; |
| 3848 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3849 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3850 | if (!block_group || block_group->ro) |
| 3851 | readonly = 1; |
| 3852 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3853 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3854 | return readonly; |
| 3855 | } |
| 3856 | |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3857 | bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3858 | { |
| 3859 | struct btrfs_block_group_cache *bg; |
| 3860 | bool ret = true; |
| 3861 | |
| 3862 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3863 | if (!bg) |
| 3864 | return false; |
| 3865 | |
| 3866 | spin_lock(&bg->lock); |
| 3867 | if (bg->ro) |
| 3868 | ret = false; |
| 3869 | else |
| 3870 | atomic_inc(&bg->nocow_writers); |
| 3871 | spin_unlock(&bg->lock); |
| 3872 | |
| 3873 | /* no put on block group, done by btrfs_dec_nocow_writers */ |
| 3874 | if (!ret) |
| 3875 | btrfs_put_block_group(bg); |
| 3876 | |
| 3877 | return ret; |
| 3878 | |
| 3879 | } |
| 3880 | |
| 3881 | void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3882 | { |
| 3883 | struct btrfs_block_group_cache *bg; |
| 3884 | |
| 3885 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3886 | ASSERT(bg); |
| 3887 | if (atomic_dec_and_test(&bg->nocow_writers)) |
| 3888 | wake_up_atomic_t(&bg->nocow_writers); |
| 3889 | /* |
| 3890 | * Once for our lookup and once for the lookup done by a previous call |
| 3891 | * to btrfs_inc_nocow_writers() |
| 3892 | */ |
| 3893 | btrfs_put_block_group(bg); |
| 3894 | btrfs_put_block_group(bg); |
| 3895 | } |
| 3896 | |
| 3897 | static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a) |
| 3898 | { |
| 3899 | schedule(); |
| 3900 | return 0; |
| 3901 | } |
| 3902 | |
| 3903 | void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg) |
| 3904 | { |
| 3905 | wait_on_atomic_t(&bg->nocow_writers, |
| 3906 | btrfs_wait_nocow_writers_atomic_t, |
| 3907 | TASK_UNINTERRUPTIBLE); |
| 3908 | } |
| 3909 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3910 | static const char *alloc_name(u64 flags) |
| 3911 | { |
| 3912 | switch (flags) { |
| 3913 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3914 | return "mixed"; |
| 3915 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3916 | return "metadata"; |
| 3917 | case BTRFS_BLOCK_GROUP_DATA: |
| 3918 | return "data"; |
| 3919 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3920 | return "system"; |
| 3921 | default: |
| 3922 | WARN_ON(1); |
| 3923 | return "invalid-combination"; |
| 3924 | }; |
| 3925 | } |
| 3926 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3927 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3928 | u64 total_bytes, u64 bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3929 | u64 bytes_readonly, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3930 | struct btrfs_space_info **space_info) |
| 3931 | { |
| 3932 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3933 | int i; |
| 3934 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3935 | int ret; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3936 | |
| 3937 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3938 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3939 | factor = 2; |
| 3940 | else |
| 3941 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3942 | |
| 3943 | found = __find_space_info(info, flags); |
| 3944 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3945 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3946 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3947 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3948 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3949 | found->disk_used += bytes_used * factor; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3950 | found->bytes_readonly += bytes_readonly; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3951 | if (total_bytes > 0) |
| 3952 | found->full = 0; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3953 | space_info_add_new_bytes(info, found, total_bytes - |
| 3954 | bytes_used - bytes_readonly); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3955 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3956 | *space_info = found; |
| 3957 | return 0; |
| 3958 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3959 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3960 | if (!found) |
| 3961 | return -ENOMEM; |
| 3962 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 3963 | ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3964 | if (ret) { |
| 3965 | kfree(found); |
| 3966 | return ret; |
| 3967 | } |
| 3968 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3969 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3970 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3971 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3972 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3973 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3974 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3975 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3976 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3977 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3978 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3979 | found->bytes_reserved = 0; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3980 | found->bytes_readonly = bytes_readonly; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3981 | found->bytes_may_use = 0; |
Filipe Manana | 6af3e3a | 2015-09-07 10:41:12 +0100 | [diff] [blame] | 3982 | found->full = 0; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 3983 | found->max_extent_size = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3984 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3985 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3986 | found->flush = 0; |
| 3987 | init_waitqueue_head(&found->wait); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 3988 | INIT_LIST_HEAD(&found->ro_bgs); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3989 | INIT_LIST_HEAD(&found->tickets); |
| 3990 | INIT_LIST_HEAD(&found->priority_tickets); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3991 | |
| 3992 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3993 | info->space_info_kobj, "%s", |
| 3994 | alloc_name(found->flags)); |
| 3995 | if (ret) { |
Jeff Mahoney | 896533a | 2017-05-17 09:49:37 -0400 | [diff] [blame] | 3996 | percpu_counter_destroy(&found->total_bytes_pinned); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3997 | kfree(found); |
| 3998 | return ret; |
| 3999 | } |
| 4000 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4001 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 4002 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4003 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4004 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 4005 | |
| 4006 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4007 | } |
| 4008 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4009 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 4010 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 4011 | u64 extra_flags = chunk_to_extended(flags) & |
| 4012 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4013 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4014 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4015 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4016 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 4017 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 4018 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 4019 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 4020 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4021 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4022 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4023 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4024 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4025 | * returns target flags in extended format or 0 if restripe for this |
| 4026 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 4027 | * |
| 4028 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4029 | */ |
| 4030 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 4031 | { |
| 4032 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 4033 | u64 target = 0; |
| 4034 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4035 | if (!bctl) |
| 4036 | return 0; |
| 4037 | |
| 4038 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 4039 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4040 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 4041 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 4042 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4043 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 4044 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 4045 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4046 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 4047 | } |
| 4048 | |
| 4049 | return target; |
| 4050 | } |
| 4051 | |
| 4052 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4053 | * @flags: available profiles in extended format (see ctree.h) |
| 4054 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4055 | * Returns reduced profile in chunk format. If profile changing is in |
| 4056 | * progress (either running or paused) picks the target profile (if it's |
| 4057 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4058 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4059 | 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] | 4060 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4061 | u64 num_devices = fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4062 | u64 target; |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4063 | u64 raid_type; |
| 4064 | u64 allowed = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4065 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4066 | /* |
| 4067 | * see if restripe for this chunk_type is in progress, if so |
| 4068 | * try to reduce to the target profile |
| 4069 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4070 | spin_lock(&fs_info->balance_lock); |
| 4071 | target = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4072 | if (target) { |
| 4073 | /* pick target profile only if it's already available */ |
| 4074 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4075 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4076 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4077 | } |
| 4078 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4079 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4080 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4081 | /* First, mask out the RAID levels which aren't possible */ |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4082 | for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) { |
| 4083 | if (num_devices >= btrfs_raid_array[raid_type].devs_min) |
| 4084 | allowed |= btrfs_raid_group[raid_type]; |
| 4085 | } |
| 4086 | allowed &= flags; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4087 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4088 | if (allowed & BTRFS_BLOCK_GROUP_RAID6) |
| 4089 | allowed = BTRFS_BLOCK_GROUP_RAID6; |
| 4090 | else if (allowed & BTRFS_BLOCK_GROUP_RAID5) |
| 4091 | allowed = BTRFS_BLOCK_GROUP_RAID5; |
| 4092 | else if (allowed & BTRFS_BLOCK_GROUP_RAID10) |
| 4093 | allowed = BTRFS_BLOCK_GROUP_RAID10; |
| 4094 | else if (allowed & BTRFS_BLOCK_GROUP_RAID1) |
| 4095 | allowed = BTRFS_BLOCK_GROUP_RAID1; |
| 4096 | else if (allowed & BTRFS_BLOCK_GROUP_RAID0) |
| 4097 | allowed = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4098 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4099 | flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4100 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4101 | return extended_to_chunk(flags | allowed); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4102 | } |
| 4103 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4104 | 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] | 4105 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4106 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4107 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4108 | |
| 4109 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4110 | flags = orig_flags; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4111 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4112 | |
| 4113 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4114 | flags |= fs_info->avail_data_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4115 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4116 | flags |= fs_info->avail_system_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4117 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4118 | flags |= fs_info->avail_metadata_alloc_bits; |
| 4119 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4120 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4121 | return btrfs_reduce_alloc_profile(fs_info, flags); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4122 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4123 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 4124 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4125 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4126 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4127 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4128 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4129 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4130 | if (data) |
| 4131 | flags = BTRFS_BLOCK_GROUP_DATA; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4132 | else if (root == fs_info->chunk_root) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4133 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 4134 | else |
| 4135 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 4136 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4137 | ret = get_alloc_profile(fs_info, flags); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4138 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4139 | } |
| 4140 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4141 | static u64 btrfs_space_info_used(struct btrfs_space_info *s_info, |
| 4142 | bool may_use_included) |
| 4143 | { |
| 4144 | ASSERT(s_info); |
| 4145 | return s_info->bytes_used + s_info->bytes_reserved + |
| 4146 | s_info->bytes_pinned + s_info->bytes_readonly + |
| 4147 | (may_use_included ? s_info->bytes_may_use : 0); |
| 4148 | } |
| 4149 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4150 | int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4151 | { |
| 4152 | struct btrfs_space_info *data_sinfo; |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4153 | struct btrfs_root *root = inode->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4154 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4155 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4156 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4157 | int need_commit = 2; |
| 4158 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4159 | |
| 4160 | /* make sure bytes are sectorsize aligned */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4161 | bytes = ALIGN(bytes, fs_info->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4162 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4163 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4164 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4165 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4166 | } |
| 4167 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4168 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4169 | if (!data_sinfo) |
| 4170 | goto alloc; |
| 4171 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4172 | again: |
| 4173 | /* make sure we have enough space to handle the data first */ |
| 4174 | spin_lock(&data_sinfo->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4175 | used = btrfs_space_info_used(data_sinfo, true); |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4176 | |
| 4177 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4178 | struct btrfs_trans_handle *trans; |
| 4179 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4180 | /* |
| 4181 | * if we don't have enough free bytes in this space then we need |
| 4182 | * to alloc a new chunk. |
| 4183 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 4184 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4185 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4186 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4187 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4188 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4189 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4190 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4191 | /* |
| 4192 | * It is ugly that we don't call nolock join |
| 4193 | * transaction for the free space inode case here. |
| 4194 | * But it is safe because we only do the data space |
| 4195 | * reservation for the free space cache in the |
| 4196 | * transaction context, the common join transaction |
| 4197 | * just increase the counter of the current transaction |
| 4198 | * handler, doesn't try to acquire the trans_lock of |
| 4199 | * the fs. |
| 4200 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4201 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4202 | if (IS_ERR(trans)) |
| 4203 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4204 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4205 | ret = do_chunk_alloc(trans, fs_info, alloc_target, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4206 | CHUNK_ALLOC_NO_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4207 | btrfs_end_transaction(trans); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4208 | if (ret < 0) { |
| 4209 | if (ret != -ENOSPC) |
| 4210 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4211 | else { |
| 4212 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4213 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4214 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4215 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4216 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4217 | if (!data_sinfo) |
| 4218 | data_sinfo = fs_info->data_sinfo; |
| 4219 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4220 | goto again; |
| 4221 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4222 | |
| 4223 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4224 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4225 | * allocation, and no removed chunk in current transaction, |
| 4226 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4227 | */ |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4228 | have_pinned_space = percpu_counter_compare( |
| 4229 | &data_sinfo->total_bytes_pinned, |
| 4230 | used + bytes - data_sinfo->total_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4231 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4232 | |
| 4233 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4234 | commit_trans: |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4235 | if (need_commit && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4236 | !atomic_read(&fs_info->open_ioctl_trans)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4237 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4238 | |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4239 | if (need_commit > 0) { |
| 4240 | btrfs_start_delalloc_roots(fs_info, 0, -1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4241 | btrfs_wait_ordered_roots(fs_info, -1, 0, |
| 4242 | (u64)-1); |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4243 | } |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 4244 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4245 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4246 | if (IS_ERR(trans)) |
| 4247 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4248 | if (have_pinned_space >= 0 || |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 4249 | test_bit(BTRFS_TRANS_HAVE_FREE_BGS, |
| 4250 | &trans->transaction->flags) || |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4251 | need_commit > 0) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4252 | ret = btrfs_commit_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4253 | if (ret) |
| 4254 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4255 | /* |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4256 | * The cleaner kthread might still be doing iput |
| 4257 | * operations. Wait for it to finish so that |
| 4258 | * more space is released. |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4259 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4260 | mutex_lock(&fs_info->cleaner_delayed_iput_mutex); |
| 4261 | mutex_unlock(&fs_info->cleaner_delayed_iput_mutex); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4262 | goto again; |
| 4263 | } else { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4264 | btrfs_end_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4265 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4266 | } |
| 4267 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4268 | trace_btrfs_space_reservation(fs_info, |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4269 | "space_info:enospc", |
| 4270 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4271 | return -ENOSPC; |
| 4272 | } |
| 4273 | data_sinfo->bytes_may_use += bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4274 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4275 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4276 | spin_unlock(&data_sinfo->lock); |
| 4277 | |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4278 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4279 | } |
| 4280 | |
| 4281 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4282 | * New check_data_free_space() with ability for precious data reservation |
| 4283 | * Will replace old btrfs_check_data_free_space(), but for patch split, |
| 4284 | * add a new function first and then replace it. |
| 4285 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 4286 | int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4287 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4288 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4289 | int ret; |
| 4290 | |
| 4291 | /* align the range */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4292 | len = round_up(start + len, fs_info->sectorsize) - |
| 4293 | round_down(start, fs_info->sectorsize); |
| 4294 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4295 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4296 | ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4297 | if (ret < 0) |
| 4298 | return ret; |
| 4299 | |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4300 | /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */ |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4301 | ret = btrfs_qgroup_reserve_data(inode, start, len); |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4302 | if (ret) |
| 4303 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4304 | return ret; |
| 4305 | } |
| 4306 | |
| 4307 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4308 | * Called if we need to clear a data reservation for this inode |
| 4309 | * Normally in a error case. |
| 4310 | * |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4311 | * This one will *NOT* use accurate qgroup reserved space API, just for case |
| 4312 | * which we can't sleep and is sure it won't affect qgroup reserved space. |
| 4313 | * Like clear_bit_hook(). |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4314 | */ |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4315 | void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start, |
| 4316 | u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4317 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4318 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4319 | struct btrfs_space_info *data_sinfo; |
| 4320 | |
| 4321 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4322 | len = round_up(start + len, fs_info->sectorsize) - |
| 4323 | round_down(start, fs_info->sectorsize); |
| 4324 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4325 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4326 | data_sinfo = fs_info->data_sinfo; |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4327 | spin_lock(&data_sinfo->lock); |
| 4328 | if (WARN_ON(data_sinfo->bytes_may_use < len)) |
| 4329 | data_sinfo->bytes_may_use = 0; |
| 4330 | else |
| 4331 | data_sinfo->bytes_may_use -= len; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4332 | trace_btrfs_space_reservation(fs_info, "space_info", |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4333 | data_sinfo->flags, len, 0); |
| 4334 | spin_unlock(&data_sinfo->lock); |
| 4335 | } |
| 4336 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4337 | /* |
| 4338 | * Called if we need to clear a data reservation for this inode |
| 4339 | * Normally in a error case. |
| 4340 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4341 | * 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] | 4342 | * space framework. |
| 4343 | */ |
| 4344 | void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len) |
| 4345 | { |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4346 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4347 | |
| 4348 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4349 | len = round_up(start + len, root->fs_info->sectorsize) - |
| 4350 | round_down(start, root->fs_info->sectorsize); |
| 4351 | start = round_down(start, root->fs_info->sectorsize); |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4352 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4353 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
| 4354 | btrfs_qgroup_free_data(inode, start, len); |
| 4355 | } |
| 4356 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4357 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4358 | { |
| 4359 | struct list_head *head = &info->space_info; |
| 4360 | struct btrfs_space_info *found; |
| 4361 | |
| 4362 | rcu_read_lock(); |
| 4363 | list_for_each_entry_rcu(found, head, list) { |
| 4364 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4365 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4366 | } |
| 4367 | rcu_read_unlock(); |
| 4368 | } |
| 4369 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4370 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4371 | { |
| 4372 | return (global->size << 1); |
| 4373 | } |
| 4374 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4375 | static int should_alloc_chunk(struct btrfs_fs_info *fs_info, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4376 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4377 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4378 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4379 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4380 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4381 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4382 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4383 | if (force == CHUNK_ALLOC_FORCE) |
| 4384 | return 1; |
| 4385 | |
| 4386 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4387 | * We need to take into account the global rsv because for all intents |
| 4388 | * and purposes it's used space. Don't worry about locking the |
| 4389 | * global_rsv, it doesn't change except when the transaction commits. |
| 4390 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 4391 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4392 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4393 | |
| 4394 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4395 | * in limited mode, we want to have some free space up to |
| 4396 | * about 1% of the FS size. |
| 4397 | */ |
| 4398 | if (force == CHUNK_ALLOC_LIMITED) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4399 | thresh = btrfs_super_total_bytes(fs_info->super_copy); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4400 | thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1)); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4401 | |
| 4402 | if (num_bytes - num_allocated < thresh) |
| 4403 | return 1; |
| 4404 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4405 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4406 | if (num_allocated + SZ_2M < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4407 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4408 | return 1; |
| 4409 | } |
| 4410 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4411 | 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] | 4412 | { |
| 4413 | u64 num_dev; |
| 4414 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4415 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4416 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4417 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4418 | BTRFS_BLOCK_GROUP_RAID6)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4419 | num_dev = fs_info->fs_devices->rw_devices; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4420 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4421 | num_dev = 2; |
| 4422 | else |
| 4423 | num_dev = 1; /* DUP or single */ |
| 4424 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4425 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4426 | } |
| 4427 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4428 | /* |
| 4429 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4430 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4431 | * removing a chunk. |
| 4432 | */ |
| 4433 | void check_system_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4434 | struct btrfs_fs_info *fs_info, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4435 | { |
| 4436 | struct btrfs_space_info *info; |
| 4437 | u64 left; |
| 4438 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4439 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4440 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4441 | |
| 4442 | /* |
| 4443 | * Needed because we can end up allocating a system chunk and for an |
| 4444 | * atomic and race free space reservation in the chunk block reserve. |
| 4445 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4446 | ASSERT(mutex_is_locked(&fs_info->chunk_mutex)); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4447 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4448 | info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4449 | spin_lock(&info->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4450 | left = info->total_bytes - btrfs_space_info_used(info, true); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4451 | spin_unlock(&info->lock); |
| 4452 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4453 | num_devs = get_profile_num_devs(fs_info, type); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4454 | |
| 4455 | /* 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] | 4456 | thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) + |
| 4457 | btrfs_calc_trans_metadata_size(fs_info, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4458 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4459 | if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
| 4460 | btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4461 | left, thresh, type); |
| 4462 | dump_space_info(fs_info, info, 0, 0); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4463 | } |
| 4464 | |
| 4465 | if (left < thresh) { |
| 4466 | u64 flags; |
| 4467 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4468 | flags = btrfs_get_alloc_profile(fs_info->chunk_root, 0); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4469 | /* |
| 4470 | * Ignore failure to create system chunk. We might end up not |
| 4471 | * needing it, as we might not need to COW all nodes/leafs from |
| 4472 | * the paths we visit in the chunk tree (they were already COWed |
| 4473 | * or created in the current transaction for example). |
| 4474 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4475 | ret = btrfs_alloc_chunk(trans, fs_info, flags); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4476 | } |
| 4477 | |
| 4478 | if (!ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4479 | ret = btrfs_block_rsv_add(fs_info->chunk_root, |
| 4480 | &fs_info->chunk_block_rsv, |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4481 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4482 | if (!ret) |
| 4483 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4484 | } |
| 4485 | } |
| 4486 | |
Liu Bo | 28b737f | 2016-07-29 11:09:50 -0700 | [diff] [blame] | 4487 | /* |
| 4488 | * If force is CHUNK_ALLOC_FORCE: |
| 4489 | * - return 1 if it successfully allocates a chunk, |
| 4490 | * - return errors including -ENOSPC otherwise. |
| 4491 | * If force is NOT CHUNK_ALLOC_FORCE: |
| 4492 | * - return 0 if it doesn't need to allocate a new chunk, |
| 4493 | * - return 1 if it successfully allocates a chunk, |
| 4494 | * - return errors including -ENOSPC otherwise. |
| 4495 | */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4496 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4497 | struct btrfs_fs_info *fs_info, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4498 | { |
| 4499 | struct btrfs_space_info *space_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4500 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4501 | int ret = 0; |
| 4502 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4503 | /* Don't re-enter if we're already allocating a chunk */ |
| 4504 | if (trans->allocating_chunk) |
| 4505 | return -ENOSPC; |
| 4506 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4507 | space_info = __find_space_info(fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4508 | if (!space_info) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4509 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4510 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4511 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4512 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4513 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4514 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4515 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 4516 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4517 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4518 | if (space_info->full) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4519 | if (should_alloc_chunk(fs_info, space_info, force)) |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4520 | ret = -ENOSPC; |
| 4521 | else |
| 4522 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4523 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4524 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4525 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4526 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4527 | if (!should_alloc_chunk(fs_info, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4528 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4529 | return 0; |
| 4530 | } else if (space_info->chunk_alloc) { |
| 4531 | wait_for_alloc = 1; |
| 4532 | } else { |
| 4533 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4534 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4535 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4536 | spin_unlock(&space_info->lock); |
| 4537 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4538 | mutex_lock(&fs_info->chunk_mutex); |
| 4539 | |
| 4540 | /* |
| 4541 | * The chunk_mutex is held throughout the entirety of a chunk |
| 4542 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 4543 | * other guy is done and we need to recheck and see if we should |
| 4544 | * allocate. |
| 4545 | */ |
| 4546 | if (wait_for_alloc) { |
| 4547 | mutex_unlock(&fs_info->chunk_mutex); |
| 4548 | wait_for_alloc = 0; |
| 4549 | goto again; |
| 4550 | } |
| 4551 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4552 | trans->allocating_chunk = true; |
| 4553 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4554 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4555 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4556 | * allocating mixed chunks instead of individual chunks. |
| 4557 | */ |
| 4558 | if (btrfs_mixed_space_info(space_info)) |
| 4559 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4560 | |
| 4561 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4562 | * if we're doing a data chunk, go ahead and make sure that |
| 4563 | * we keep a reasonable number of metadata chunks allocated in the |
| 4564 | * FS as well. |
| 4565 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4566 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4567 | fs_info->data_chunk_allocations++; |
| 4568 | if (!(fs_info->data_chunk_allocations % |
| 4569 | fs_info->metadata_ratio)) |
| 4570 | force_metadata_allocation(fs_info); |
| 4571 | } |
| 4572 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4573 | /* |
| 4574 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4575 | * to update devices. |
| 4576 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4577 | check_system_chunk(trans, fs_info, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4578 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4579 | ret = btrfs_alloc_chunk(trans, fs_info, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4580 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4581 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4582 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4583 | if (ret < 0 && ret != -ENOSPC) |
| 4584 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4585 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4586 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4587 | else |
| 4588 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4589 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4590 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4591 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4592 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4593 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4594 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4595 | /* |
| 4596 | * When we allocate a new chunk we reserve space in the chunk block |
| 4597 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4598 | * add new nodes/leafs to it if we end up needing to do it when |
| 4599 | * inserting the chunk item and updating device items as part of the |
| 4600 | * second phase of chunk allocation, performed by |
| 4601 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4602 | * large number of new block groups to create in our transaction |
| 4603 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4604 | * in extreme cases - like having a single transaction create many new |
| 4605 | * block groups when starting to write out the free space caches of all |
| 4606 | * the block groups that were made dirty during the lifetime of the |
| 4607 | * transaction. |
| 4608 | */ |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 4609 | if (trans->can_flush_pending_bgs && |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4610 | trans->chunk_bytes_reserved >= (u64)SZ_2M) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4611 | btrfs_create_pending_block_groups(trans, fs_info); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4612 | btrfs_trans_release_chunk_metadata(trans); |
| 4613 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4614 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4615 | } |
| 4616 | |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4617 | static int can_overcommit(struct btrfs_root *root, |
| 4618 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4619 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4620 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4621 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 4622 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4623 | u64 profile; |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4624 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4625 | u64 avail; |
| 4626 | u64 used; |
| 4627 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4628 | /* Don't overcommit when in mixed mode. */ |
| 4629 | if (space_info->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4630 | return 0; |
| 4631 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4632 | profile = btrfs_get_alloc_profile(root, 0); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4633 | used = btrfs_space_info_used(space_info, false); |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4634 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4635 | /* |
| 4636 | * We only want to allow over committing if we have lots of actual space |
| 4637 | * free, but if we don't have enough space to handle the global reserve |
| 4638 | * space then we could end up having a real enospc problem when trying |
| 4639 | * to allocate a chunk or some other such important allocation. |
| 4640 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4641 | spin_lock(&global_rsv->lock); |
| 4642 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4643 | spin_unlock(&global_rsv->lock); |
| 4644 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4645 | return 0; |
| 4646 | |
| 4647 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4648 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4649 | spin_lock(&fs_info->free_chunk_lock); |
| 4650 | avail = fs_info->free_chunk_space; |
| 4651 | spin_unlock(&fs_info->free_chunk_lock); |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4652 | |
| 4653 | /* |
| 4654 | * If we have dup, raid1 or raid10 then only half of the free |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4655 | * space is actually useable. For raid56, the space info used |
| 4656 | * doesn't include the parity drive, so we don't have to |
| 4657 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4658 | */ |
| 4659 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4660 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4661 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4662 | avail >>= 1; |
| 4663 | |
| 4664 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4665 | * If we aren't flushing all things, let us overcommit up to |
| 4666 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4667 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4668 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4669 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4670 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4671 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4672 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4673 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4674 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4675 | return 1; |
| 4676 | return 0; |
| 4677 | } |
| 4678 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4679 | 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] | 4680 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4681 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4682 | struct super_block *sb = fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4683 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4684 | if (down_read_trylock(&sb->s_umount)) { |
| 4685 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4686 | up_read(&sb->s_umount); |
| 4687 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4688 | /* |
| 4689 | * We needn't worry the filesystem going from r/w to r/o though |
| 4690 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4691 | * should guarantee the delalloc inodes list be empty after |
| 4692 | * the filesystem is readonly(all dirty pages are written to |
| 4693 | * the disk). |
| 4694 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4695 | btrfs_start_delalloc_roots(fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4696 | if (!current->journal_info) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4697 | btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4698 | } |
| 4699 | } |
| 4700 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4701 | static inline int calc_reclaim_items_nr(struct btrfs_fs_info *fs_info, |
| 4702 | u64 to_reclaim) |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4703 | { |
| 4704 | u64 bytes; |
| 4705 | int nr; |
| 4706 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4707 | bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4708 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4709 | if (!nr) |
| 4710 | nr = 1; |
| 4711 | return nr; |
| 4712 | } |
| 4713 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4714 | #define EXTENT_SIZE_PER_ITEM SZ_256K |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4715 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4716 | /* |
| 4717 | * shrink metadata reservation for delalloc |
| 4718 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4719 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4720 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4721 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4722 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4723 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4724 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4725 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4726 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4727 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4728 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4729 | unsigned long nr_pages; |
| 4730 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4731 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4732 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4733 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4734 | /* Calc the number of the pages we need flush for space reservation */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4735 | items = calc_reclaim_items_nr(fs_info, to_reclaim); |
Adam Borowski | 8eb0dfd | 2016-05-08 15:08:00 +0200 | [diff] [blame] | 4736 | to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4737 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4738 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4739 | block_rsv = &fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4740 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4741 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4742 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4743 | &fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4744 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4745 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4746 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4747 | if (wait_ordered) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4748 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4749 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4750 | } |
| 4751 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4752 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4753 | while (delalloc_bytes && loops < 3) { |
| 4754 | max_reclaim = min(delalloc_bytes, to_reclaim); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4755 | nr_pages = max_reclaim >> PAGE_SHIFT; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4756 | btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4757 | /* |
| 4758 | * We need to wait for the async pages to actually start before |
| 4759 | * we do anything. |
| 4760 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4761 | max_reclaim = atomic_read(&fs_info->async_delalloc_pages); |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4762 | if (!max_reclaim) |
| 4763 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4764 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4765 | if (max_reclaim <= nr_pages) |
| 4766 | max_reclaim = 0; |
| 4767 | else |
| 4768 | max_reclaim -= nr_pages; |
| 4769 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4770 | wait_event(fs_info->async_submit_wait, |
| 4771 | atomic_read(&fs_info->async_delalloc_pages) <= |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4772 | (int)max_reclaim); |
| 4773 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4774 | if (!trans) |
| 4775 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4776 | else |
| 4777 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4778 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4779 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4780 | spin_unlock(&space_info->lock); |
| 4781 | break; |
| 4782 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4783 | if (list_empty(&space_info->tickets) && |
| 4784 | list_empty(&space_info->priority_tickets)) { |
| 4785 | spin_unlock(&space_info->lock); |
| 4786 | break; |
| 4787 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4788 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4789 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4790 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4791 | if (wait_ordered && !trans) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4792 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4793 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4794 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4795 | if (time_left) |
| 4796 | break; |
| 4797 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4798 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4799 | &fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4800 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4801 | } |
| 4802 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4803 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4804 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4805 | * @root - the root we're allocating for |
| 4806 | * @bytes - the number of bytes we want to reserve |
| 4807 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4808 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4809 | * This will check to make sure that committing the transaction will actually |
| 4810 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4811 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4812 | */ |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4813 | static int may_commit_transaction(struct btrfs_fs_info *fs_info, |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4814 | struct btrfs_space_info *space_info, |
| 4815 | u64 bytes, int force) |
| 4816 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4817 | struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4818 | struct btrfs_trans_handle *trans; |
| 4819 | |
| 4820 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4821 | if (trans) |
| 4822 | return -EAGAIN; |
| 4823 | |
| 4824 | if (force) |
| 4825 | goto commit; |
| 4826 | |
| 4827 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4828 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4829 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4830 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4831 | |
| 4832 | /* |
| 4833 | * See if there is some space in the delayed insertion reservation for |
| 4834 | * this reservation. |
| 4835 | */ |
| 4836 | if (space_info != delayed_rsv->space_info) |
| 4837 | return -ENOSPC; |
| 4838 | |
| 4839 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4840 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4841 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4842 | spin_unlock(&delayed_rsv->lock); |
| 4843 | return -ENOSPC; |
| 4844 | } |
| 4845 | spin_unlock(&delayed_rsv->lock); |
| 4846 | |
| 4847 | commit: |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 4848 | trans = btrfs_join_transaction(fs_info->extent_root); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4849 | if (IS_ERR(trans)) |
| 4850 | return -ENOSPC; |
| 4851 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4852 | return btrfs_commit_transaction(trans); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4853 | } |
| 4854 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4855 | struct reserve_ticket { |
| 4856 | u64 bytes; |
| 4857 | int error; |
| 4858 | struct list_head list; |
| 4859 | wait_queue_head_t wait; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4860 | }; |
| 4861 | |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4862 | static int flush_space(struct btrfs_fs_info *fs_info, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4863 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4864 | u64 orig_bytes, int state) |
| 4865 | { |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 4866 | struct btrfs_root *root = fs_info->extent_root; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4867 | struct btrfs_trans_handle *trans; |
| 4868 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4869 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4870 | |
| 4871 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4872 | case FLUSH_DELAYED_ITEMS_NR: |
| 4873 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4874 | if (state == FLUSH_DELAYED_ITEMS_NR) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4875 | nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4876 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4877 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4878 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4879 | trans = btrfs_join_transaction(root); |
| 4880 | if (IS_ERR(trans)) { |
| 4881 | ret = PTR_ERR(trans); |
| 4882 | break; |
| 4883 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4884 | ret = btrfs_run_delayed_items_nr(trans, fs_info, nr); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4885 | btrfs_end_transaction(trans); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4886 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4887 | case FLUSH_DELALLOC: |
| 4888 | case FLUSH_DELALLOC_WAIT: |
Miao Xie | 24af7dd | 2014-03-06 13:55:00 +0800 | [diff] [blame] | 4889 | shrink_delalloc(root, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4890 | state == FLUSH_DELALLOC_WAIT); |
| 4891 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4892 | case ALLOC_CHUNK: |
| 4893 | trans = btrfs_join_transaction(root); |
| 4894 | if (IS_ERR(trans)) { |
| 4895 | ret = PTR_ERR(trans); |
| 4896 | break; |
| 4897 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4898 | ret = do_chunk_alloc(trans, fs_info, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4899 | btrfs_get_alloc_profile(root, 0), |
| 4900 | CHUNK_ALLOC_NO_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4901 | btrfs_end_transaction(trans); |
Alex Lyakas | eecba89 | 2015-12-06 12:32:31 +0200 | [diff] [blame] | 4902 | if (ret > 0 || ret == -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4903 | ret = 0; |
| 4904 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4905 | case COMMIT_TRANS: |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4906 | ret = may_commit_transaction(fs_info, space_info, |
| 4907 | orig_bytes, 0); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4908 | break; |
| 4909 | default: |
| 4910 | ret = -ENOSPC; |
| 4911 | break; |
| 4912 | } |
| 4913 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4914 | trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 4915 | orig_bytes, state, ret); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4916 | return ret; |
| 4917 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4918 | |
| 4919 | static inline u64 |
| 4920 | btrfs_calc_reclaim_metadata_size(struct btrfs_root *root, |
| 4921 | struct btrfs_space_info *space_info) |
| 4922 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4923 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4924 | u64 used; |
| 4925 | u64 expected; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4926 | u64 to_reclaim = 0; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4927 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4928 | list_for_each_entry(ticket, &space_info->tickets, list) |
| 4929 | to_reclaim += ticket->bytes; |
| 4930 | list_for_each_entry(ticket, &space_info->priority_tickets, list) |
| 4931 | to_reclaim += ticket->bytes; |
| 4932 | if (to_reclaim) |
| 4933 | return to_reclaim; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4934 | |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4935 | to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M); |
| 4936 | if (can_overcommit(root, space_info, to_reclaim, |
| 4937 | BTRFS_RESERVE_FLUSH_ALL)) |
| 4938 | return 0; |
| 4939 | |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4940 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4941 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4942 | space_info->bytes_may_use; |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4943 | if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4944 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4945 | else |
| 4946 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4947 | |
| 4948 | if (used > expected) |
| 4949 | to_reclaim = used - expected; |
| 4950 | else |
| 4951 | to_reclaim = 0; |
| 4952 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4953 | space_info->bytes_reserved); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4954 | return to_reclaim; |
| 4955 | } |
| 4956 | |
| 4957 | static inline int need_do_async_reclaim(struct btrfs_space_info *space_info, |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4958 | struct btrfs_root *root, u64 used) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4959 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4960 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4961 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4962 | |
| 4963 | /* 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] | 4964 | if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh) |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4965 | return 0; |
| 4966 | |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4967 | if (!btrfs_calc_reclaim_metadata_size(root, space_info)) |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4968 | return 0; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4969 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4970 | return (used >= thresh && !btrfs_fs_closing(fs_info) && |
| 4971 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4972 | } |
| 4973 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4974 | static void wake_all_tickets(struct list_head *head) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4975 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4976 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4977 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4978 | while (!list_empty(head)) { |
| 4979 | ticket = list_first_entry(head, struct reserve_ticket, list); |
| 4980 | list_del_init(&ticket->list); |
| 4981 | ticket->error = -ENOSPC; |
| 4982 | wake_up(&ticket->wait); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4983 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4984 | } |
| 4985 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4986 | /* |
| 4987 | * This is for normal flushers, we can wait all goddamned day if we want to. We |
| 4988 | * will loop and continuously try to flush as long as we are making progress. |
| 4989 | * We count progress as clearing off tickets each time we have to loop. |
| 4990 | */ |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4991 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4992 | { |
| 4993 | struct btrfs_fs_info *fs_info; |
| 4994 | struct btrfs_space_info *space_info; |
| 4995 | u64 to_reclaim; |
| 4996 | int flush_state; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4997 | int commit_cycles = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 4998 | u64 last_tickets_id; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4999 | |
| 5000 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 5001 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 5002 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5003 | spin_lock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5004 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 5005 | space_info); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5006 | if (!to_reclaim) { |
| 5007 | space_info->flush = 0; |
| 5008 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5009 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5010 | } |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5011 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5012 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5013 | |
| 5014 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5015 | do { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5016 | struct reserve_ticket *ticket; |
| 5017 | int ret; |
| 5018 | |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 5019 | ret = flush_space(fs_info, space_info, to_reclaim, to_reclaim, |
| 5020 | flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5021 | spin_lock(&space_info->lock); |
| 5022 | if (list_empty(&space_info->tickets)) { |
| 5023 | space_info->flush = 0; |
| 5024 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5025 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5026 | } |
| 5027 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 5028 | space_info); |
| 5029 | ticket = list_first_entry(&space_info->tickets, |
| 5030 | struct reserve_ticket, list); |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5031 | if (last_tickets_id == space_info->tickets_id) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5032 | flush_state++; |
| 5033 | } else { |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5034 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5035 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5036 | if (commit_cycles) |
| 5037 | commit_cycles--; |
| 5038 | } |
| 5039 | |
| 5040 | if (flush_state > COMMIT_TRANS) { |
| 5041 | commit_cycles++; |
| 5042 | if (commit_cycles > 2) { |
| 5043 | wake_all_tickets(&space_info->tickets); |
| 5044 | space_info->flush = 0; |
| 5045 | } else { |
| 5046 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5047 | } |
| 5048 | } |
| 5049 | spin_unlock(&space_info->lock); |
| 5050 | } while (flush_state <= COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5051 | } |
| 5052 | |
| 5053 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 5054 | { |
| 5055 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 5056 | } |
| 5057 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5058 | static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info, |
| 5059 | struct btrfs_space_info *space_info, |
| 5060 | struct reserve_ticket *ticket) |
| 5061 | { |
| 5062 | u64 to_reclaim; |
| 5063 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5064 | |
| 5065 | spin_lock(&space_info->lock); |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 5066 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->extent_root, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5067 | space_info); |
| 5068 | if (!to_reclaim) { |
| 5069 | spin_unlock(&space_info->lock); |
| 5070 | return; |
| 5071 | } |
| 5072 | spin_unlock(&space_info->lock); |
| 5073 | |
| 5074 | do { |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 5075 | flush_space(fs_info, space_info, to_reclaim, to_reclaim, |
| 5076 | flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5077 | flush_state++; |
| 5078 | spin_lock(&space_info->lock); |
| 5079 | if (ticket->bytes == 0) { |
| 5080 | spin_unlock(&space_info->lock); |
| 5081 | return; |
| 5082 | } |
| 5083 | spin_unlock(&space_info->lock); |
| 5084 | |
| 5085 | /* |
| 5086 | * Priority flushers can't wait on delalloc without |
| 5087 | * deadlocking. |
| 5088 | */ |
| 5089 | if (flush_state == FLUSH_DELALLOC || |
| 5090 | flush_state == FLUSH_DELALLOC_WAIT) |
| 5091 | flush_state = ALLOC_CHUNK; |
| 5092 | } while (flush_state < COMMIT_TRANS); |
| 5093 | } |
| 5094 | |
| 5095 | static int wait_reserve_ticket(struct btrfs_fs_info *fs_info, |
| 5096 | struct btrfs_space_info *space_info, |
| 5097 | struct reserve_ticket *ticket, u64 orig_bytes) |
| 5098 | |
| 5099 | { |
| 5100 | DEFINE_WAIT(wait); |
| 5101 | int ret = 0; |
| 5102 | |
| 5103 | spin_lock(&space_info->lock); |
| 5104 | while (ticket->bytes > 0 && ticket->error == 0) { |
| 5105 | ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE); |
| 5106 | if (ret) { |
| 5107 | ret = -EINTR; |
| 5108 | break; |
| 5109 | } |
| 5110 | spin_unlock(&space_info->lock); |
| 5111 | |
| 5112 | schedule(); |
| 5113 | |
| 5114 | finish_wait(&ticket->wait, &wait); |
| 5115 | spin_lock(&space_info->lock); |
| 5116 | } |
| 5117 | if (!ret) |
| 5118 | ret = ticket->error; |
| 5119 | if (!list_empty(&ticket->list)) |
| 5120 | list_del_init(&ticket->list); |
| 5121 | if (ticket->bytes && ticket->bytes < orig_bytes) { |
| 5122 | u64 num_bytes = orig_bytes - ticket->bytes; |
| 5123 | space_info->bytes_may_use -= num_bytes; |
| 5124 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5125 | space_info->flags, num_bytes, 0); |
| 5126 | } |
| 5127 | spin_unlock(&space_info->lock); |
| 5128 | |
| 5129 | return ret; |
| 5130 | } |
| 5131 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5132 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5133 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5134 | * @root - the root we're allocating for |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5135 | * @space_info - the space info we want to allocate from |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5136 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 5137 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5138 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5139 | * 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] | 5140 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5141 | * flush out space to make room. It will do this by flushing delalloc if |
| 5142 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5143 | * regain reservations will be made and this will fail if there is not enough |
| 5144 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5145 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5146 | static int __reserve_metadata_bytes(struct btrfs_root *root, |
| 5147 | struct btrfs_space_info *space_info, |
| 5148 | u64 orig_bytes, |
| 5149 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5150 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5151 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5152 | struct reserve_ticket ticket; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5153 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5154 | int ret = 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5155 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5156 | ASSERT(orig_bytes); |
Josef Bacik | 8ca17f0 | 2016-05-27 13:24:13 -0400 | [diff] [blame] | 5157 | ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL); |
| 5158 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5159 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 5160 | ret = -ENOSPC; |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5161 | used = btrfs_space_info_used(space_info, true); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5162 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5163 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5164 | * If we have enough space then hooray, make our reservation and carry |
| 5165 | * on. If not see if we can overcommit, and if we can, hooray carry on. |
| 5166 | * If not things get more complicated. |
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 (used + orig_bytes <= space_info->total_bytes) { |
| 5169 | space_info->bytes_may_use += orig_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5170 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5171 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5172 | ret = 0; |
| 5173 | } else if (can_overcommit(root, space_info, orig_bytes, flush)) { |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5174 | space_info->bytes_may_use += orig_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5175 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5176 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5177 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5178 | } |
| 5179 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5180 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5181 | * If we couldn't make a reservation then setup our reservation ticket |
| 5182 | * and kick the async worker if it's not already running. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5183 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5184 | * If we are a priority flusher then we just need to add our ticket to |
| 5185 | * the list and we will do our own flushing further down. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5186 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 5187 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5188 | ticket.bytes = orig_bytes; |
| 5189 | ticket.error = 0; |
| 5190 | init_waitqueue_head(&ticket.wait); |
| 5191 | if (flush == BTRFS_RESERVE_FLUSH_ALL) { |
| 5192 | list_add_tail(&ticket.list, &space_info->tickets); |
| 5193 | if (!space_info->flush) { |
| 5194 | space_info->flush = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5195 | trace_btrfs_trigger_flush(fs_info, |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5196 | space_info->flags, |
| 5197 | orig_bytes, flush, |
| 5198 | "enospc"); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5199 | queue_work(system_unbound_wq, |
| 5200 | &root->fs_info->async_reclaim_work); |
| 5201 | } |
| 5202 | } else { |
| 5203 | list_add_tail(&ticket.list, |
| 5204 | &space_info->priority_tickets); |
| 5205 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5206 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 5207 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 5208 | /* |
| 5209 | * We will do the space reservation dance during log replay, |
| 5210 | * which means we won't have fs_info->fs_root set, so don't do |
| 5211 | * the async reclaim as we will panic. |
| 5212 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5213 | if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) && |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 5214 | need_do_async_reclaim(space_info, root, used) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5215 | !work_busy(&fs_info->async_reclaim_work)) { |
| 5216 | trace_btrfs_trigger_flush(fs_info, space_info->flags, |
| 5217 | orig_bytes, flush, "preempt"); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5218 | queue_work(system_unbound_wq, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5219 | &fs_info->async_reclaim_work); |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5220 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5221 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5222 | spin_unlock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5223 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5224 | return ret; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5225 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5226 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5227 | return wait_reserve_ticket(fs_info, space_info, &ticket, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5228 | orig_bytes); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5229 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5230 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5231 | priority_reclaim_metadata_space(fs_info, space_info, &ticket); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5232 | spin_lock(&space_info->lock); |
| 5233 | if (ticket.bytes) { |
| 5234 | if (ticket.bytes < orig_bytes) { |
| 5235 | u64 num_bytes = orig_bytes - ticket.bytes; |
| 5236 | space_info->bytes_may_use -= num_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5237 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5238 | space_info->flags, |
| 5239 | num_bytes, 0); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5240 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5241 | } |
| 5242 | list_del_init(&ticket.list); |
| 5243 | ret = -ENOSPC; |
| 5244 | } |
| 5245 | spin_unlock(&space_info->lock); |
| 5246 | ASSERT(list_empty(&ticket.list)); |
| 5247 | return ret; |
| 5248 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5249 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5250 | /** |
| 5251 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5252 | * @root - the root we're allocating for |
| 5253 | * @block_rsv - the block_rsv we're allocating for |
| 5254 | * @orig_bytes - the number of bytes we want |
| 5255 | * @flush - whether or not we can flush to make our reservation |
| 5256 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5257 | * This will reserve orgi_bytes number of bytes from the space info associated |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5258 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5259 | * flush out space to make room. It will do this by flushing delalloc if |
| 5260 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5261 | * regain reservations will be made and this will fail if there is not enough |
| 5262 | * space already. |
| 5263 | */ |
| 5264 | static int reserve_metadata_bytes(struct btrfs_root *root, |
| 5265 | struct btrfs_block_rsv *block_rsv, |
| 5266 | u64 orig_bytes, |
| 5267 | enum btrfs_reserve_flush_enum flush) |
| 5268 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5269 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5270 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5271 | int ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5272 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5273 | ret = __reserve_metadata_bytes(root, block_rsv->space_info, orig_bytes, |
| 5274 | flush); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5275 | if (ret == -ENOSPC && |
| 5276 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5277 | if (block_rsv != global_rsv && |
| 5278 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 5279 | ret = 0; |
| 5280 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 5281 | if (ret == -ENOSPC) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5282 | trace_btrfs_space_reservation(fs_info, "space_info:enospc", |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5283 | block_rsv->space_info->flags, |
| 5284 | orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5285 | return ret; |
| 5286 | } |
| 5287 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5288 | static struct btrfs_block_rsv *get_block_rsv( |
| 5289 | const struct btrfs_trans_handle *trans, |
| 5290 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5291 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5292 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5293 | struct btrfs_block_rsv *block_rsv = NULL; |
| 5294 | |
Alexandru Moise | e9cf439 | 2015-09-09 00:18:50 +0000 | [diff] [blame] | 5295 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5296 | (root == fs_info->csum_root && trans->adding_csums) || |
| 5297 | (root == fs_info->uuid_root)) |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 5298 | block_rsv = trans->block_rsv; |
| 5299 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5300 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5301 | block_rsv = root->block_rsv; |
| 5302 | |
| 5303 | if (!block_rsv) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5304 | block_rsv = &fs_info->empty_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5305 | |
| 5306 | return block_rsv; |
| 5307 | } |
| 5308 | |
| 5309 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 5310 | u64 num_bytes) |
| 5311 | { |
| 5312 | int ret = -ENOSPC; |
| 5313 | spin_lock(&block_rsv->lock); |
| 5314 | if (block_rsv->reserved >= num_bytes) { |
| 5315 | block_rsv->reserved -= num_bytes; |
| 5316 | if (block_rsv->reserved < block_rsv->size) |
| 5317 | block_rsv->full = 0; |
| 5318 | ret = 0; |
| 5319 | } |
| 5320 | spin_unlock(&block_rsv->lock); |
| 5321 | return ret; |
| 5322 | } |
| 5323 | |
| 5324 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 5325 | u64 num_bytes, int update_size) |
| 5326 | { |
| 5327 | spin_lock(&block_rsv->lock); |
| 5328 | block_rsv->reserved += num_bytes; |
| 5329 | if (update_size) |
| 5330 | block_rsv->size += num_bytes; |
| 5331 | else if (block_rsv->reserved >= block_rsv->size) |
| 5332 | block_rsv->full = 1; |
| 5333 | spin_unlock(&block_rsv->lock); |
| 5334 | } |
| 5335 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 5336 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 5337 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 5338 | int min_factor) |
| 5339 | { |
| 5340 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5341 | u64 min_bytes; |
| 5342 | |
| 5343 | if (global_rsv->space_info != dest->space_info) |
| 5344 | return -ENOSPC; |
| 5345 | |
| 5346 | spin_lock(&global_rsv->lock); |
| 5347 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 5348 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 5349 | spin_unlock(&global_rsv->lock); |
| 5350 | return -ENOSPC; |
| 5351 | } |
| 5352 | global_rsv->reserved -= num_bytes; |
| 5353 | if (global_rsv->reserved < global_rsv->size) |
| 5354 | global_rsv->full = 0; |
| 5355 | spin_unlock(&global_rsv->lock); |
| 5356 | |
| 5357 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 5358 | return 0; |
| 5359 | } |
| 5360 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5361 | /* |
| 5362 | * This is for space we already have accounted in space_info->bytes_may_use, so |
| 5363 | * basically when we're returning space from block_rsv's. |
| 5364 | */ |
| 5365 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 5366 | struct btrfs_space_info *space_info, |
| 5367 | u64 num_bytes) |
| 5368 | { |
| 5369 | struct reserve_ticket *ticket; |
| 5370 | struct list_head *head; |
| 5371 | u64 used; |
| 5372 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH; |
| 5373 | bool check_overcommit = false; |
| 5374 | |
| 5375 | spin_lock(&space_info->lock); |
| 5376 | head = &space_info->priority_tickets; |
| 5377 | |
| 5378 | /* |
| 5379 | * If we are over our limit then we need to check and see if we can |
| 5380 | * overcommit, and if we can't then we just need to free up our space |
| 5381 | * and not satisfy any requests. |
| 5382 | */ |
| 5383 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 5384 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 5385 | space_info->bytes_may_use; |
| 5386 | if (used - num_bytes >= space_info->total_bytes) |
| 5387 | check_overcommit = true; |
| 5388 | again: |
| 5389 | while (!list_empty(head) && num_bytes) { |
| 5390 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5391 | list); |
| 5392 | /* |
| 5393 | * We use 0 bytes because this space is already reserved, so |
| 5394 | * adding the ticket space would be a double count. |
| 5395 | */ |
| 5396 | if (check_overcommit && |
| 5397 | !can_overcommit(fs_info->extent_root, space_info, 0, |
| 5398 | flush)) |
| 5399 | break; |
| 5400 | if (num_bytes >= ticket->bytes) { |
| 5401 | list_del_init(&ticket->list); |
| 5402 | num_bytes -= ticket->bytes; |
| 5403 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5404 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5405 | wake_up(&ticket->wait); |
| 5406 | } else { |
| 5407 | ticket->bytes -= num_bytes; |
| 5408 | num_bytes = 0; |
| 5409 | } |
| 5410 | } |
| 5411 | |
| 5412 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5413 | head = &space_info->tickets; |
| 5414 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 5415 | goto again; |
| 5416 | } |
| 5417 | space_info->bytes_may_use -= num_bytes; |
| 5418 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5419 | space_info->flags, num_bytes, 0); |
| 5420 | spin_unlock(&space_info->lock); |
| 5421 | } |
| 5422 | |
| 5423 | /* |
| 5424 | * This is for newly allocated space that isn't accounted in |
| 5425 | * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent |
| 5426 | * we use this helper. |
| 5427 | */ |
| 5428 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 5429 | struct btrfs_space_info *space_info, |
| 5430 | u64 num_bytes) |
| 5431 | { |
| 5432 | struct reserve_ticket *ticket; |
| 5433 | struct list_head *head = &space_info->priority_tickets; |
| 5434 | |
| 5435 | again: |
| 5436 | while (!list_empty(head) && num_bytes) { |
| 5437 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5438 | list); |
| 5439 | if (num_bytes >= ticket->bytes) { |
| 5440 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5441 | space_info->flags, |
| 5442 | ticket->bytes, 1); |
| 5443 | list_del_init(&ticket->list); |
| 5444 | num_bytes -= ticket->bytes; |
| 5445 | space_info->bytes_may_use += ticket->bytes; |
| 5446 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5447 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5448 | wake_up(&ticket->wait); |
| 5449 | } else { |
| 5450 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5451 | space_info->flags, |
| 5452 | num_bytes, 1); |
| 5453 | space_info->bytes_may_use += num_bytes; |
| 5454 | ticket->bytes -= num_bytes; |
| 5455 | num_bytes = 0; |
| 5456 | } |
| 5457 | } |
| 5458 | |
| 5459 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5460 | head = &space_info->tickets; |
| 5461 | goto again; |
| 5462 | } |
| 5463 | } |
| 5464 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5465 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 5466 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 5467 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5468 | { |
| 5469 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 5470 | |
| 5471 | spin_lock(&block_rsv->lock); |
| 5472 | if (num_bytes == (u64)-1) |
| 5473 | num_bytes = block_rsv->size; |
| 5474 | block_rsv->size -= num_bytes; |
| 5475 | if (block_rsv->reserved >= block_rsv->size) { |
| 5476 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 5477 | block_rsv->reserved = block_rsv->size; |
| 5478 | block_rsv->full = 1; |
| 5479 | } else { |
| 5480 | num_bytes = 0; |
| 5481 | } |
| 5482 | spin_unlock(&block_rsv->lock); |
| 5483 | |
| 5484 | if (num_bytes > 0) { |
| 5485 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 5486 | spin_lock(&dest->lock); |
| 5487 | if (!dest->full) { |
| 5488 | u64 bytes_to_add; |
| 5489 | |
| 5490 | bytes_to_add = dest->size - dest->reserved; |
| 5491 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 5492 | dest->reserved += bytes_to_add; |
| 5493 | if (dest->reserved >= dest->size) |
| 5494 | dest->full = 1; |
| 5495 | num_bytes -= bytes_to_add; |
| 5496 | } |
| 5497 | spin_unlock(&dest->lock); |
| 5498 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5499 | if (num_bytes) |
| 5500 | space_info_add_old_bytes(fs_info, space_info, |
| 5501 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5502 | } |
| 5503 | } |
| 5504 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5505 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src, |
| 5506 | struct btrfs_block_rsv *dst, u64 num_bytes, |
| 5507 | int update_size) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5508 | { |
| 5509 | int ret; |
| 5510 | |
| 5511 | ret = block_rsv_use_bytes(src, num_bytes); |
| 5512 | if (ret) |
| 5513 | return ret; |
| 5514 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5515 | block_rsv_add_bytes(dst, num_bytes, update_size); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5516 | return 0; |
| 5517 | } |
| 5518 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5519 | 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] | 5520 | { |
| 5521 | memset(rsv, 0, sizeof(*rsv)); |
| 5522 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5523 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5524 | } |
| 5525 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5526 | 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] | 5527 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5528 | { |
| 5529 | struct btrfs_block_rsv *block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5530 | |
| 5531 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 5532 | if (!block_rsv) |
| 5533 | return NULL; |
| 5534 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5535 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5536 | block_rsv->space_info = __find_space_info(fs_info, |
| 5537 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5538 | return block_rsv; |
| 5539 | } |
| 5540 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5541 | void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5542 | struct btrfs_block_rsv *rsv) |
| 5543 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 5544 | if (!rsv) |
| 5545 | return; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5546 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5547 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5548 | } |
| 5549 | |
Chris Mason | cdfb080 | 2015-04-06 18:17:00 -0700 | [diff] [blame] | 5550 | void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv) |
| 5551 | { |
| 5552 | kfree(rsv); |
| 5553 | } |
| 5554 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5555 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5556 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5557 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5558 | { |
| 5559 | int ret; |
| 5560 | |
| 5561 | if (num_bytes == 0) |
| 5562 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5563 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5564 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5565 | if (!ret) { |
| 5566 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 5567 | return 0; |
| 5568 | } |
| 5569 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5570 | return ret; |
| 5571 | } |
| 5572 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5573 | 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] | 5574 | { |
| 5575 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5576 | int ret = -ENOSPC; |
| 5577 | |
| 5578 | if (!block_rsv) |
| 5579 | return 0; |
| 5580 | |
| 5581 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5582 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5583 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5584 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5585 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5586 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5587 | return ret; |
| 5588 | } |
| 5589 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5590 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5591 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5592 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5593 | { |
| 5594 | u64 num_bytes = 0; |
| 5595 | int ret = -ENOSPC; |
| 5596 | |
| 5597 | if (!block_rsv) |
| 5598 | return 0; |
| 5599 | |
| 5600 | spin_lock(&block_rsv->lock); |
| 5601 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5602 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5603 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5604 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5605 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5606 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5607 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5608 | if (!ret) |
| 5609 | return 0; |
| 5610 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5611 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5612 | if (!ret) { |
| 5613 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5614 | return 0; |
| 5615 | } |
| 5616 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5617 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5618 | } |
| 5619 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5620 | void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5621 | struct btrfs_block_rsv *block_rsv, |
| 5622 | u64 num_bytes) |
| 5623 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5624 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5625 | |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 5626 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5627 | block_rsv->space_info != global_rsv->space_info) |
| 5628 | global_rsv = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5629 | block_rsv_release_bytes(fs_info, block_rsv, global_rsv, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5630 | } |
| 5631 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5632 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5633 | { |
| 5634 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5635 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5636 | u64 num_bytes; |
| 5637 | |
Josef Bacik | ae2e472 | 2016-05-27 12:58:35 -0400 | [diff] [blame] | 5638 | /* |
| 5639 | * The global block rsv is based on the size of the extent tree, the |
| 5640 | * checksum tree and the root tree. If the fs is empty we want to set |
| 5641 | * it to a minimal amount for safety. |
| 5642 | */ |
| 5643 | num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) + |
| 5644 | btrfs_root_used(&fs_info->csum_root->root_item) + |
| 5645 | btrfs_root_used(&fs_info->tree_root->root_item); |
| 5646 | num_bytes = max_t(u64, num_bytes, SZ_16M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5647 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5648 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5649 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5650 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 5651 | block_rsv->size = min_t(u64, num_bytes, SZ_512M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5652 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5653 | if (block_rsv->reserved < block_rsv->size) { |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5654 | num_bytes = btrfs_space_info_used(sinfo, true); |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5655 | if (sinfo->total_bytes > num_bytes) { |
| 5656 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5657 | num_bytes = min(num_bytes, |
| 5658 | block_rsv->size - block_rsv->reserved); |
| 5659 | block_rsv->reserved += num_bytes; |
| 5660 | sinfo->bytes_may_use += num_bytes; |
| 5661 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5662 | sinfo->flags, num_bytes, |
| 5663 | 1); |
| 5664 | } |
| 5665 | } else if (block_rsv->reserved > block_rsv->size) { |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5666 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5667 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5668 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5669 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5670 | block_rsv->reserved = block_rsv->size; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5671 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5672 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5673 | if (block_rsv->reserved == block_rsv->size) |
| 5674 | block_rsv->full = 1; |
| 5675 | else |
| 5676 | block_rsv->full = 0; |
| 5677 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5678 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5679 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5680 | } |
| 5681 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5682 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5683 | { |
| 5684 | struct btrfs_space_info *space_info; |
| 5685 | |
| 5686 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5687 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5688 | |
| 5689 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5690 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5691 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5692 | fs_info->trans_block_rsv.space_info = space_info; |
| 5693 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5694 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5695 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5696 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 5697 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 5698 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5699 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5700 | if (fs_info->quota_root) |
| 5701 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5702 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5703 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5704 | update_global_block_rsv(fs_info); |
| 5705 | } |
| 5706 | |
| 5707 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5708 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5709 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 5710 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5711 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 5712 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 5713 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5714 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5715 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5716 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5717 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5718 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5719 | } |
| 5720 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5721 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5722 | struct btrfs_fs_info *fs_info) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5723 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 5724 | if (!trans->block_rsv) |
| 5725 | return; |
| 5726 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5727 | if (!trans->bytes_reserved) |
| 5728 | return; |
| 5729 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5730 | trace_btrfs_space_reservation(fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5731 | trans->transid, trans->bytes_reserved, 0); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5732 | btrfs_block_rsv_release(fs_info, trans->block_rsv, |
| 5733 | trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5734 | trans->bytes_reserved = 0; |
| 5735 | } |
| 5736 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5737 | /* |
| 5738 | * To be called after all the new block groups attached to the transaction |
| 5739 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5740 | */ |
| 5741 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5742 | { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 5743 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5744 | |
| 5745 | if (!trans->chunk_bytes_reserved) |
| 5746 | return; |
| 5747 | |
| 5748 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5749 | |
| 5750 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
| 5751 | trans->chunk_bytes_reserved); |
| 5752 | trans->chunk_bytes_reserved = 0; |
| 5753 | } |
| 5754 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5755 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5756 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5757 | struct btrfs_inode *inode) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5758 | { |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5759 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5760 | struct btrfs_root *root = inode->root; |
Josef Bacik | 40acc3e | 2016-05-27 13:01:08 -0400 | [diff] [blame] | 5761 | /* |
| 5762 | * We always use trans->block_rsv here as we will have reserved space |
| 5763 | * for our orphan when starting the transaction, using get_block_rsv() |
| 5764 | * here will sometimes make us choose the wrong block rsv as we could be |
| 5765 | * doing a reloc inode for a non refcounted root. |
| 5766 | */ |
| 5767 | struct btrfs_block_rsv *src_rsv = trans->block_rsv; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5768 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 5769 | |
| 5770 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5771 | * We need to hold space in order to delete our orphan item once we've |
| 5772 | * added it, so this takes the reservation so we can release it later |
| 5773 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5774 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5775 | u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
| 5776 | |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5777 | trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode), |
| 5778 | num_bytes, 1); |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5779 | return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5780 | } |
| 5781 | |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5782 | void btrfs_orphan_release_metadata(struct btrfs_inode *inode) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5783 | { |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5784 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5785 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5786 | u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
| 5787 | |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5788 | trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode), |
| 5789 | num_bytes, 0); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5790 | btrfs_block_rsv_release(fs_info, root->orphan_block_rsv, num_bytes); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5791 | } |
| 5792 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5793 | /* |
| 5794 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 5795 | * root: the root of the parent directory |
| 5796 | * rsv: block reservation |
| 5797 | * items: the number of items that we need do reservation |
| 5798 | * qgroup_reserved: used to return the reserved size in qgroup |
| 5799 | * |
| 5800 | * This function is used to reserve the space for snapshot/subvolume |
| 5801 | * creation and deletion. Those operations are different with the |
| 5802 | * common file/directory operations, they change two fs/file trees |
| 5803 | * and root tree, the number of items that the qgroup reserves is |
| 5804 | * different with the free space reservation. So we can not use |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5805 | * the space reservation mechanism in start_transaction(). |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5806 | */ |
| 5807 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 5808 | struct btrfs_block_rsv *rsv, |
| 5809 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5810 | u64 *qgroup_reserved, |
| 5811 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5812 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5813 | u64 num_bytes; |
| 5814 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5815 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5816 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5817 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5818 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5819 | /* One for parent inode, two for dir entries */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5820 | num_bytes = 3 * fs_info->nodesize; |
Jeff Mahoney | 003d7c5 | 2017-01-25 09:50:33 -0500 | [diff] [blame] | 5821 | ret = btrfs_qgroup_reserve_meta(root, num_bytes, true); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5822 | if (ret) |
| 5823 | return ret; |
| 5824 | } else { |
| 5825 | num_bytes = 0; |
| 5826 | } |
| 5827 | |
| 5828 | *qgroup_reserved = num_bytes; |
| 5829 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5830 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, items); |
| 5831 | rsv->space_info = __find_space_info(fs_info, |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5832 | BTRFS_BLOCK_GROUP_METADATA); |
| 5833 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5834 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5835 | |
| 5836 | if (ret == -ENOSPC && use_global_rsv) |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5837 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5838 | |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5839 | if (ret && *qgroup_reserved) |
| 5840 | btrfs_qgroup_free_meta(root, *qgroup_reserved); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5841 | |
| 5842 | return ret; |
| 5843 | } |
| 5844 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5845 | void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info, |
David Sterba | 7775c81 | 2017-02-10 19:18:18 +0100 | [diff] [blame] | 5846 | struct btrfs_block_rsv *rsv) |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5847 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5848 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5849 | } |
| 5850 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5851 | /** |
| 5852 | * drop_outstanding_extent - drop an outstanding extent |
| 5853 | * @inode: the inode we're dropping the extent for |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5854 | * @num_bytes: the number of bytes we're releasing. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5855 | * |
| 5856 | * This is called when we are freeing up an outstanding extent, either called |
| 5857 | * after an error or after an extent is written. This will return the number of |
| 5858 | * reserved extents that need to be freed. This must be called with |
| 5859 | * BTRFS_I(inode)->lock held. |
| 5860 | */ |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5861 | static unsigned drop_outstanding_extent(struct btrfs_inode *inode, |
| 5862 | u64 num_bytes) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5863 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5864 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5865 | unsigned dropped_extents = 0; |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5866 | unsigned num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5867 | |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5868 | num_extents = count_max_extents(num_bytes); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5869 | ASSERT(num_extents); |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5870 | ASSERT(inode->outstanding_extents >= num_extents); |
| 5871 | inode->outstanding_extents -= num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5872 | |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5873 | if (inode->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5874 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5875 | &inode->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5876 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5877 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5878 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5879 | * If we have more or the same amount of outstanding extents than we have |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5880 | * reserved then we need to leave the reserved extents count alone. |
| 5881 | */ |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5882 | if (inode->outstanding_extents >= inode->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5883 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5884 | |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5885 | dropped_extents = inode->reserved_extents - inode->outstanding_extents; |
| 5886 | inode->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5887 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5888 | } |
| 5889 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5890 | /** |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5891 | * calc_csum_metadata_size - return the amount of metadata space that must be |
| 5892 | * reserved/freed for the given bytes. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5893 | * @inode: the inode we're manipulating |
| 5894 | * @num_bytes: the number of bytes in question |
| 5895 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5896 | * |
| 5897 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5898 | * correct amount of metadata that must either be reserved or freed. We |
| 5899 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5900 | * number of bytes that will need to be checksumed by this value to figure out |
| 5901 | * how many checksums will be required. If we are adding bytes then the number |
| 5902 | * may go up and we will return the number of additional bytes that must be |
| 5903 | * reserved. If it is going down we will return the number of bytes that must |
| 5904 | * be freed. |
| 5905 | * |
| 5906 | * This must be called with BTRFS_I(inode)->lock held. |
| 5907 | */ |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5908 | static u64 calc_csum_metadata_size(struct btrfs_inode *inode, u64 num_bytes, |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5909 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5910 | { |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5911 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 5912 | u64 old_csums, num_csums; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5913 | |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5914 | if (inode->flags & BTRFS_INODE_NODATASUM && inode->csum_bytes == 0) |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5915 | return 0; |
| 5916 | |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5917 | old_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5918 | if (reserve) |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5919 | inode->csum_bytes += num_bytes; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5920 | else |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5921 | inode->csum_bytes -= num_bytes; |
| 5922 | num_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5923 | |
| 5924 | /* No change, no need to reserve more */ |
| 5925 | if (old_csums == num_csums) |
| 5926 | return 0; |
| 5927 | |
| 5928 | if (reserve) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5929 | return btrfs_calc_trans_metadata_size(fs_info, |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5930 | num_csums - old_csums); |
| 5931 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5932 | return btrfs_calc_trans_metadata_size(fs_info, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5933 | } |
| 5934 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5935 | int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5936 | { |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5937 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5938 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5939 | struct btrfs_block_rsv *block_rsv = &fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5940 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5941 | u64 csum_bytes; |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5942 | unsigned nr_extents; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5943 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5944 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5945 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5946 | u64 to_free = 0; |
| 5947 | unsigned dropped; |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5948 | bool release_extra = false; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5949 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5950 | /* If we are a free space inode we need to not flush since we will be in |
| 5951 | * the middle of a transaction commit. We also don't need the delalloc |
| 5952 | * mutex since we won't race with anybody. We need this mostly to make |
| 5953 | * lockdep shut its filthy mouth. |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5954 | * |
| 5955 | * If we have a transaction open (can happen if we call truncate_block |
| 5956 | * from truncate), then we need FLUSH_LIMIT so we don't deadlock. |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5957 | */ |
| 5958 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5959 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5960 | delalloc_lock = false; |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5961 | } else if (current->journal_info) { |
| 5962 | flush = BTRFS_RESERVE_FLUSH_LIMIT; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5963 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5964 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5965 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5966 | btrfs_transaction_in_commit(fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5967 | schedule_timeout(1); |
| 5968 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5969 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5970 | mutex_lock(&inode->delalloc_mutex); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5971 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5972 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5973 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5974 | spin_lock(&inode->lock); |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5975 | nr_extents = count_max_extents(num_bytes); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5976 | inode->outstanding_extents += nr_extents; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5977 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5978 | nr_extents = 0; |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5979 | if (inode->outstanding_extents > inode->reserved_extents) |
| 5980 | nr_extents += inode->outstanding_extents - |
| 5981 | inode->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5982 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5983 | /* We always want to reserve a slot for updating the inode. */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5984 | to_reserve = btrfs_calc_trans_metadata_size(fs_info, nr_extents + 1); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5985 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5986 | csum_bytes = inode->csum_bytes; |
| 5987 | spin_unlock(&inode->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5988 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5989 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5990 | ret = btrfs_qgroup_reserve_meta(root, |
Jeff Mahoney | 003d7c5 | 2017-01-25 09:50:33 -0500 | [diff] [blame] | 5991 | nr_extents * fs_info->nodesize, true); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5992 | if (ret) |
| 5993 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5994 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5995 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5996 | ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5997 | if (unlikely(ret)) { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 5998 | btrfs_qgroup_free_meta(root, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5999 | nr_extents * fs_info->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6000 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6001 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6002 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6003 | spin_lock(&inode->lock); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6004 | if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6005 | &inode->runtime_flags)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6006 | to_reserve -= btrfs_calc_trans_metadata_size(fs_info, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6007 | release_extra = true; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6008 | } |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6009 | inode->reserved_extents += nr_extents; |
| 6010 | spin_unlock(&inode->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6011 | |
| 6012 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6013 | mutex_unlock(&inode->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6014 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6015 | if (to_reserve) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6016 | trace_btrfs_space_reservation(fs_info, "delalloc", |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6017 | btrfs_ino(inode), to_reserve, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6018 | if (release_extra) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6019 | btrfs_block_rsv_release(fs_info, block_rsv, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6020 | btrfs_calc_trans_metadata_size(fs_info, 1)); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6021 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6022 | |
| 6023 | out_fail: |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6024 | spin_lock(&inode->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6025 | dropped = drop_outstanding_extent(inode, num_bytes); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6026 | /* |
| 6027 | * If the inodes csum_bytes is the same as the original |
| 6028 | * csum_bytes then we know we haven't raced with any free()ers |
| 6029 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6030 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6031 | if (inode->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6032 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6033 | } else { |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6034 | u64 orig_csum_bytes = inode->csum_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6035 | u64 bytes; |
| 6036 | |
| 6037 | /* |
| 6038 | * This is tricky, but first we need to figure out how much we |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6039 | * freed from any free-ers that occurred during this |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6040 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 6041 | * before we dropped our lock, and then call the free for the |
| 6042 | * number of bytes that were freed while we were trying our |
| 6043 | * reservation. |
| 6044 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6045 | bytes = csum_bytes - inode->csum_bytes; |
| 6046 | inode->csum_bytes = csum_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6047 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 6048 | |
| 6049 | |
| 6050 | /* |
| 6051 | * Now we need to see how much we would have freed had we not |
| 6052 | * been making this reservation and our ->csum_bytes were not |
| 6053 | * artificially inflated. |
| 6054 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6055 | inode->csum_bytes = csum_bytes - num_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6056 | bytes = csum_bytes - orig_csum_bytes; |
| 6057 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 6058 | |
| 6059 | /* |
| 6060 | * Now reset ->csum_bytes to what it should be. If bytes is |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6061 | * more than to_free then we would have freed more space had we |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6062 | * not had an artificially high ->csum_bytes, so we need to free |
| 6063 | * the remainder. If bytes is the same or less then we don't |
| 6064 | * need to do anything, the other free-ers did the correct |
| 6065 | * thing. |
| 6066 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6067 | inode->csum_bytes = orig_csum_bytes - num_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6068 | if (bytes > to_free) |
| 6069 | to_free = bytes - to_free; |
| 6070 | else |
| 6071 | to_free = 0; |
| 6072 | } |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6073 | spin_unlock(&inode->lock); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 6074 | if (dropped) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6075 | to_free += btrfs_calc_trans_metadata_size(fs_info, dropped); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6076 | |
| 6077 | if (to_free) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6078 | btrfs_block_rsv_release(fs_info, block_rsv, to_free); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6079 | trace_btrfs_space_reservation(fs_info, "delalloc", |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6080 | btrfs_ino(inode), to_free, 0); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6081 | } |
| 6082 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6083 | mutex_unlock(&inode->delalloc_mutex); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6084 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6085 | } |
| 6086 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6087 | /** |
| 6088 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 6089 | * @inode: the inode to release the reservation for |
| 6090 | * @num_bytes: the number of bytes we're releasing |
| 6091 | * |
| 6092 | * This will release the metadata reservation for an inode. This can be called |
| 6093 | * once we complete IO for a given set of bytes to release their metadata |
| 6094 | * reservations. |
| 6095 | */ |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6096 | void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6097 | { |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6098 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6099 | u64 to_free = 0; |
| 6100 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6101 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6102 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6103 | spin_lock(&inode->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6104 | dropped = drop_outstanding_extent(inode, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6105 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 6106 | if (num_bytes) |
| 6107 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6108 | spin_unlock(&inode->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6109 | if (dropped > 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6110 | to_free += btrfs_calc_trans_metadata_size(fs_info, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6111 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6112 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 6113 | return; |
| 6114 | |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6115 | trace_btrfs_space_reservation(fs_info, "delalloc", btrfs_ino(inode), |
| 6116 | to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 6117 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6118 | btrfs_block_rsv_release(fs_info, &fs_info->delalloc_block_rsv, to_free); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6119 | } |
| 6120 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6121 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6122 | * btrfs_delalloc_reserve_space - reserve data and metadata space for |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6123 | * delalloc |
| 6124 | * @inode: inode we're writing to |
| 6125 | * @start: start range we are writing to |
| 6126 | * @len: how long the range we are writing to |
| 6127 | * |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6128 | * This will do the following things |
| 6129 | * |
| 6130 | * o reserve space in data space info for num bytes |
| 6131 | * and reserve precious corresponding qgroup space |
| 6132 | * (Done in check_data_free_space) |
| 6133 | * |
| 6134 | * o reserve space for metadata space, based on the number of outstanding |
| 6135 | * extents and how much csums will be needed |
| 6136 | * also reserve metadata space in a per root over-reserve method. |
| 6137 | * o add to the inodes->delalloc_bytes |
| 6138 | * o add it to the fs_info's delalloc inodes list. |
| 6139 | * (Above 3 all done in delalloc_reserve_metadata) |
| 6140 | * |
| 6141 | * Return 0 for success |
| 6142 | * Return <0 for error(-ENOSPC or -EQUOT) |
| 6143 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6144 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6145 | { |
| 6146 | int ret; |
| 6147 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6148 | ret = btrfs_check_data_free_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6149 | if (ret < 0) |
| 6150 | return ret; |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6151 | ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6152 | if (ret < 0) |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6153 | btrfs_free_reserved_data_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6154 | return ret; |
| 6155 | } |
| 6156 | |
| 6157 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6158 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6159 | * @inode: inode we're releasing space for |
| 6160 | * @start: start position of the space already reserved |
| 6161 | * @len: the len of the space already reserved |
| 6162 | * |
| 6163 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 6164 | * called in the case that we don't need the metadata AND data reservations |
| 6165 | * anymore. So if there is an error or we insert an inline extent. |
| 6166 | * |
| 6167 | * This function will release the metadata space that was not used and will |
| 6168 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 6169 | * list if there are no delalloc bytes left. |
| 6170 | * Also it will handle the qgroup reserved space. |
| 6171 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6172 | void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6173 | { |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6174 | btrfs_delalloc_release_metadata(BTRFS_I(inode), len); |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6175 | btrfs_free_reserved_data_space(inode, start, len); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6176 | } |
| 6177 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6178 | static int update_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 6179 | struct btrfs_fs_info *info, u64 bytenr, |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6180 | u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6181 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6182 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6183 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6184 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6185 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6186 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 6187 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6188 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6189 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6190 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6191 | if (alloc) |
| 6192 | old_val += num_bytes; |
| 6193 | else |
| 6194 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6195 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6196 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6197 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6198 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6199 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6200 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6201 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6202 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 6203 | BTRFS_BLOCK_GROUP_RAID1 | |
| 6204 | BTRFS_BLOCK_GROUP_RAID10)) |
| 6205 | factor = 2; |
| 6206 | else |
| 6207 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 6208 | /* |
| 6209 | * If this block group has free space cache written out, we |
| 6210 | * need to make sure to load it if we are removing space. This |
| 6211 | * is because we need the unpinning stage to actually add the |
| 6212 | * space back to the block group, otherwise we will leak space. |
| 6213 | */ |
| 6214 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6215 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6216 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6217 | byte_in_group = bytenr - cache->key.objectid; |
| 6218 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6219 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6220 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6221 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6222 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 6223 | if (btrfs_test_opt(info, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6224 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 6225 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 6226 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6227 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6228 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6229 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6230 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6231 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6232 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6233 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6234 | cache->space_info->bytes_used += num_bytes; |
| 6235 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6236 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6237 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6238 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6239 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6240 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6241 | cache->pinned += num_bytes; |
| 6242 | cache->space_info->bytes_pinned += num_bytes; |
| 6243 | cache->space_info->bytes_used -= num_bytes; |
| 6244 | cache->space_info->disk_used -= num_bytes * factor; |
| 6245 | spin_unlock(&cache->lock); |
| 6246 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 6247 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6248 | trace_btrfs_space_reservation(info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6249 | cache->space_info->flags, |
| 6250 | num_bytes, 1); |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6251 | set_extent_dirty(info->pinned_extents, |
| 6252 | bytenr, bytenr + num_bytes - 1, |
| 6253 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6254 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 6255 | |
| 6256 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 6257 | if (list_empty(&cache->dirty_list)) { |
| 6258 | list_add_tail(&cache->dirty_list, |
| 6259 | &trans->transaction->dirty_bgs); |
| 6260 | trans->transaction->num_dirty_bgs++; |
| 6261 | btrfs_get_block_group(cache); |
| 6262 | } |
| 6263 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 6264 | |
Filipe Manana | 036a934 | 2015-11-23 15:25:16 +0000 | [diff] [blame] | 6265 | /* |
| 6266 | * No longer have used bytes in this block group, queue it for |
| 6267 | * deletion. We do this after adding the block group to the |
| 6268 | * dirty list to avoid races between cleaner kthread and space |
| 6269 | * cache writeout. |
| 6270 | */ |
| 6271 | if (!alloc && old_val == 0) { |
| 6272 | spin_lock(&info->unused_bgs_lock); |
| 6273 | if (list_empty(&cache->bg_list)) { |
| 6274 | btrfs_get_block_group(cache); |
| 6275 | list_add_tail(&cache->bg_list, |
| 6276 | &info->unused_bgs); |
| 6277 | } |
| 6278 | spin_unlock(&info->unused_bgs_lock); |
| 6279 | } |
| 6280 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6281 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6282 | total -= num_bytes; |
| 6283 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6284 | } |
| 6285 | return 0; |
| 6286 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6287 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6288 | 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] | 6289 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6290 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6291 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6292 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6293 | spin_lock(&fs_info->block_group_cache_lock); |
| 6294 | bytenr = fs_info->first_logical_byte; |
| 6295 | spin_unlock(&fs_info->block_group_cache_lock); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 6296 | |
| 6297 | if (bytenr < (u64)-1) |
| 6298 | return bytenr; |
| 6299 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6300 | cache = btrfs_lookup_first_block_group(fs_info, search_start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6301 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6302 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6303 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6304 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6305 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6306 | |
| 6307 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6308 | } |
| 6309 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6310 | static int pin_down_extent(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6311 | struct btrfs_block_group_cache *cache, |
| 6312 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6313 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6314 | spin_lock(&cache->space_info->lock); |
| 6315 | spin_lock(&cache->lock); |
| 6316 | cache->pinned += num_bytes; |
| 6317 | cache->space_info->bytes_pinned += num_bytes; |
| 6318 | if (reserved) { |
| 6319 | cache->reserved -= num_bytes; |
| 6320 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6321 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6322 | spin_unlock(&cache->lock); |
| 6323 | spin_unlock(&cache->space_info->lock); |
| 6324 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6325 | trace_btrfs_space_reservation(fs_info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6326 | cache->space_info->flags, num_bytes, 1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6327 | set_extent_dirty(fs_info->pinned_extents, bytenr, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6328 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6329 | return 0; |
| 6330 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6331 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6332 | /* |
| 6333 | * this function must be called within transaction |
| 6334 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6335 | int btrfs_pin_extent(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6336 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6337 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6338 | struct btrfs_block_group_cache *cache; |
| 6339 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6340 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6341 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6342 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6343 | pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6344 | |
| 6345 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6346 | return 0; |
| 6347 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6348 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6349 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6350 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6351 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6352 | 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] | 6353 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6354 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6355 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6356 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6357 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6358 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6359 | if (!cache) |
| 6360 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6361 | |
| 6362 | /* |
| 6363 | * pull in the free space cache (if any) so that our pin |
| 6364 | * removes the free space from the cache. We have load_only set |
| 6365 | * to one because the slow code to read in the free extents does check |
| 6366 | * the pinned extents. |
| 6367 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6368 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6369 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6370 | pin_down_extent(fs_info, cache, bytenr, num_bytes, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6371 | |
| 6372 | /* 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] | 6373 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6374 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6375 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6376 | } |
| 6377 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6378 | static int __exclude_logged_extent(struct btrfs_fs_info *fs_info, |
| 6379 | u64 start, u64 num_bytes) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6380 | { |
| 6381 | int ret; |
| 6382 | struct btrfs_block_group_cache *block_group; |
| 6383 | struct btrfs_caching_control *caching_ctl; |
| 6384 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6385 | block_group = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6386 | if (!block_group) |
| 6387 | return -EINVAL; |
| 6388 | |
| 6389 | cache_block_group(block_group, 0); |
| 6390 | caching_ctl = get_caching_control(block_group); |
| 6391 | |
| 6392 | if (!caching_ctl) { |
| 6393 | /* Logic error */ |
| 6394 | BUG_ON(!block_group_cache_done(block_group)); |
| 6395 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 6396 | } else { |
| 6397 | mutex_lock(&caching_ctl->mutex); |
| 6398 | |
| 6399 | if (start >= caching_ctl->progress) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6400 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6401 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 6402 | ret = btrfs_remove_free_space(block_group, |
| 6403 | start, num_bytes); |
| 6404 | } else { |
| 6405 | num_bytes = caching_ctl->progress - start; |
| 6406 | ret = btrfs_remove_free_space(block_group, |
| 6407 | start, num_bytes); |
| 6408 | if (ret) |
| 6409 | goto out_lock; |
| 6410 | |
| 6411 | num_bytes = (start + num_bytes) - |
| 6412 | caching_ctl->progress; |
| 6413 | start = caching_ctl->progress; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6414 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6415 | } |
| 6416 | out_lock: |
| 6417 | mutex_unlock(&caching_ctl->mutex); |
| 6418 | put_caching_control(caching_ctl); |
| 6419 | } |
| 6420 | btrfs_put_block_group(block_group); |
| 6421 | return ret; |
| 6422 | } |
| 6423 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6424 | int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info, |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6425 | struct extent_buffer *eb) |
| 6426 | { |
| 6427 | struct btrfs_file_extent_item *item; |
| 6428 | struct btrfs_key key; |
| 6429 | int found_type; |
| 6430 | int i; |
| 6431 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6432 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6433 | return 0; |
| 6434 | |
| 6435 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 6436 | btrfs_item_key_to_cpu(eb, &key, i); |
| 6437 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 6438 | continue; |
| 6439 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 6440 | found_type = btrfs_file_extent_type(eb, item); |
| 6441 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 6442 | continue; |
| 6443 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 6444 | continue; |
| 6445 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 6446 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6447 | __exclude_logged_extent(fs_info, key.objectid, key.offset); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6448 | } |
| 6449 | |
| 6450 | return 0; |
| 6451 | } |
| 6452 | |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6453 | static void |
| 6454 | btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6455 | { |
| 6456 | atomic_inc(&bg->reservations); |
| 6457 | } |
| 6458 | |
| 6459 | void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info, |
| 6460 | const u64 start) |
| 6461 | { |
| 6462 | struct btrfs_block_group_cache *bg; |
| 6463 | |
| 6464 | bg = btrfs_lookup_block_group(fs_info, start); |
| 6465 | ASSERT(bg); |
| 6466 | if (atomic_dec_and_test(&bg->reservations)) |
| 6467 | wake_up_atomic_t(&bg->reservations); |
| 6468 | btrfs_put_block_group(bg); |
| 6469 | } |
| 6470 | |
| 6471 | static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a) |
| 6472 | { |
| 6473 | schedule(); |
| 6474 | return 0; |
| 6475 | } |
| 6476 | |
| 6477 | void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6478 | { |
| 6479 | struct btrfs_space_info *space_info = bg->space_info; |
| 6480 | |
| 6481 | ASSERT(bg->ro); |
| 6482 | |
| 6483 | if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA)) |
| 6484 | return; |
| 6485 | |
| 6486 | /* |
| 6487 | * Our block group is read only but before we set it to read only, |
| 6488 | * some task might have had allocated an extent from it already, but it |
| 6489 | * has not yet created a respective ordered extent (and added it to a |
| 6490 | * root's list of ordered extents). |
| 6491 | * Therefore wait for any task currently allocating extents, since the |
| 6492 | * block group's reservations counter is incremented while a read lock |
| 6493 | * on the groups' semaphore is held and decremented after releasing |
| 6494 | * the read access on that semaphore and creating the ordered extent. |
| 6495 | */ |
| 6496 | down_write(&space_info->groups_sem); |
| 6497 | up_write(&space_info->groups_sem); |
| 6498 | |
| 6499 | wait_on_atomic_t(&bg->reservations, |
| 6500 | btrfs_wait_bg_reservations_atomic_t, |
| 6501 | TASK_UNINTERRUPTIBLE); |
| 6502 | } |
| 6503 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6504 | /** |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6505 | * btrfs_add_reserved_bytes - update the block_group and space info counters |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6506 | * @cache: The cache we are manipulating |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6507 | * @ram_bytes: The number of bytes of file content, and will be same to |
| 6508 | * @num_bytes except for the compress path. |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6509 | * @num_bytes: The number of bytes in question |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6510 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6511 | * |
Xiaoguang Wang | 745699e | 2016-09-23 12:38:50 +0800 | [diff] [blame] | 6512 | * This is called by the allocator when it reserves space. If this is a |
| 6513 | * reservation and the block group has become read only we cannot make the |
| 6514 | * reservation and return -EAGAIN, otherwise this function always succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6515 | */ |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6516 | static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6517 | u64 ram_bytes, u64 num_bytes, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6518 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6519 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6520 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6521 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6522 | spin_lock(&space_info->lock); |
| 6523 | spin_lock(&cache->lock); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6524 | if (cache->ro) { |
| 6525 | ret = -EAGAIN; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6526 | } else { |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6527 | cache->reserved += num_bytes; |
| 6528 | space_info->bytes_reserved += num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6529 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6530 | trace_btrfs_space_reservation(cache->fs_info, |
| 6531 | "space_info", space_info->flags, |
| 6532 | ram_bytes, 0); |
| 6533 | space_info->bytes_may_use -= ram_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6534 | if (delalloc) |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6535 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6536 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6537 | spin_unlock(&cache->lock); |
| 6538 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6539 | return ret; |
| 6540 | } |
| 6541 | |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6542 | /** |
| 6543 | * btrfs_free_reserved_bytes - update the block_group and space info counters |
| 6544 | * @cache: The cache we are manipulating |
| 6545 | * @num_bytes: The number of bytes in question |
| 6546 | * @delalloc: The blocks are allocated for the delalloc write |
| 6547 | * |
| 6548 | * This is called by somebody who is freeing space that was never actually used |
| 6549 | * on disk. For example if you reserve some space for a new leaf in transaction |
| 6550 | * A and before transaction A commits you free that leaf, you call this with |
| 6551 | * reserve set to 0 in order to clear the reservation. |
| 6552 | */ |
| 6553 | |
| 6554 | static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 6555 | u64 num_bytes, int delalloc) |
| 6556 | { |
| 6557 | struct btrfs_space_info *space_info = cache->space_info; |
| 6558 | int ret = 0; |
| 6559 | |
| 6560 | spin_lock(&space_info->lock); |
| 6561 | spin_lock(&cache->lock); |
| 6562 | if (cache->ro) |
| 6563 | space_info->bytes_readonly += num_bytes; |
| 6564 | cache->reserved -= num_bytes; |
| 6565 | space_info->bytes_reserved -= num_bytes; |
| 6566 | |
| 6567 | if (delalloc) |
| 6568 | cache->delalloc_bytes -= num_bytes; |
| 6569 | spin_unlock(&cache->lock); |
| 6570 | spin_unlock(&space_info->lock); |
| 6571 | return ret; |
| 6572 | } |
David Sterba | 8b74c03 | 2017-02-10 19:20:56 +0100 | [diff] [blame] | 6573 | void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6574 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6575 | struct btrfs_caching_control *next; |
| 6576 | struct btrfs_caching_control *caching_ctl; |
| 6577 | struct btrfs_block_group_cache *cache; |
| 6578 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6579 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6580 | |
| 6581 | list_for_each_entry_safe(caching_ctl, next, |
| 6582 | &fs_info->caching_block_groups, list) { |
| 6583 | cache = caching_ctl->block_group; |
| 6584 | if (block_group_cache_done(cache)) { |
| 6585 | cache->last_byte_to_unpin = (u64)-1; |
| 6586 | list_del_init(&caching_ctl->list); |
| 6587 | put_caching_control(caching_ctl); |
| 6588 | } else { |
| 6589 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6590 | } |
| 6591 | } |
| 6592 | |
| 6593 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6594 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6595 | else |
| 6596 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6597 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6598 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6599 | |
| 6600 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6601 | } |
| 6602 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6603 | /* |
| 6604 | * Returns the free cluster for the given space info and sets empty_cluster to |
| 6605 | * what it should be based on the mount options. |
| 6606 | */ |
| 6607 | static struct btrfs_free_cluster * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6608 | fetch_cluster_info(struct btrfs_fs_info *fs_info, |
| 6609 | struct btrfs_space_info *space_info, u64 *empty_cluster) |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6610 | { |
| 6611 | struct btrfs_free_cluster *ret = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6612 | bool ssd = btrfs_test_opt(fs_info, SSD); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6613 | |
| 6614 | *empty_cluster = 0; |
| 6615 | if (btrfs_mixed_space_info(space_info)) |
| 6616 | return ret; |
| 6617 | |
| 6618 | if (ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6619 | *empty_cluster = SZ_2M; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6620 | if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6621 | ret = &fs_info->meta_alloc_cluster; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6622 | if (!ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6623 | *empty_cluster = SZ_64K; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6624 | } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6625 | ret = &fs_info->data_alloc_cluster; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6626 | } |
| 6627 | |
| 6628 | return ret; |
| 6629 | } |
| 6630 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6631 | static int unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 6632 | u64 start, u64 end, |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6633 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6634 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6635 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6636 | struct btrfs_space_info *space_info; |
| 6637 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6638 | struct btrfs_free_cluster *cluster = NULL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6639 | u64 len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6640 | u64 total_unpinned = 0; |
| 6641 | u64 empty_cluster = 0; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6642 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6643 | |
| 6644 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6645 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6646 | if (!cache || |
| 6647 | start >= cache->key.objectid + cache->key.offset) { |
| 6648 | if (cache) |
| 6649 | btrfs_put_block_group(cache); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6650 | total_unpinned = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6651 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6652 | BUG_ON(!cache); /* Logic error */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6653 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6654 | cluster = fetch_cluster_info(fs_info, |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6655 | cache->space_info, |
| 6656 | &empty_cluster); |
| 6657 | empty_cluster <<= 1; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6658 | } |
| 6659 | |
| 6660 | len = cache->key.objectid + cache->key.offset - start; |
| 6661 | len = min(len, end + 1 - start); |
| 6662 | |
| 6663 | if (start < cache->last_byte_to_unpin) { |
| 6664 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6665 | if (return_free_space) |
| 6666 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6667 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6668 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6669 | start += len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6670 | total_unpinned += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6671 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6672 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6673 | /* |
| 6674 | * If this space cluster has been marked as fragmented and we've |
| 6675 | * unpinned enough in this block group to potentially allow a |
| 6676 | * cluster to be created inside of it go ahead and clear the |
| 6677 | * fragmented check. |
| 6678 | */ |
| 6679 | if (cluster && cluster->fragmented && |
| 6680 | total_unpinned > empty_cluster) { |
| 6681 | spin_lock(&cluster->lock); |
| 6682 | cluster->fragmented = 0; |
| 6683 | spin_unlock(&cluster->lock); |
| 6684 | } |
| 6685 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6686 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6687 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6688 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6689 | space_info->bytes_pinned -= len; |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6690 | |
| 6691 | trace_btrfs_space_reservation(fs_info, "pinned", |
| 6692 | space_info->flags, len, 0); |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 6693 | space_info->max_extent_size = 0; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 6694 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6695 | if (cache->ro) { |
| 6696 | space_info->bytes_readonly += len; |
| 6697 | readonly = true; |
| 6698 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6699 | spin_unlock(&cache->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6700 | if (!readonly && return_free_space && |
| 6701 | global_rsv->space_info == space_info) { |
| 6702 | u64 to_add = len; |
| 6703 | WARN_ON(!return_free_space); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6704 | spin_lock(&global_rsv->lock); |
| 6705 | if (!global_rsv->full) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6706 | to_add = min(len, global_rsv->size - |
| 6707 | global_rsv->reserved); |
| 6708 | global_rsv->reserved += to_add; |
| 6709 | space_info->bytes_may_use += to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6710 | if (global_rsv->reserved >= global_rsv->size) |
| 6711 | global_rsv->full = 1; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6712 | trace_btrfs_space_reservation(fs_info, |
| 6713 | "space_info", |
| 6714 | space_info->flags, |
| 6715 | to_add, 1); |
| 6716 | len -= to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6717 | } |
| 6718 | spin_unlock(&global_rsv->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6719 | /* Add to any tickets we may have */ |
| 6720 | if (len) |
| 6721 | space_info_add_new_bytes(fs_info, space_info, |
| 6722 | len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6723 | } |
| 6724 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6725 | } |
| 6726 | |
| 6727 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6728 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6729 | return 0; |
| 6730 | } |
| 6731 | |
| 6732 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6733 | struct btrfs_fs_info *fs_info) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6734 | { |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6735 | struct btrfs_block_group_cache *block_group, *tmp; |
| 6736 | struct list_head *deleted_bgs; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6737 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6738 | u64 start; |
| 6739 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6740 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6741 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6742 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6743 | unpin = &fs_info->freed_extents[1]; |
| 6744 | else |
| 6745 | unpin = &fs_info->freed_extents[0]; |
| 6746 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6747 | while (!trans->aborted) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6748 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6749 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 6750 | EXTENT_DIRTY, NULL); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6751 | if (ret) { |
| 6752 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6753 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6754 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6755 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6756 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6757 | ret = btrfs_discard_extent(fs_info, start, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6758 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6759 | |
David Sterba | af6f8f6 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 6760 | clear_extent_dirty(unpin, start, end); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6761 | unpin_extent_range(fs_info, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6762 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6763 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6764 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6765 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6766 | /* |
| 6767 | * Transaction is finished. We don't need the lock anymore. We |
| 6768 | * do need to clean up the block groups in case of a transaction |
| 6769 | * abort. |
| 6770 | */ |
| 6771 | deleted_bgs = &trans->transaction->deleted_bgs; |
| 6772 | list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) { |
| 6773 | u64 trimmed = 0; |
| 6774 | |
| 6775 | ret = -EROFS; |
| 6776 | if (!trans->aborted) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6777 | ret = btrfs_discard_extent(fs_info, |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6778 | block_group->key.objectid, |
| 6779 | block_group->key.offset, |
| 6780 | &trimmed); |
| 6781 | |
| 6782 | list_del_init(&block_group->bg_list); |
| 6783 | btrfs_put_block_group_trimming(block_group); |
| 6784 | btrfs_put_block_group(block_group); |
| 6785 | |
| 6786 | if (ret) { |
| 6787 | const char *errstr = btrfs_decode_error(ret); |
| 6788 | btrfs_warn(fs_info, |
| 6789 | "Discard failed while removing blockgroup: errno=%d %s\n", |
| 6790 | ret, errstr); |
| 6791 | } |
| 6792 | } |
| 6793 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6794 | return 0; |
| 6795 | } |
| 6796 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6797 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 6798 | u64 owner, u64 root_objectid) |
| 6799 | { |
| 6800 | struct btrfs_space_info *space_info; |
| 6801 | u64 flags; |
| 6802 | |
| 6803 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 6804 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 6805 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 6806 | else |
| 6807 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 6808 | } else { |
| 6809 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 6810 | } |
| 6811 | |
| 6812 | space_info = __find_space_info(fs_info, flags); |
| 6813 | BUG_ON(!space_info); /* Logic bug */ |
| 6814 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 6815 | } |
| 6816 | |
| 6817 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6818 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6819 | struct btrfs_fs_info *info, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6820 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6821 | u64 root_objectid, u64 owner_objectid, |
| 6822 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6823 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6824 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6825 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6826 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6827 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6828 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6829 | struct btrfs_extent_item *ei; |
| 6830 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6831 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6832 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6833 | int extent_slot = 0; |
| 6834 | int found_extent = 0; |
| 6835 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6836 | u32 item_size; |
| 6837 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6838 | u64 bytenr = node->bytenr; |
| 6839 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6840 | int last_ref = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6841 | bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6842 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6843 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6844 | if (!path) |
| 6845 | return -ENOMEM; |
| 6846 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 6847 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6848 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6849 | |
| 6850 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6851 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6852 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6853 | if (is_data) |
| 6854 | skinny_metadata = 0; |
| 6855 | |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6856 | ret = lookup_extent_backref(trans, info, path, &iref, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6857 | bytenr, num_bytes, parent, |
| 6858 | root_objectid, owner_objectid, |
| 6859 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6860 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6861 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6862 | while (extent_slot >= 0) { |
| 6863 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6864 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6865 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6866 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6867 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6868 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6869 | found_extent = 1; |
| 6870 | break; |
| 6871 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6872 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6873 | key.offset == owner_objectid) { |
| 6874 | found_extent = 1; |
| 6875 | break; |
| 6876 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6877 | if (path->slots[0] - extent_slot > 5) |
| 6878 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6879 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6880 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6881 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6882 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 6883 | if (found_extent && item_size < sizeof(*ei)) |
| 6884 | found_extent = 0; |
| 6885 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6886 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6887 | BUG_ON(iref); |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6888 | ret = remove_extent_backref(trans, info, path, NULL, |
| 6889 | refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6890 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6891 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6892 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6893 | goto out; |
| 6894 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6895 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6896 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6897 | |
| 6898 | key.objectid = bytenr; |
| 6899 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6900 | key.offset = num_bytes; |
| 6901 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6902 | if (!is_data && skinny_metadata) { |
| 6903 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6904 | key.offset = owner_objectid; |
| 6905 | } |
| 6906 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6907 | ret = btrfs_search_slot(trans, extent_root, |
| 6908 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6909 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6910 | /* |
| 6911 | * Couldn't find our skinny metadata item, |
| 6912 | * see if we have ye olde extent item. |
| 6913 | */ |
| 6914 | path->slots[0]--; |
| 6915 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6916 | path->slots[0]); |
| 6917 | if (key.objectid == bytenr && |
| 6918 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6919 | key.offset == num_bytes) |
| 6920 | ret = 0; |
| 6921 | } |
| 6922 | |
| 6923 | if (ret > 0 && skinny_metadata) { |
| 6924 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6925 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6926 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6927 | key.offset = num_bytes; |
| 6928 | btrfs_release_path(path); |
| 6929 | ret = btrfs_search_slot(trans, extent_root, |
| 6930 | &key, path, -1, 1); |
| 6931 | } |
| 6932 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6933 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6934 | btrfs_err(info, |
| 6935 | "umm, got %d back from search, was looking for %llu", |
| 6936 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6937 | if (ret > 0) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6938 | btrfs_print_leaf(info, path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6939 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6940 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6941 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6942 | goto out; |
| 6943 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6944 | extent_slot = path->slots[0]; |
| 6945 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6946 | } else if (WARN_ON(ret == -ENOENT)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6947 | btrfs_print_leaf(info, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6948 | btrfs_err(info, |
| 6949 | "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] | 6950 | bytenr, parent, root_objectid, owner_objectid, |
| 6951 | owner_offset); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6952 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 6953 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6954 | } else { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6955 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6956 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6957 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6958 | |
| 6959 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6960 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6961 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6962 | if (item_size < sizeof(*ei)) { |
| 6963 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6964 | ret = convert_extent_item_v0(trans, info, path, owner_objectid, |
| 6965 | 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6966 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6967 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6968 | goto out; |
| 6969 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6970 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6971 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6972 | path->leave_spinning = 1; |
| 6973 | |
| 6974 | key.objectid = bytenr; |
| 6975 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6976 | key.offset = num_bytes; |
| 6977 | |
| 6978 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 6979 | -1, 1); |
| 6980 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6981 | btrfs_err(info, |
| 6982 | "umm, got %d back from search, was looking for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6983 | ret, bytenr); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6984 | btrfs_print_leaf(info, path->nodes[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6985 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6986 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6987 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6988 | goto out; |
| 6989 | } |
| 6990 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6991 | extent_slot = path->slots[0]; |
| 6992 | leaf = path->nodes[0]; |
| 6993 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6994 | } |
| 6995 | #endif |
| 6996 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6997 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 6998 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6999 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 7000 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7001 | struct btrfs_tree_block_info *bi; |
| 7002 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 7003 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 7004 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7005 | } |
| 7006 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7007 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7008 | if (refs < refs_to_drop) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7009 | btrfs_err(info, |
| 7010 | "trying to drop %d refs but we only have %Lu for bytenr %Lu", |
| 7011 | refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7012 | ret = -EINVAL; |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7013 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7014 | goto out; |
| 7015 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7016 | refs -= refs_to_drop; |
| 7017 | |
| 7018 | if (refs > 0) { |
| 7019 | if (extent_op) |
| 7020 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 7021 | /* |
| 7022 | * In the case of inline back ref, reference count will |
| 7023 | * be updated by remove_extent_backref |
| 7024 | */ |
| 7025 | if (iref) { |
| 7026 | BUG_ON(!found_extent); |
| 7027 | } else { |
| 7028 | btrfs_set_extent_refs(leaf, ei, refs); |
| 7029 | btrfs_mark_buffer_dirty(leaf); |
| 7030 | } |
| 7031 | if (found_extent) { |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7032 | ret = remove_extent_backref(trans, info, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7033 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7034 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7035 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7036 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7037 | goto out; |
| 7038 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7039 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7040 | add_pinned_bytes(info, -num_bytes, owner_objectid, |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7041 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7042 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7043 | if (found_extent) { |
| 7044 | BUG_ON(is_data && refs_to_drop != |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 7045 | extent_data_ref_count(path, iref)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7046 | if (iref) { |
| 7047 | BUG_ON(path->slots[0] != extent_slot); |
| 7048 | } else { |
| 7049 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 7050 | path->slots[0] = extent_slot; |
| 7051 | num_to_del = 2; |
| 7052 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 7053 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7054 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7055 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7056 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 7057 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7058 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7059 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7060 | goto out; |
| 7061 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7062 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 7063 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7064 | if (is_data) { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7065 | ret = btrfs_del_csums(trans, info, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7066 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7067 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7068 | goto out; |
| 7069 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 7070 | } |
| 7071 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7072 | ret = add_to_free_space_tree(trans, info, bytenr, num_bytes); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7073 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7074 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7075 | goto out; |
| 7076 | } |
| 7077 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7078 | ret = update_block_group(trans, info, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7079 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7080 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7081 | goto out; |
| 7082 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7083 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7084 | btrfs_release_path(path); |
| 7085 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7086 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7087 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7088 | return ret; |
| 7089 | } |
| 7090 | |
| 7091 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7092 | * 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] | 7093 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 7094 | * a given extent, and if there are no other delayed refs to be processed, it |
| 7095 | * removes it from the tree. |
| 7096 | */ |
| 7097 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7098 | u64 bytenr) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7099 | { |
| 7100 | struct btrfs_delayed_ref_head *head; |
| 7101 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7102 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7103 | |
| 7104 | delayed_refs = &trans->transaction->delayed_refs; |
| 7105 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 7106 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7107 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7108 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7109 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7110 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 7111 | if (!list_empty(&head->ref_list)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7112 | goto out; |
| 7113 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7114 | if (head->extent_op) { |
| 7115 | if (!head->must_insert_reserved) |
| 7116 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7117 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7118 | head->extent_op = NULL; |
| 7119 | } |
| 7120 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7121 | /* |
| 7122 | * waiting for the lock here would deadlock. If someone else has it |
| 7123 | * locked they are already in the process of dropping it anyway |
| 7124 | */ |
| 7125 | if (!mutex_trylock(&head->mutex)) |
| 7126 | goto out; |
| 7127 | |
| 7128 | /* |
| 7129 | * at this point we have a head with no other entries. Go |
| 7130 | * ahead and process it. |
| 7131 | */ |
| 7132 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 7133 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7134 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7135 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7136 | |
| 7137 | /* |
| 7138 | * we don't take a ref on the node because we're removing it from the |
| 7139 | * tree, so we just steal the ref the tree was holding. |
| 7140 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7141 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7142 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7143 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7144 | head->processing = 0; |
| 7145 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7146 | spin_unlock(&delayed_refs->lock); |
| 7147 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7148 | BUG_ON(head->extent_op); |
| 7149 | if (head->must_insert_reserved) |
| 7150 | ret = 1; |
| 7151 | |
| 7152 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7153 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7154 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7155 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7156 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7157 | |
| 7158 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7159 | spin_unlock(&delayed_refs->lock); |
| 7160 | return 0; |
| 7161 | } |
| 7162 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7163 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 7164 | struct btrfs_root *root, |
| 7165 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7166 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7167 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7168 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7169 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7170 | int ret; |
| 7171 | |
| 7172 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7173 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, |
| 7174 | buf->start, buf->len, |
| 7175 | parent, |
| 7176 | root->root_key.objectid, |
| 7177 | btrfs_header_level(buf), |
| 7178 | BTRFS_DROP_DELAYED_REF, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7179 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7180 | } |
| 7181 | |
| 7182 | if (!last_ref) |
| 7183 | return; |
| 7184 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7185 | if (btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7186 | struct btrfs_block_group_cache *cache; |
| 7187 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7188 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7189 | ret = check_ref_cleanup(trans, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7190 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7191 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7192 | } |
| 7193 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7194 | cache = btrfs_lookup_block_group(fs_info, buf->start); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7195 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7196 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7197 | pin_down_extent(fs_info, cache, buf->start, |
| 7198 | buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7199 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7200 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7201 | } |
| 7202 | |
| 7203 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 7204 | |
| 7205 | btrfs_add_free_space(cache, buf->start, buf->len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 7206 | btrfs_free_reserved_bytes(cache, buf->len, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7207 | btrfs_put_block_group(cache); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7208 | trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7209 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7210 | } |
| 7211 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7212 | if (pin) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7213 | add_pinned_bytes(fs_info, buf->len, btrfs_header_level(buf), |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7214 | root->root_key.objectid); |
| 7215 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 7216 | /* |
| 7217 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 7218 | * anymore. |
| 7219 | */ |
| 7220 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7221 | } |
| 7222 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7223 | /* Can return -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7224 | int btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 7225 | struct btrfs_fs_info *fs_info, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7226 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7227 | u64 owner, u64 offset) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7228 | { |
| 7229 | int ret; |
| 7230 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 7231 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7232 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7233 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7234 | add_pinned_bytes(fs_info, num_bytes, owner, root_objectid); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7235 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7236 | /* |
| 7237 | * tree log blocks never actually go into the extent allocation |
| 7238 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7239 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7240 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 7241 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7242 | /* unlocks the pinned mutex */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7243 | btrfs_pin_extent(fs_info, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7244 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7245 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7246 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 7247 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7248 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7249 | BTRFS_DROP_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7250 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7251 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 7252 | num_bytes, |
| 7253 | parent, root_objectid, owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 7254 | offset, 0, |
Jeff Mahoney | fef394f | 2016-12-13 14:39:34 -0500 | [diff] [blame] | 7255 | BTRFS_DROP_DELAYED_REF); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7256 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7257 | return ret; |
| 7258 | } |
| 7259 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7260 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7261 | * when we wait for progress in the block group caching, its because |
| 7262 | * our allocation attempt failed at least once. So, we must sleep |
| 7263 | * and let some progress happen before we try again. |
| 7264 | * |
| 7265 | * This function will sleep at least once waiting for new free space to |
| 7266 | * show up, and then it will check the block group free space numbers |
| 7267 | * for our min num_bytes. Another option is to have it go ahead |
| 7268 | * and look in the rbtree for a free extent of a given size, but this |
| 7269 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7270 | * |
| 7271 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 7272 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7273 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7274 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7275 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 7276 | u64 num_bytes) |
| 7277 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7278 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7279 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7280 | caching_ctl = get_caching_control(cache); |
| 7281 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7282 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7283 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7284 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 7285 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7286 | |
| 7287 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7288 | } |
| 7289 | |
| 7290 | static noinline int |
| 7291 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 7292 | { |
| 7293 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7294 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7295 | |
| 7296 | caching_ctl = get_caching_control(cache); |
| 7297 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7298 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7299 | |
| 7300 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7301 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 7302 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7303 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7304 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7305 | } |
| 7306 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7307 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7308 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7309 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7310 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7311 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7312 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7313 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7314 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7315 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7316 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7317 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7318 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7319 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7320 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7321 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7322 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7323 | } |
| 7324 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7325 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7326 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7327 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7328 | } |
| 7329 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7330 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 7331 | [BTRFS_RAID_RAID10] = "raid10", |
| 7332 | [BTRFS_RAID_RAID1] = "raid1", |
| 7333 | [BTRFS_RAID_DUP] = "dup", |
| 7334 | [BTRFS_RAID_RAID0] = "raid0", |
| 7335 | [BTRFS_RAID_SINGLE] = "single", |
| 7336 | [BTRFS_RAID_RAID5] = "raid5", |
| 7337 | [BTRFS_RAID_RAID6] = "raid6", |
| 7338 | }; |
| 7339 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 7340 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7341 | { |
| 7342 | if (type >= BTRFS_NR_RAID_TYPES) |
| 7343 | return NULL; |
| 7344 | |
| 7345 | return btrfs_raid_type_names[type]; |
| 7346 | } |
| 7347 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7348 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7349 | LOOP_CACHING_NOWAIT = 0, |
| 7350 | LOOP_CACHING_WAIT = 1, |
| 7351 | LOOP_ALLOC_CHUNK = 2, |
| 7352 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7353 | }; |
| 7354 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7355 | static inline void |
| 7356 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 7357 | int delalloc) |
| 7358 | { |
| 7359 | if (delalloc) |
| 7360 | down_read(&cache->data_rwsem); |
| 7361 | } |
| 7362 | |
| 7363 | static inline void |
| 7364 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 7365 | int delalloc) |
| 7366 | { |
| 7367 | btrfs_get_block_group(cache); |
| 7368 | if (delalloc) |
| 7369 | down_read(&cache->data_rwsem); |
| 7370 | } |
| 7371 | |
| 7372 | static struct btrfs_block_group_cache * |
| 7373 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 7374 | struct btrfs_free_cluster *cluster, |
| 7375 | int delalloc) |
| 7376 | { |
Sudip Mukherjee | 89771cc | 2016-02-16 13:32:47 +0530 | [diff] [blame] | 7377 | struct btrfs_block_group_cache *used_bg = NULL; |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7378 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7379 | spin_lock(&cluster->refill_lock); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7380 | while (1) { |
| 7381 | used_bg = cluster->block_group; |
| 7382 | if (!used_bg) |
| 7383 | return NULL; |
| 7384 | |
| 7385 | if (used_bg == block_group) |
| 7386 | return used_bg; |
| 7387 | |
| 7388 | btrfs_get_block_group(used_bg); |
| 7389 | |
| 7390 | if (!delalloc) |
| 7391 | return used_bg; |
| 7392 | |
| 7393 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 7394 | return used_bg; |
| 7395 | |
| 7396 | spin_unlock(&cluster->refill_lock); |
| 7397 | |
Liu Bo | e321f8a | 2016-11-30 16:11:04 -0800 | [diff] [blame] | 7398 | /* We should only have one-level nested. */ |
| 7399 | down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7400 | |
| 7401 | spin_lock(&cluster->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7402 | if (used_bg == cluster->block_group) |
| 7403 | return used_bg; |
| 7404 | |
| 7405 | up_read(&used_bg->data_rwsem); |
| 7406 | btrfs_put_block_group(used_bg); |
| 7407 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7408 | } |
| 7409 | |
| 7410 | static inline void |
| 7411 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 7412 | int delalloc) |
| 7413 | { |
| 7414 | if (delalloc) |
| 7415 | up_read(&cache->data_rwsem); |
| 7416 | btrfs_put_block_group(cache); |
| 7417 | } |
| 7418 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7419 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7420 | * walks the btree of allocated extents and find a hole of a given size. |
| 7421 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7422 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 7423 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7424 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7425 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7426 | * |
| 7427 | * If there is no suitable free space, we will record the max size of |
| 7428 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7429 | */ |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7430 | static noinline int find_free_extent(struct btrfs_fs_info *fs_info, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7431 | u64 ram_bytes, u64 num_bytes, u64 empty_size, |
| 7432 | u64 hint_byte, struct btrfs_key *ins, |
| 7433 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7434 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7435 | int ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7436 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7437 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7438 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7439 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7440 | u64 max_extent_size = 0; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7441 | u64 empty_cluster = 0; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7442 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7443 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7444 | int index = __get_raid_index(flags); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7445 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7446 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7447 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7448 | bool have_caching_bg = false; |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7449 | bool orig_have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7450 | bool full_search = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7451 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7452 | WARN_ON(num_bytes < fs_info->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 7453 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7454 | ins->objectid = 0; |
| 7455 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 7456 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7457 | trace_find_free_extent(fs_info, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7458 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7459 | space_info = __find_space_info(fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7460 | if (!space_info) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7461 | btrfs_err(fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7462 | return -ENOSPC; |
| 7463 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7464 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7465 | /* |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7466 | * If our free space is heavily fragmented we may not be able to make |
| 7467 | * big contiguous allocations, so instead of doing the expensive search |
| 7468 | * for free space, simply return ENOSPC with our max_extent_size so we |
| 7469 | * can go ahead and search for a more manageable chunk. |
| 7470 | * |
| 7471 | * If our max_extent_size is large enough for our allocation simply |
| 7472 | * disable clustering since we will likely not be able to find enough |
| 7473 | * space to create a cluster and induce latency trying. |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7474 | */ |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7475 | if (unlikely(space_info->max_extent_size)) { |
| 7476 | spin_lock(&space_info->lock); |
| 7477 | if (space_info->max_extent_size && |
| 7478 | num_bytes > space_info->max_extent_size) { |
| 7479 | ins->offset = space_info->max_extent_size; |
| 7480 | spin_unlock(&space_info->lock); |
| 7481 | return -ENOSPC; |
| 7482 | } else if (space_info->max_extent_size) { |
| 7483 | use_cluster = false; |
| 7484 | } |
| 7485 | spin_unlock(&space_info->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7486 | } |
| 7487 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7488 | last_ptr = fetch_cluster_info(fs_info, space_info, &empty_cluster); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7489 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7490 | spin_lock(&last_ptr->lock); |
| 7491 | if (last_ptr->block_group) |
| 7492 | hint_byte = last_ptr->window_start; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7493 | if (last_ptr->fragmented) { |
| 7494 | /* |
| 7495 | * We still set window_start so we can keep track of the |
| 7496 | * last place we found an allocation to try and save |
| 7497 | * some time. |
| 7498 | */ |
| 7499 | hint_byte = last_ptr->window_start; |
| 7500 | use_cluster = false; |
| 7501 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7502 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7503 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7504 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7505 | search_start = max(search_start, first_logical_byte(fs_info, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7506 | search_start = max(search_start, hint_byte); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7507 | if (search_start == hint_byte) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7508 | block_group = btrfs_lookup_block_group(fs_info, search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7509 | /* |
| 7510 | * we don't want to use the block group if it doesn't match our |
| 7511 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7512 | * |
| 7513 | * However if we are re-searching with an ideal block group |
| 7514 | * 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] | 7515 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7516 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7517 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7518 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7519 | if (list_empty(&block_group->list) || |
| 7520 | block_group->ro) { |
| 7521 | /* |
| 7522 | * someone is removing this block group, |
| 7523 | * we can't jump into the have_block_group |
| 7524 | * target because our list pointers are not |
| 7525 | * valid |
| 7526 | */ |
| 7527 | btrfs_put_block_group(block_group); |
| 7528 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7529 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7530 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7531 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7532 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7533 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7534 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7535 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7536 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7537 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7538 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7539 | have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7540 | if (index == 0 || index == __get_raid_index(flags)) |
| 7541 | full_search = true; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7542 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7543 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 7544 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7545 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7546 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 7547 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7548 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7549 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7550 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7551 | /* |
| 7552 | * this can happen if we end up cycling through all the |
| 7553 | * raid types, but we want to make sure we only allocate |
| 7554 | * for the proper type. |
| 7555 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7556 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7557 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 7558 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7559 | BTRFS_BLOCK_GROUP_RAID5 | |
| 7560 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7561 | BTRFS_BLOCK_GROUP_RAID10; |
| 7562 | |
| 7563 | /* |
| 7564 | * if they asked for extra copies and this block group |
| 7565 | * doesn't provide them, bail. This does allow us to |
| 7566 | * fill raid0 from raid1. |
| 7567 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7568 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7569 | goto loop; |
| 7570 | } |
| 7571 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7572 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 7573 | cached = block_group_cache_done(block_group); |
| 7574 | if (unlikely(!cached)) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7575 | have_caching_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 7576 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 7577 | BUG_ON(ret < 0); |
| 7578 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7579 | } |
| 7580 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7581 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 7582 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7583 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7584 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7585 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7586 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7587 | * Ok we want to try and use the cluster allocator, so |
| 7588 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7589 | */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7590 | if (last_ptr && use_cluster) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7591 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7592 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7593 | /* |
| 7594 | * the refill lock keeps out other |
| 7595 | * people trying to start a new cluster |
| 7596 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7597 | used_block_group = btrfs_lock_cluster(block_group, |
| 7598 | last_ptr, |
| 7599 | delalloc); |
| 7600 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7601 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7602 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7603 | if (used_block_group != block_group && |
| 7604 | (used_block_group->ro || |
| 7605 | !block_group_bits(used_block_group, flags))) |
| 7606 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7607 | |
| 7608 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7609 | last_ptr, |
| 7610 | num_bytes, |
| 7611 | used_block_group->key.objectid, |
| 7612 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7613 | if (offset) { |
| 7614 | /* we have a block, we're done */ |
| 7615 | spin_unlock(&last_ptr->refill_lock); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7616 | trace_btrfs_reserve_extent_cluster(fs_info, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 7617 | used_block_group, |
| 7618 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7619 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7620 | btrfs_release_block_group(block_group, |
| 7621 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7622 | block_group = used_block_group; |
| 7623 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7624 | goto checks; |
| 7625 | } |
| 7626 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7627 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7628 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7629 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 7630 | * set up a new clusters, so lets just skip it |
| 7631 | * and let the allocator find whatever block |
| 7632 | * it can find. If we reach this point, we |
| 7633 | * will have tried the cluster allocator |
| 7634 | * plenty of times and not have found |
| 7635 | * anything, so we are likely way too |
| 7636 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7637 | * anything. |
| 7638 | * |
| 7639 | * However, if the cluster is taken from the |
| 7640 | * current block group, release the cluster |
| 7641 | * first, so that we stand a better chance of |
| 7642 | * succeeding in the unclustered |
| 7643 | * allocation. */ |
| 7644 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7645 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7646 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7647 | btrfs_release_block_group(used_block_group, |
| 7648 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7649 | goto unclustered_alloc; |
| 7650 | } |
| 7651 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7652 | /* |
| 7653 | * this cluster didn't work out, free it and |
| 7654 | * start over |
| 7655 | */ |
| 7656 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7657 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7658 | if (used_block_group != block_group) |
| 7659 | btrfs_release_block_group(used_block_group, |
| 7660 | delalloc); |
| 7661 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7662 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 7663 | spin_unlock(&last_ptr->refill_lock); |
| 7664 | goto unclustered_alloc; |
| 7665 | } |
| 7666 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7667 | aligned_cluster = max_t(unsigned long, |
| 7668 | empty_cluster + empty_size, |
| 7669 | block_group->full_stripe_len); |
| 7670 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7671 | /* allocate a cluster in this block group */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7672 | ret = btrfs_find_space_cluster(fs_info, block_group, |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7673 | last_ptr, search_start, |
| 7674 | num_bytes, |
| 7675 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7676 | if (ret == 0) { |
| 7677 | /* |
| 7678 | * now pull our allocation out of this |
| 7679 | * cluster |
| 7680 | */ |
| 7681 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7682 | last_ptr, |
| 7683 | num_bytes, |
| 7684 | search_start, |
| 7685 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7686 | if (offset) { |
| 7687 | /* we found one, proceed */ |
| 7688 | spin_unlock(&last_ptr->refill_lock); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7689 | trace_btrfs_reserve_extent_cluster(fs_info, |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7690 | block_group, search_start, |
| 7691 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7692 | goto checks; |
| 7693 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7694 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 7695 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7696 | spin_unlock(&last_ptr->refill_lock); |
| 7697 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7698 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7699 | wait_block_group_cache_progress(block_group, |
| 7700 | num_bytes + empty_cluster + empty_size); |
| 7701 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7702 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7703 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7704 | /* |
| 7705 | * at this point we either didn't find a cluster |
| 7706 | * or we weren't able to allocate a block from our |
| 7707 | * cluster. Free the cluster we've been trying |
| 7708 | * to use, and go to the next block group |
| 7709 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7710 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7711 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7712 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7713 | } |
| 7714 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7715 | unclustered_alloc: |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7716 | /* |
| 7717 | * We are doing an unclustered alloc, set the fragmented flag so |
| 7718 | * we don't bother trying to setup a cluster again until we get |
| 7719 | * more space. |
| 7720 | */ |
| 7721 | if (unlikely(last_ptr)) { |
| 7722 | spin_lock(&last_ptr->lock); |
| 7723 | last_ptr->fragmented = 1; |
| 7724 | spin_unlock(&last_ptr->lock); |
| 7725 | } |
Liu Bo | 0c9b36e | 2017-02-13 15:42:30 -0800 | [diff] [blame] | 7726 | if (cached) { |
| 7727 | struct btrfs_free_space_ctl *ctl = |
| 7728 | block_group->free_space_ctl; |
| 7729 | |
| 7730 | spin_lock(&ctl->tree_lock); |
| 7731 | if (ctl->free_space < |
| 7732 | num_bytes + empty_cluster + empty_size) { |
| 7733 | if (ctl->free_space > max_extent_size) |
| 7734 | max_extent_size = ctl->free_space; |
| 7735 | spin_unlock(&ctl->tree_lock); |
| 7736 | goto loop; |
| 7737 | } |
| 7738 | spin_unlock(&ctl->tree_lock); |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7739 | } |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7740 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7741 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7742 | num_bytes, empty_size, |
| 7743 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7744 | /* |
| 7745 | * If we didn't find a chunk, and we haven't failed on this |
| 7746 | * block group before, and this block group is in the middle of |
| 7747 | * caching and we are ok with waiting, then go ahead and wait |
| 7748 | * for progress to be made, and set failed_alloc to true. |
| 7749 | * |
| 7750 | * If failed_alloc is true then we've already waited on this |
| 7751 | * block group once and should move on to the next block group. |
| 7752 | */ |
| 7753 | if (!offset && !failed_alloc && !cached && |
| 7754 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7755 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7756 | num_bytes + empty_size); |
| 7757 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7758 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7759 | } else if (!offset) { |
| 7760 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7761 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7762 | checks: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7763 | search_start = ALIGN(offset, fs_info->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7764 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7765 | /* move on to the next group */ |
| 7766 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7767 | block_group->key.objectid + block_group->key.offset) { |
| 7768 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7769 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7770 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7771 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7772 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7773 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7774 | search_start - offset); |
| 7775 | BUG_ON(offset > search_start); |
| 7776 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7777 | ret = btrfs_add_reserved_bytes(block_group, ram_bytes, |
| 7778 | num_bytes, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7779 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7780 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7781 | goto loop; |
| 7782 | } |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7783 | btrfs_inc_block_group_reservations(block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7784 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7785 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7786 | ins->objectid = search_start; |
| 7787 | ins->offset = num_bytes; |
| 7788 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7789 | trace_btrfs_reserve_extent(fs_info, block_group, |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7790 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7791 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7792 | break; |
| 7793 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7794 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7795 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7796 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7797 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7798 | } |
| 7799 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 7800 | |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7801 | if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg |
| 7802 | && !orig_have_caching_bg) |
| 7803 | orig_have_caching_bg = true; |
| 7804 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7805 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 7806 | goto search; |
| 7807 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7808 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 7809 | goto search; |
| 7810 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7811 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7812 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7813 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7814 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7815 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7816 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7817 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7818 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7819 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7820 | index = 0; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7821 | if (loop == LOOP_CACHING_NOWAIT) { |
| 7822 | /* |
| 7823 | * We want to skip the LOOP_CACHING_WAIT step if we |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 7824 | * don't have any uncached bgs and we've already done a |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7825 | * full search through. |
| 7826 | */ |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7827 | if (orig_have_caching_bg || !full_search) |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7828 | loop = LOOP_CACHING_WAIT; |
| 7829 | else |
| 7830 | loop = LOOP_ALLOC_CHUNK; |
| 7831 | } else { |
| 7832 | loop++; |
| 7833 | } |
| 7834 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7835 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7836 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7837 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7838 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7839 | trans = current->journal_info; |
| 7840 | if (trans) |
| 7841 | exist = 1; |
| 7842 | else |
| 7843 | trans = btrfs_join_transaction(root); |
| 7844 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7845 | if (IS_ERR(trans)) { |
| 7846 | ret = PTR_ERR(trans); |
| 7847 | goto out; |
| 7848 | } |
| 7849 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7850 | ret = do_chunk_alloc(trans, fs_info, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7851 | CHUNK_ALLOC_FORCE); |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7852 | |
| 7853 | /* |
| 7854 | * If we can't allocate a new chunk we've already looped |
| 7855 | * through at least once, move on to the NO_EMPTY_SIZE |
| 7856 | * case. |
| 7857 | */ |
| 7858 | if (ret == -ENOSPC) |
| 7859 | loop = LOOP_NO_EMPTY_SIZE; |
| 7860 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7861 | /* |
| 7862 | * Do not bail out on ENOSPC since we |
| 7863 | * can do more things. |
| 7864 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7865 | if (ret < 0 && ret != -ENOSPC) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7866 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7867 | else |
| 7868 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7869 | if (!exist) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 7870 | btrfs_end_transaction(trans); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7871 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7872 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7873 | } |
| 7874 | |
| 7875 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7876 | /* |
| 7877 | * Don't loop again if we already have no empty_size and |
| 7878 | * no empty_cluster. |
| 7879 | */ |
| 7880 | if (empty_size == 0 && |
| 7881 | empty_cluster == 0) { |
| 7882 | ret = -ENOSPC; |
| 7883 | goto out; |
| 7884 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7885 | empty_size = 0; |
| 7886 | empty_cluster = 0; |
| 7887 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7888 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7889 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7890 | } else if (!ins->objectid) { |
| 7891 | ret = -ENOSPC; |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7892 | } else if (ins->objectid) { |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7893 | if (!use_cluster && last_ptr) { |
| 7894 | spin_lock(&last_ptr->lock); |
| 7895 | last_ptr->window_start = ins->objectid; |
| 7896 | spin_unlock(&last_ptr->lock); |
| 7897 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7898 | ret = 0; |
| 7899 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7900 | out: |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7901 | if (ret == -ENOSPC) { |
| 7902 | spin_lock(&space_info->lock); |
| 7903 | space_info->max_extent_size = max_extent_size; |
| 7904 | spin_unlock(&space_info->lock); |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7905 | ins->offset = max_extent_size; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7906 | } |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 7907 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7908 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7909 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7910 | static void dump_space_info(struct btrfs_fs_info *fs_info, |
| 7911 | struct btrfs_space_info *info, u64 bytes, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7912 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7913 | { |
| 7914 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7915 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7916 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7917 | spin_lock(&info->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7918 | btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull", |
| 7919 | info->flags, |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 7920 | info->total_bytes - btrfs_space_info_used(info, true), |
| 7921 | info->full ? "" : "not "); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7922 | btrfs_info(fs_info, |
| 7923 | "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu", |
| 7924 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 7925 | info->bytes_reserved, info->bytes_may_use, |
| 7926 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7927 | spin_unlock(&info->lock); |
| 7928 | |
| 7929 | if (!dump_block_groups) |
| 7930 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7931 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7932 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7933 | again: |
| 7934 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7935 | spin_lock(&cache->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7936 | btrfs_info(fs_info, |
| 7937 | "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s", |
| 7938 | cache->key.objectid, cache->key.offset, |
| 7939 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 7940 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7941 | btrfs_dump_free_space(cache, bytes); |
| 7942 | spin_unlock(&cache->lock); |
| 7943 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7944 | if (++index < BTRFS_NR_RAID_TYPES) |
| 7945 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7946 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7947 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 7948 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7949 | int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7950 | u64 num_bytes, u64 min_alloc_size, |
| 7951 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7952 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7953 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7954 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 36af4e0 | 2015-09-25 16:13:11 -0400 | [diff] [blame] | 7955 | bool final_tried = num_bytes == min_alloc_size; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7956 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7957 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7958 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7959 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 7960 | again: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7961 | WARN_ON(num_bytes < fs_info->sectorsize); |
Jeff Mahoney | 87bde3c | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7962 | ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7963 | hint_byte, ins, flags, delalloc); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7964 | if (!ret && !is_data) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7965 | btrfs_dec_block_group_reservations(fs_info, ins->objectid); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7966 | } else if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7967 | if (!final_tried && ins->offset) { |
| 7968 | num_bytes = min(num_bytes >> 1, ins->offset); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 7969 | num_bytes = round_down(num_bytes, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7970 | fs_info->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7971 | num_bytes = max(num_bytes, min_alloc_size); |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7972 | ram_bytes = num_bytes; |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7973 | if (num_bytes == min_alloc_size) |
| 7974 | final_tried = true; |
| 7975 | goto again; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7976 | } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7977 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7978 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7979 | sinfo = __find_space_info(fs_info, flags); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7980 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7981 | "allocation failed flags %llu, wanted %llu", |
| 7982 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 7983 | if (sinfo) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7984 | dump_space_info(fs_info, sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7985 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7986 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7987 | |
| 7988 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7989 | } |
| 7990 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7991 | static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7992 | u64 start, u64 len, |
| 7993 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 7994 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7995 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 7996 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7997 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7998 | cache = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7999 | if (!cache) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8000 | btrfs_err(fs_info, "Unable to find block group for %llu", |
| 8001 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8002 | return -ENOSPC; |
| 8003 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8004 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8005 | if (pin) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8006 | pin_down_extent(fs_info, cache, start, len, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8007 | else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8008 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8009 | ret = btrfs_discard_extent(fs_info, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8010 | btrfs_add_free_space(cache, start, len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 8011 | btrfs_free_reserved_bytes(cache, len, delalloc); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8012 | trace_btrfs_reserved_extent_free(fs_info, start, len); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8013 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 8014 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8015 | btrfs_put_block_group(cache); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8016 | return ret; |
| 8017 | } |
| 8018 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8019 | int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8020 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8021 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8022 | return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8023 | } |
| 8024 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8025 | 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] | 8026 | u64 start, u64 len) |
| 8027 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8028 | return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8029 | } |
| 8030 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8031 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8032 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8033 | u64 parent, u64 root_objectid, |
| 8034 | u64 flags, u64 owner, u64 offset, |
| 8035 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8036 | { |
| 8037 | int ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8038 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8039 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8040 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8041 | struct extent_buffer *leaf; |
| 8042 | int type; |
| 8043 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 8044 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8045 | if (parent > 0) |
| 8046 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 8047 | else |
| 8048 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 8049 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8050 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8051 | |
| 8052 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8053 | if (!path) |
| 8054 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8055 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 8056 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8057 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8058 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8059 | if (ret) { |
| 8060 | btrfs_free_path(path); |
| 8061 | return ret; |
| 8062 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8063 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8064 | leaf = path->nodes[0]; |
| 8065 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8066 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8067 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 8068 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8069 | btrfs_set_extent_flags(leaf, extent_item, |
| 8070 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8071 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8072 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 8073 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 8074 | if (parent > 0) { |
| 8075 | struct btrfs_shared_data_ref *ref; |
| 8076 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 8077 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8078 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 8079 | } else { |
| 8080 | struct btrfs_extent_data_ref *ref; |
| 8081 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 8082 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 8083 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 8084 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 8085 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 8086 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8087 | |
| 8088 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8089 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 8090 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8091 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8092 | ins->offset); |
| 8093 | if (ret) |
| 8094 | return ret; |
| 8095 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 8096 | ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8097 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8098 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8099 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 8100 | BUG(); |
| 8101 | } |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8102 | trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8103 | return ret; |
| 8104 | } |
| 8105 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8106 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8107 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8108 | u64 parent, u64 root_objectid, |
| 8109 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8110 | int level, struct btrfs_key *ins) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8111 | { |
| 8112 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8113 | struct btrfs_extent_item *extent_item; |
| 8114 | struct btrfs_tree_block_info *block_info; |
| 8115 | struct btrfs_extent_inline_ref *iref; |
| 8116 | struct btrfs_path *path; |
| 8117 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8118 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 8119 | u64 num_bytes = ins->offset; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8120 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8121 | |
| 8122 | if (!skinny_metadata) |
| 8123 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8124 | |
| 8125 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8126 | if (!path) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8127 | btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8128 | fs_info->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8129 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8130 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8131 | |
| 8132 | path->leave_spinning = 1; |
| 8133 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8134 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8135 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 8136 | btrfs_free_path(path); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8137 | btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8138 | fs_info->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8139 | return ret; |
| 8140 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8141 | |
| 8142 | leaf = path->nodes[0]; |
| 8143 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 8144 | struct btrfs_extent_item); |
| 8145 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 8146 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8147 | btrfs_set_extent_flags(leaf, extent_item, |
| 8148 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8149 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8150 | if (skinny_metadata) { |
| 8151 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8152 | num_bytes = fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8153 | } else { |
| 8154 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 8155 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 8156 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 8157 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 8158 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8159 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8160 | if (parent > 0) { |
| 8161 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 8162 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8163 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 8164 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8165 | } else { |
| 8166 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8167 | BTRFS_TREE_BLOCK_REF_KEY); |
| 8168 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 8169 | } |
| 8170 | |
| 8171 | btrfs_mark_buffer_dirty(leaf); |
| 8172 | btrfs_free_path(path); |
| 8173 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8174 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8175 | num_bytes); |
| 8176 | if (ret) |
| 8177 | return ret; |
| 8178 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 8179 | ret = update_block_group(trans, fs_info, ins->objectid, |
| 8180 | fs_info->nodesize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8181 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8182 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8183 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8184 | BUG(); |
| 8185 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 8186 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8187 | trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8188 | fs_info->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8189 | return ret; |
| 8190 | } |
| 8191 | |
| 8192 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8193 | u64 root_objectid, u64 owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8194 | u64 offset, u64 ram_bytes, |
| 8195 | struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8196 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8197 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8198 | int ret; |
Chris Mason | 1c2308f | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 8199 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8200 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 8201 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8202 | ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8203 | ins->offset, 0, |
| 8204 | root_objectid, owner, offset, |
Jeff Mahoney | fef394f | 2016-12-13 14:39:34 -0500 | [diff] [blame] | 8205 | ram_bytes, BTRFS_ADD_DELAYED_EXTENT); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8206 | return ret; |
| 8207 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8208 | |
| 8209 | /* |
| 8210 | * this is used by the tree logging recovery code. It records that |
| 8211 | * an extent has been allocated and makes sure to clear the free |
| 8212 | * space cache bits as well |
| 8213 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8214 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8215 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8216 | u64 root_objectid, u64 owner, u64 offset, |
| 8217 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8218 | { |
| 8219 | int ret; |
| 8220 | struct btrfs_block_group_cache *block_group; |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8221 | struct btrfs_space_info *space_info; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8222 | |
| 8223 | /* |
| 8224 | * 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] | 8225 | * need to do the exclude dance if this fs isn't mixed. |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8226 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8227 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8228 | ret = __exclude_logged_extent(fs_info, ins->objectid, |
| 8229 | ins->offset); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8230 | if (ret) |
| 8231 | return ret; |
| 8232 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8233 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8234 | block_group = btrfs_lookup_block_group(fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8235 | if (!block_group) |
| 8236 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8237 | |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8238 | space_info = block_group->space_info; |
| 8239 | spin_lock(&space_info->lock); |
| 8240 | spin_lock(&block_group->lock); |
| 8241 | space_info->bytes_reserved += ins->offset; |
| 8242 | block_group->reserved += ins->offset; |
| 8243 | spin_unlock(&block_group->lock); |
| 8244 | spin_unlock(&space_info->lock); |
| 8245 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8246 | ret = alloc_reserved_file_extent(trans, fs_info, 0, root_objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8247 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 8248 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8249 | return ret; |
| 8250 | } |
| 8251 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 8252 | static struct extent_buffer * |
| 8253 | btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8254 | u64 bytenr, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8255 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8256 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8257 | struct extent_buffer *buf; |
| 8258 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8259 | buf = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8260 | if (IS_ERR(buf)) |
| 8261 | return buf; |
| 8262 | |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8263 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 8264 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8265 | btrfs_tree_lock(buf); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 8266 | clean_tree_block(fs_info, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 8267 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8268 | |
| 8269 | btrfs_set_lock_blocking(buf); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 8270 | set_extent_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8271 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8272 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8273 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8274 | /* |
| 8275 | * we allow two log transactions at a time, use different |
| 8276 | * EXENT bit to differentiate dirty pages. |
| 8277 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8278 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8279 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 8280 | buf->start + buf->len - 1, GFP_NOFS); |
| 8281 | else |
| 8282 | set_extent_new(&root->dirty_log_pages, buf->start, |
David Sterba | 3744dbe | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 8283 | buf->start + buf->len - 1); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8284 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8285 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8286 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 8287 | buf->start + buf->len - 1, GFP_NOFS); |
| 8288 | } |
Jeff Mahoney | 64c1292 | 2016-06-08 00:36:38 -0400 | [diff] [blame] | 8289 | trans->dirty = true; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8290 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8291 | return buf; |
| 8292 | } |
| 8293 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8294 | static struct btrfs_block_rsv * |
| 8295 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 8296 | struct btrfs_root *root, u32 blocksize) |
| 8297 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8298 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8299 | struct btrfs_block_rsv *block_rsv; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8300 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8301 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8302 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8303 | |
| 8304 | block_rsv = get_block_rsv(trans, root); |
| 8305 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8306 | if (unlikely(block_rsv->size == 0)) |
| 8307 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8308 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8309 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 8310 | if (!ret) |
| 8311 | return block_rsv; |
| 8312 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8313 | if (block_rsv->failfast) |
| 8314 | return ERR_PTR(ret); |
| 8315 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8316 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 8317 | global_updated = true; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8318 | update_global_block_rsv(fs_info); |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8319 | goto again; |
| 8320 | } |
| 8321 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8322 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8323 | static DEFINE_RATELIMIT_STATE(_rs, |
| 8324 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 8325 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 8326 | if (__ratelimit(&_rs)) |
| 8327 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8328 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8329 | } |
| 8330 | try_reserve: |
| 8331 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 8332 | BTRFS_RESERVE_NO_FLUSH); |
| 8333 | if (!ret) |
| 8334 | return block_rsv; |
| 8335 | /* |
| 8336 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8337 | * the global reserve if its space type is the same as the global |
| 8338 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8339 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8340 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 8341 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8342 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 8343 | if (!ret) |
| 8344 | return global_rsv; |
| 8345 | } |
| 8346 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8347 | } |
| 8348 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8349 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 8350 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8351 | { |
| 8352 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8353 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8354 | } |
| 8355 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8356 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8357 | * 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] | 8358 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8359 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 8360 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 8361 | struct btrfs_root *root, |
| 8362 | u64 parent, u64 root_objectid, |
| 8363 | const struct btrfs_disk_key *key, |
| 8364 | int level, u64 hint, |
| 8365 | u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8366 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8367 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 8368 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8369 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8370 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8371 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8372 | u64 flags = 0; |
| 8373 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8374 | u32 blocksize = fs_info->nodesize; |
| 8375 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8376 | |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8377 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8378 | if (btrfs_is_testing(fs_info)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8379 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8380 | level); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8381 | if (!IS_ERR(buf)) |
| 8382 | root->alloc_bytenr += blocksize; |
| 8383 | return buf; |
| 8384 | } |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8385 | #endif |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 8386 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8387 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 8388 | if (IS_ERR(block_rsv)) |
| 8389 | return ERR_CAST(block_rsv); |
| 8390 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8391 | ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8392 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8393 | if (ret) |
| 8394 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 8395 | |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8396 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8397 | if (IS_ERR(buf)) { |
| 8398 | ret = PTR_ERR(buf); |
| 8399 | goto out_free_reserved; |
| 8400 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8401 | |
| 8402 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 8403 | if (parent == 0) |
| 8404 | parent = ins.objectid; |
| 8405 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8406 | } else |
| 8407 | BUG_ON(parent > 0); |
| 8408 | |
| 8409 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 8410 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8411 | if (!extent_op) { |
| 8412 | ret = -ENOMEM; |
| 8413 | goto out_free_buf; |
| 8414 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8415 | if (key) |
| 8416 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 8417 | else |
| 8418 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 8419 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 8420 | extent_op->update_key = skinny_metadata ? false : true; |
| 8421 | extent_op->update_flags = true; |
| 8422 | extent_op->is_data = false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8423 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8424 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8425 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8426 | ins.objectid, ins.offset, |
| 8427 | parent, root_objectid, level, |
| 8428 | BTRFS_ADD_DELAYED_EXTENT, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8429 | extent_op); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8430 | if (ret) |
| 8431 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8432 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8433 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8434 | |
| 8435 | out_free_delayed: |
| 8436 | btrfs_free_delayed_extent_op(extent_op); |
| 8437 | out_free_buf: |
| 8438 | free_extent_buffer(buf); |
| 8439 | out_free_reserved: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8440 | btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8441 | out_unuse: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8442 | unuse_block_rsv(fs_info, block_rsv, blocksize); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8443 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8444 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 8445 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8446 | struct walk_control { |
| 8447 | u64 refs[BTRFS_MAX_LEVEL]; |
| 8448 | u64 flags[BTRFS_MAX_LEVEL]; |
| 8449 | struct btrfs_key update_progress; |
| 8450 | int stage; |
| 8451 | int level; |
| 8452 | int shared_level; |
| 8453 | int update_ref; |
| 8454 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8455 | int reada_slot; |
| 8456 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8457 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8458 | }; |
| 8459 | |
| 8460 | #define DROP_REFERENCE 1 |
| 8461 | #define UPDATE_BACKREF 2 |
| 8462 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8463 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 8464 | struct btrfs_root *root, |
| 8465 | struct walk_control *wc, |
| 8466 | struct btrfs_path *path) |
| 8467 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8468 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8469 | u64 bytenr; |
| 8470 | u64 generation; |
| 8471 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8472 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8473 | u32 nritems; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8474 | struct btrfs_key key; |
| 8475 | struct extent_buffer *eb; |
| 8476 | int ret; |
| 8477 | int slot; |
| 8478 | int nread = 0; |
| 8479 | |
| 8480 | if (path->slots[wc->level] < wc->reada_slot) { |
| 8481 | wc->reada_count = wc->reada_count * 2 / 3; |
| 8482 | wc->reada_count = max(wc->reada_count, 2); |
| 8483 | } else { |
| 8484 | wc->reada_count = wc->reada_count * 3 / 2; |
| 8485 | wc->reada_count = min_t(int, wc->reada_count, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8486 | BTRFS_NODEPTRS_PER_BLOCK(fs_info)); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8487 | } |
| 8488 | |
| 8489 | eb = path->nodes[wc->level]; |
| 8490 | nritems = btrfs_header_nritems(eb); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8491 | |
| 8492 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 8493 | if (nread >= wc->reada_count) |
| 8494 | break; |
| 8495 | |
| 8496 | cond_resched(); |
| 8497 | bytenr = btrfs_node_blockptr(eb, slot); |
| 8498 | generation = btrfs_node_ptr_generation(eb, slot); |
| 8499 | |
| 8500 | if (slot == path->slots[wc->level]) |
| 8501 | goto reada; |
| 8502 | |
| 8503 | if (wc->stage == UPDATE_BACKREF && |
| 8504 | generation <= root->root_key.offset) |
| 8505 | continue; |
| 8506 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8507 | /* 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] | 8508 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8509 | wc->level - 1, 1, &refs, |
| 8510 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8511 | /* We don't care about errors in readahead. */ |
| 8512 | if (ret < 0) |
| 8513 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8514 | BUG_ON(refs == 0); |
| 8515 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8516 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8517 | if (refs == 1) |
| 8518 | goto reada; |
| 8519 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8520 | if (wc->level == 1 && |
| 8521 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8522 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8523 | if (!wc->update_ref || |
| 8524 | generation <= root->root_key.offset) |
| 8525 | continue; |
| 8526 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 8527 | ret = btrfs_comp_cpu_keys(&key, |
| 8528 | &wc->update_progress); |
| 8529 | if (ret < 0) |
| 8530 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8531 | } else { |
| 8532 | if (wc->level == 1 && |
| 8533 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8534 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8535 | } |
| 8536 | reada: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8537 | readahead_tree_block(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8538 | nread++; |
| 8539 | } |
| 8540 | wc->reada_slot = slot; |
| 8541 | } |
| 8542 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8543 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8544 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8545 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8546 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 8547 | * back refs for pointers in the block. |
| 8548 | * |
| 8549 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8550 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8551 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 8552 | struct btrfs_root *root, |
| 8553 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8554 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8555 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8556 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8557 | int level = wc->level; |
| 8558 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8559 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8560 | int ret; |
| 8561 | |
| 8562 | if (wc->stage == UPDATE_BACKREF && |
| 8563 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8564 | return 1; |
| 8565 | |
| 8566 | /* |
| 8567 | * when reference count of tree block is 1, it won't increase |
| 8568 | * again. once full backref flag is set, we never clear it. |
| 8569 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8570 | if (lookup_info && |
| 8571 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8572 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8573 | BUG_ON(!path->locks[level]); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8574 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8575 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8576 | &wc->refs[level], |
| 8577 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8578 | BUG_ON(ret == -ENOMEM); |
| 8579 | if (ret) |
| 8580 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8581 | BUG_ON(wc->refs[level] == 0); |
| 8582 | } |
| 8583 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8584 | if (wc->stage == DROP_REFERENCE) { |
| 8585 | if (wc->refs[level] > 1) |
| 8586 | return 1; |
| 8587 | |
| 8588 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8589 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8590 | path->locks[level] = 0; |
| 8591 | } |
| 8592 | return 0; |
| 8593 | } |
| 8594 | |
| 8595 | /* wc->stage == UPDATE_BACKREF */ |
| 8596 | if (!(wc->flags[level] & flag)) { |
| 8597 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8598 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8599 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8600 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8601 | BUG_ON(ret); /* -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8602 | ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8603 | eb->len, flag, |
| 8604 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8605 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8606 | wc->flags[level] |= flag; |
| 8607 | } |
| 8608 | |
| 8609 | /* |
| 8610 | * the block is shared by multiple trees, so it's not good to |
| 8611 | * keep the tree lock |
| 8612 | */ |
| 8613 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8614 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8615 | path->locks[level] = 0; |
| 8616 | } |
| 8617 | return 0; |
| 8618 | } |
| 8619 | |
| 8620 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8621 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8622 | * |
| 8623 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8624 | * reference count of the block pointed to. if the block |
| 8625 | * is shared and we need update back refs for the subtree |
| 8626 | * rooted at the block, this function changes wc->stage to |
| 8627 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8628 | * need to update back, this function drops the reference |
| 8629 | * to the block. |
| 8630 | * |
| 8631 | * NOTE: return value 1 means we should stop walking down. |
| 8632 | */ |
| 8633 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8634 | struct btrfs_root *root, |
| 8635 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8636 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8637 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8638 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8639 | u64 bytenr; |
| 8640 | u64 generation; |
| 8641 | u64 parent; |
| 8642 | u32 blocksize; |
| 8643 | struct btrfs_key key; |
| 8644 | struct extent_buffer *next; |
| 8645 | int level = wc->level; |
| 8646 | int reada = 0; |
| 8647 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8648 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8649 | |
| 8650 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8651 | path->slots[level]); |
| 8652 | /* |
| 8653 | * if the lower level block was created before the snapshot |
| 8654 | * was created, we know there is no need to update back refs |
| 8655 | * for the subtree |
| 8656 | */ |
| 8657 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8658 | generation <= root->root_key.offset) { |
| 8659 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8660 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8661 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8662 | |
| 8663 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8664 | blocksize = fs_info->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8665 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8666 | next = find_extent_buffer(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8667 | if (!next) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8668 | next = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8669 | if (IS_ERR(next)) |
| 8670 | return PTR_ERR(next); |
| 8671 | |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8672 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8673 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8674 | reada = 1; |
| 8675 | } |
| 8676 | btrfs_tree_lock(next); |
| 8677 | btrfs_set_lock_blocking(next); |
| 8678 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8679 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8680 | &wc->refs[level - 1], |
| 8681 | &wc->flags[level - 1]); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8682 | if (ret < 0) |
| 8683 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8684 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8685 | if (unlikely(wc->refs[level - 1] == 0)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8686 | btrfs_err(fs_info, "Missing references."); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8687 | ret = -EIO; |
| 8688 | goto out_unlock; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8689 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8690 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8691 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8692 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8693 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8694 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8695 | if (level == 1 && |
| 8696 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8697 | goto skip; |
| 8698 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8699 | if (!wc->update_ref || |
| 8700 | generation <= root->root_key.offset) |
| 8701 | goto skip; |
| 8702 | |
| 8703 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8704 | path->slots[level]); |
| 8705 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8706 | if (ret < 0) |
| 8707 | goto skip; |
| 8708 | |
| 8709 | wc->stage = UPDATE_BACKREF; |
| 8710 | wc->shared_level = level - 1; |
| 8711 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8712 | } else { |
| 8713 | if (level == 1 && |
| 8714 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8715 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8716 | } |
| 8717 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8718 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8719 | btrfs_tree_unlock(next); |
| 8720 | free_extent_buffer(next); |
| 8721 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8722 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8723 | } |
| 8724 | |
| 8725 | if (!next) { |
| 8726 | if (reada && level == 1) |
| 8727 | reada_walk_down(trans, root, wc, path); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8728 | next = read_tree_block(fs_info, bytenr, generation); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8729 | if (IS_ERR(next)) { |
| 8730 | return PTR_ERR(next); |
| 8731 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8732 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8733 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8734 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8735 | btrfs_tree_lock(next); |
| 8736 | btrfs_set_lock_blocking(next); |
| 8737 | } |
| 8738 | |
| 8739 | level--; |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8740 | ASSERT(level == btrfs_header_level(next)); |
| 8741 | if (level != btrfs_header_level(next)) { |
| 8742 | btrfs_err(root->fs_info, "mismatched level"); |
| 8743 | ret = -EIO; |
| 8744 | goto out_unlock; |
| 8745 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8746 | path->nodes[level] = next; |
| 8747 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8748 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8749 | wc->level = level; |
| 8750 | if (wc->level == 1) |
| 8751 | wc->reada_slot = 0; |
| 8752 | return 0; |
| 8753 | skip: |
| 8754 | wc->refs[level - 1] = 0; |
| 8755 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8756 | if (wc->stage == DROP_REFERENCE) { |
| 8757 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 8758 | parent = path->nodes[level]->start; |
| 8759 | } else { |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8760 | ASSERT(root->root_key.objectid == |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8761 | btrfs_header_owner(path->nodes[level])); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8762 | if (root->root_key.objectid != |
| 8763 | btrfs_header_owner(path->nodes[level])) { |
| 8764 | btrfs_err(root->fs_info, |
| 8765 | "mismatched block owner"); |
| 8766 | ret = -EIO; |
| 8767 | goto out_unlock; |
| 8768 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8769 | parent = 0; |
| 8770 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8771 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8772 | if (need_account) { |
Qu Wenruo | 33d1f05 | 2016-10-18 09:31:28 +0800 | [diff] [blame] | 8773 | ret = btrfs_qgroup_trace_subtree(trans, root, next, |
| 8774 | generation, level - 1); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8775 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8776 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8777 | "Error %d accounting shared subtree. Quota is out of sync, rescan required.", |
| 8778 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8779 | } |
| 8780 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8781 | ret = btrfs_free_extent(trans, fs_info, bytenr, blocksize, |
| 8782 | parent, root->root_key.objectid, |
| 8783 | level - 1, 0); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8784 | if (ret) |
| 8785 | goto out_unlock; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8786 | } |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8787 | |
| 8788 | *lookup_info = 1; |
| 8789 | ret = 1; |
| 8790 | |
| 8791 | out_unlock: |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8792 | btrfs_tree_unlock(next); |
| 8793 | free_extent_buffer(next); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8794 | |
| 8795 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8796 | } |
| 8797 | |
| 8798 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8799 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8800 | * |
| 8801 | * when wc->stage == DROP_REFERENCE, this function drops |
| 8802 | * reference count on the block. |
| 8803 | * |
| 8804 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 8805 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 8806 | * to UPDATE_BACKREF previously while processing the block. |
| 8807 | * |
| 8808 | * NOTE: return value 1 means we should stop walking up. |
| 8809 | */ |
| 8810 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 8811 | struct btrfs_root *root, |
| 8812 | struct btrfs_path *path, |
| 8813 | struct walk_control *wc) |
| 8814 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8815 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8816 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8817 | int level = wc->level; |
| 8818 | struct extent_buffer *eb = path->nodes[level]; |
| 8819 | u64 parent = 0; |
| 8820 | |
| 8821 | if (wc->stage == UPDATE_BACKREF) { |
| 8822 | BUG_ON(wc->shared_level < level); |
| 8823 | if (level < wc->shared_level) |
| 8824 | goto out; |
| 8825 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8826 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 8827 | if (ret > 0) |
| 8828 | wc->update_ref = 0; |
| 8829 | |
| 8830 | wc->stage = DROP_REFERENCE; |
| 8831 | wc->shared_level = -1; |
| 8832 | path->slots[level] = 0; |
| 8833 | |
| 8834 | /* |
| 8835 | * check reference count again if the block isn't locked. |
| 8836 | * we should start walking down the tree again if reference |
| 8837 | * count is one. |
| 8838 | */ |
| 8839 | if (!path->locks[level]) { |
| 8840 | BUG_ON(level == 0); |
| 8841 | btrfs_tree_lock(eb); |
| 8842 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8843 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8844 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8845 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8846 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8847 | &wc->refs[level], |
| 8848 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8849 | if (ret < 0) { |
| 8850 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8851 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8852 | return ret; |
| 8853 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8854 | BUG_ON(wc->refs[level] == 0); |
| 8855 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8856 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8857 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8858 | return 1; |
| 8859 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8860 | } |
| 8861 | } |
| 8862 | |
| 8863 | /* wc->stage == DROP_REFERENCE */ |
| 8864 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 8865 | |
| 8866 | if (wc->refs[level] == 1) { |
| 8867 | if (level == 0) { |
| 8868 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8869 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8870 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8871 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8872 | BUG_ON(ret); /* -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8873 | ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, eb); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8874 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8875 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8876 | "error %d accounting leaf items. Quota is out of sync, rescan required.", |
| 8877 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8878 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8879 | } |
| 8880 | /* make block locked assertion in clean_tree_block happy */ |
| 8881 | if (!path->locks[level] && |
| 8882 | btrfs_header_generation(eb) == trans->transid) { |
| 8883 | btrfs_tree_lock(eb); |
| 8884 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8885 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8886 | } |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 8887 | clean_tree_block(fs_info, eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8888 | } |
| 8889 | |
| 8890 | if (eb == root->node) { |
| 8891 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8892 | parent = eb->start; |
| 8893 | else |
| 8894 | BUG_ON(root->root_key.objectid != |
| 8895 | btrfs_header_owner(eb)); |
| 8896 | } else { |
| 8897 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8898 | parent = path->nodes[level + 1]->start; |
| 8899 | else |
| 8900 | BUG_ON(root->root_key.objectid != |
| 8901 | btrfs_header_owner(path->nodes[level + 1])); |
| 8902 | } |
| 8903 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8904 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8905 | out: |
| 8906 | wc->refs[level] = 0; |
| 8907 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8908 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8909 | } |
| 8910 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8911 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8912 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8913 | struct btrfs_path *path, |
| 8914 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8915 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8916 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8917 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8918 | int ret; |
| 8919 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8920 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8921 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8922 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8923 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8924 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8925 | if (level == 0) |
| 8926 | break; |
| 8927 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8928 | if (path->slots[level] >= |
| 8929 | btrfs_header_nritems(path->nodes[level])) |
| 8930 | break; |
| 8931 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8932 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8933 | if (ret > 0) { |
| 8934 | path->slots[level]++; |
| 8935 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8936 | } else if (ret < 0) |
| 8937 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8938 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8939 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8940 | return 0; |
| 8941 | } |
| 8942 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8943 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8944 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8945 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8946 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8947 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8948 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8949 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8950 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8951 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8952 | while (level < max_level && path->nodes[level]) { |
| 8953 | wc->level = level; |
| 8954 | if (path->slots[level] + 1 < |
| 8955 | btrfs_header_nritems(path->nodes[level])) { |
| 8956 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8957 | return 0; |
| 8958 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8959 | ret = walk_up_proc(trans, root, path, wc); |
| 8960 | if (ret > 0) |
| 8961 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8962 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8963 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8964 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8965 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8966 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8967 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8968 | free_extent_buffer(path->nodes[level]); |
| 8969 | path->nodes[level] = NULL; |
| 8970 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8971 | } |
| 8972 | } |
| 8973 | return 1; |
| 8974 | } |
| 8975 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8976 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8977 | * drop a subvolume tree. |
| 8978 | * |
| 8979 | * this function traverses the tree freeing any blocks that only |
| 8980 | * referenced by the tree. |
| 8981 | * |
| 8982 | * when a shared tree block is found. this function decreases its |
| 8983 | * reference count by one. if update_ref is true, this function |
| 8984 | * also make sure backrefs for the shared block and all lower level |
| 8985 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8986 | * |
| 8987 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8988 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8989 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8990 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 8991 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8992 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8993 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 8994 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8995 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8996 | struct btrfs_root *tree_root = fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8997 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8998 | struct walk_control *wc; |
| 8999 | struct btrfs_key key; |
| 9000 | int err = 0; |
| 9001 | int ret; |
| 9002 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9003 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9004 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9005 | btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9006 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9007 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9008 | if (!path) { |
| 9009 | err = -ENOMEM; |
| 9010 | goto out; |
| 9011 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9012 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9013 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9014 | if (!wc) { |
| 9015 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9016 | err = -ENOMEM; |
| 9017 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9018 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9019 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9020 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9021 | if (IS_ERR(trans)) { |
| 9022 | err = PTR_ERR(trans); |
| 9023 | goto out_free; |
| 9024 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 9025 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9026 | if (block_rsv) |
| 9027 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9028 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9029 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9030 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9031 | path->nodes[level] = btrfs_lock_root_node(root); |
| 9032 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9033 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9034 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9035 | memset(&wc->update_progress, 0, |
| 9036 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9037 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9038 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9039 | memcpy(&wc->update_progress, &key, |
| 9040 | sizeof(wc->update_progress)); |
| 9041 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9042 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9043 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9044 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9045 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 9046 | path->lowest_level = 0; |
| 9047 | if (ret < 0) { |
| 9048 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9049 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9050 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9051 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9052 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9053 | /* |
| 9054 | * unlock our path, this is safe because only this |
| 9055 | * function is allowed to delete this snapshot |
| 9056 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9057 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9058 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9059 | level = btrfs_header_level(root->node); |
| 9060 | while (1) { |
| 9061 | btrfs_tree_lock(path->nodes[level]); |
| 9062 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9063 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9064 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9065 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9066 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9067 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9068 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9069 | if (ret < 0) { |
| 9070 | err = ret; |
| 9071 | goto out_end_trans; |
| 9072 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9073 | BUG_ON(wc->refs[level] == 0); |
| 9074 | |
| 9075 | if (level == root_item->drop_level) |
| 9076 | break; |
| 9077 | |
| 9078 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9079 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9080 | WARN_ON(wc->refs[level] != 1); |
| 9081 | level--; |
| 9082 | } |
| 9083 | } |
| 9084 | |
| 9085 | wc->level = level; |
| 9086 | wc->shared_level = -1; |
| 9087 | wc->stage = DROP_REFERENCE; |
| 9088 | wc->update_ref = update_ref; |
| 9089 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9090 | wc->for_reloc = for_reloc; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9091 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9092 | |
| 9093 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9094 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9095 | ret = walk_down_tree(trans, root, path, wc); |
| 9096 | if (ret < 0) { |
| 9097 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 9098 | break; |
| 9099 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9100 | |
| 9101 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 9102 | if (ret < 0) { |
| 9103 | err = ret; |
| 9104 | break; |
| 9105 | } |
| 9106 | |
| 9107 | if (ret > 0) { |
| 9108 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 9109 | break; |
| 9110 | } |
| 9111 | |
| 9112 | if (wc->stage == DROP_REFERENCE) { |
| 9113 | level = wc->level; |
| 9114 | btrfs_node_key(path->nodes[level], |
| 9115 | &root_item->drop_progress, |
| 9116 | path->slots[level]); |
| 9117 | root_item->drop_level = level; |
| 9118 | } |
| 9119 | |
| 9120 | BUG_ON(wc->level == 0); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9121 | if (btrfs_should_end_transaction(trans) || |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9122 | (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9123 | ret = btrfs_update_root(trans, tree_root, |
| 9124 | &root->root_key, |
| 9125 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9126 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9127 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9128 | err = ret; |
| 9129 | goto out_end_trans; |
| 9130 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9131 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9132 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9133 | if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9134 | btrfs_debug(fs_info, |
| 9135 | "drop snapshot early exit"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9136 | err = -EAGAIN; |
| 9137 | goto out_free; |
| 9138 | } |
| 9139 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9140 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9141 | if (IS_ERR(trans)) { |
| 9142 | err = PTR_ERR(trans); |
| 9143 | goto out_free; |
| 9144 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9145 | if (block_rsv) |
| 9146 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 9147 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9148 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9149 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9150 | if (err) |
| 9151 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9152 | |
| 9153 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9154 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9155 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9156 | goto out_end_trans; |
| 9157 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9158 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9159 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 9160 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 9161 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9162 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9163 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9164 | err = ret; |
| 9165 | goto out_end_trans; |
| 9166 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 9167 | /* if we fail to delete the orphan item this time |
| 9168 | * around, it'll get picked up the next time. |
| 9169 | * |
| 9170 | * The most common failure here is just -ENOENT. |
| 9171 | */ |
| 9172 | btrfs_del_orphan_item(trans, tree_root, |
| 9173 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9174 | } |
| 9175 | } |
| 9176 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 9177 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Josef Bacik | 2b9dbef | 2015-09-15 10:07:04 -0400 | [diff] [blame] | 9178 | btrfs_add_dropped_root(trans, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9179 | } else { |
| 9180 | free_extent_buffer(root->node); |
| 9181 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 9182 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9183 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9184 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9185 | out_end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9186 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9187 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9188 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9189 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9190 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9191 | /* |
| 9192 | * So if we need to stop dropping the snapshot for whatever reason we |
| 9193 | * need to make sure to add it back to the dead root list so that we |
| 9194 | * keep trying to do the work later. This also cleans up roots if we |
| 9195 | * don't have it in the radix (like when we recover after a power fail |
| 9196 | * or unmount) so we don't leak memory. |
| 9197 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 9198 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9199 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 9200 | if (err && err != -EAGAIN) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9201 | btrfs_handle_fs_error(fs_info, err, NULL); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9202 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9203 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9204 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9205 | /* |
| 9206 | * drop subtree rooted at tree block 'node'. |
| 9207 | * |
| 9208 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9209 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9210 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9211 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 9212 | struct btrfs_root *root, |
| 9213 | struct extent_buffer *node, |
| 9214 | struct extent_buffer *parent) |
| 9215 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9216 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9217 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9218 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9219 | int level; |
| 9220 | int parent_level; |
| 9221 | int ret = 0; |
| 9222 | int wret; |
| 9223 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9224 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 9225 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9226 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9227 | if (!path) |
| 9228 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9229 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9230 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9231 | if (!wc) { |
| 9232 | btrfs_free_path(path); |
| 9233 | return -ENOMEM; |
| 9234 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9235 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9236 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9237 | parent_level = btrfs_header_level(parent); |
| 9238 | extent_buffer_get(parent); |
| 9239 | path->nodes[parent_level] = parent; |
| 9240 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 9241 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9242 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9243 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9244 | path->nodes[level] = node; |
| 9245 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9246 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9247 | |
| 9248 | wc->refs[parent_level] = 1; |
| 9249 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 9250 | wc->level = level; |
| 9251 | wc->shared_level = -1; |
| 9252 | wc->stage = DROP_REFERENCE; |
| 9253 | wc->update_ref = 0; |
| 9254 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9255 | wc->for_reloc = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9256 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9257 | |
| 9258 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9259 | wret = walk_down_tree(trans, root, path, wc); |
| 9260 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9261 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9262 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9263 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9264 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9265 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9266 | if (wret < 0) |
| 9267 | ret = wret; |
| 9268 | if (wret != 0) |
| 9269 | break; |
| 9270 | } |
| 9271 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9272 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9273 | btrfs_free_path(path); |
| 9274 | return ret; |
| 9275 | } |
| 9276 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9277 | 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] | 9278 | { |
| 9279 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9280 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9281 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9282 | /* |
| 9283 | * if restripe for this chunk_type is on pick target profile and |
| 9284 | * return, otherwise do the usual balance |
| 9285 | */ |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9286 | stripped = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9287 | if (stripped) |
| 9288 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 9289 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9290 | num_devices = fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 9291 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9292 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9293 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9294 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 9295 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9296 | if (num_devices == 1) { |
| 9297 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9298 | stripped = flags & ~stripped; |
| 9299 | |
| 9300 | /* turn raid0 into single device chunks */ |
| 9301 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 9302 | return stripped; |
| 9303 | |
| 9304 | /* turn mirroring into duplication */ |
| 9305 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9306 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9307 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9308 | } else { |
| 9309 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9310 | if (flags & stripped) |
| 9311 | return flags; |
| 9312 | |
| 9313 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9314 | stripped = flags & ~stripped; |
| 9315 | |
| 9316 | /* switch duplicated blocks with raid1 */ |
| 9317 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 9318 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 9319 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9320 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9321 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9322 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9323 | return flags; |
| 9324 | } |
| 9325 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9326 | 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] | 9327 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9328 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9329 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9330 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9331 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9332 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9333 | /* |
| 9334 | * We need some metadata space and system metadata space for |
| 9335 | * allocating chunks in some corner cases until we force to set |
| 9336 | * it to be readonly. |
| 9337 | */ |
| 9338 | if ((sinfo->flags & |
| 9339 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 9340 | !force) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 9341 | min_allocable_bytes = SZ_1M; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9342 | else |
| 9343 | min_allocable_bytes = 0; |
| 9344 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9345 | spin_lock(&sinfo->lock); |
| 9346 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9347 | |
| 9348 | if (cache->ro) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9349 | cache->ro++; |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9350 | ret = 0; |
| 9351 | goto out; |
| 9352 | } |
| 9353 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9354 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 9355 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9356 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 9357 | if (btrfs_space_info_used(sinfo, true) + num_bytes + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 9358 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9359 | sinfo->bytes_readonly += num_bytes; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9360 | cache->ro++; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9361 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9362 | ret = 0; |
| 9363 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9364 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9365 | spin_unlock(&cache->lock); |
| 9366 | spin_unlock(&sinfo->lock); |
| 9367 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9368 | } |
| 9369 | |
Jeff Mahoney | 5e00f19 | 2017-02-15 16:28:29 -0500 | [diff] [blame] | 9370 | int btrfs_inc_block_group_ro(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9371 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9372 | |
| 9373 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9374 | struct btrfs_trans_handle *trans; |
| 9375 | u64 alloc_flags; |
| 9376 | int ret; |
| 9377 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9378 | again: |
Jeff Mahoney | 5e00f19 | 2017-02-15 16:28:29 -0500 | [diff] [blame] | 9379 | trans = btrfs_join_transaction(fs_info->extent_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9380 | if (IS_ERR(trans)) |
| 9381 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9382 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9383 | /* |
| 9384 | * we're not allowed to set block groups readonly after the dirty |
| 9385 | * block groups cache has started writing. If it already started, |
| 9386 | * back off and let this transaction commit |
| 9387 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9388 | mutex_lock(&fs_info->ro_block_group_mutex); |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 9389 | if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9390 | u64 transid = trans->transid; |
| 9391 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9392 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9393 | btrfs_end_transaction(trans); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9394 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9395 | ret = btrfs_wait_for_commit(fs_info, transid); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9396 | if (ret) |
| 9397 | return ret; |
| 9398 | goto again; |
| 9399 | } |
| 9400 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9401 | /* |
| 9402 | * if we are changing raid levels, try to allocate a corresponding |
| 9403 | * block group with the new raid level. |
| 9404 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9405 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9406 | if (alloc_flags != cache->flags) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9407 | ret = do_chunk_alloc(trans, fs_info, alloc_flags, |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9408 | CHUNK_ALLOC_FORCE); |
| 9409 | /* |
| 9410 | * ENOSPC is allowed here, we may have enough space |
| 9411 | * already allocated at the new raid level to |
| 9412 | * carry on |
| 9413 | */ |
| 9414 | if (ret == -ENOSPC) |
| 9415 | ret = 0; |
| 9416 | if (ret < 0) |
| 9417 | goto out; |
| 9418 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9419 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9420 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9421 | if (!ret) |
| 9422 | goto out; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9423 | alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags); |
| 9424 | ret = do_chunk_alloc(trans, fs_info, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 9425 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9426 | if (ret < 0) |
| 9427 | goto out; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9428 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9429 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9430 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9431 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9432 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9433 | check_system_chunk(trans, fs_info, alloc_flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9434 | mutex_unlock(&fs_info->chunk_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9435 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9436 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9437 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9438 | btrfs_end_transaction(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9439 | return ret; |
| 9440 | } |
| 9441 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9442 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9443 | struct btrfs_fs_info *fs_info, u64 type) |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9444 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9445 | u64 alloc_flags = get_alloc_profile(fs_info, type); |
| 9446 | |
| 9447 | return do_chunk_alloc(trans, fs_info, alloc_flags, CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9448 | } |
| 9449 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9450 | /* |
| 9451 | * 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] | 9452 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9453 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9454 | 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] | 9455 | { |
| 9456 | struct btrfs_block_group_cache *block_group; |
| 9457 | u64 free_bytes = 0; |
| 9458 | int factor; |
| 9459 | |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 9460 | /* It's df, we don't care if it's racy */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9461 | if (list_empty(&sinfo->ro_bgs)) |
| 9462 | return 0; |
| 9463 | |
| 9464 | spin_lock(&sinfo->lock); |
| 9465 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9466 | spin_lock(&block_group->lock); |
| 9467 | |
| 9468 | if (!block_group->ro) { |
| 9469 | spin_unlock(&block_group->lock); |
| 9470 | continue; |
| 9471 | } |
| 9472 | |
| 9473 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9474 | BTRFS_BLOCK_GROUP_RAID10 | |
| 9475 | BTRFS_BLOCK_GROUP_DUP)) |
| 9476 | factor = 2; |
| 9477 | else |
| 9478 | factor = 1; |
| 9479 | |
| 9480 | free_bytes += (block_group->key.offset - |
| 9481 | btrfs_block_group_used(&block_group->item)) * |
| 9482 | factor; |
| 9483 | |
| 9484 | spin_unlock(&block_group->lock); |
| 9485 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9486 | spin_unlock(&sinfo->lock); |
| 9487 | |
| 9488 | return free_bytes; |
| 9489 | } |
| 9490 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9491 | void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9492 | { |
| 9493 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9494 | u64 num_bytes; |
| 9495 | |
| 9496 | BUG_ON(!cache->ro); |
| 9497 | |
| 9498 | spin_lock(&sinfo->lock); |
| 9499 | spin_lock(&cache->lock); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9500 | if (!--cache->ro) { |
| 9501 | num_bytes = cache->key.offset - cache->reserved - |
| 9502 | cache->pinned - cache->bytes_super - |
| 9503 | btrfs_block_group_used(&cache->item); |
| 9504 | sinfo->bytes_readonly -= num_bytes; |
| 9505 | list_del_init(&cache->ro_list); |
| 9506 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9507 | spin_unlock(&cache->lock); |
| 9508 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9509 | } |
| 9510 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9511 | /* |
| 9512 | * checks to see if its even possible to relocate this block group. |
| 9513 | * |
| 9514 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 9515 | * ok to go ahead and try. |
| 9516 | */ |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9517 | int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9518 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9519 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9520 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9521 | struct btrfs_space_info *space_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9522 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9523 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9524 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9525 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9526 | u64 dev_min = 1; |
| 9527 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9528 | u64 target; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9529 | int debug; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9530 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9531 | int full = 0; |
| 9532 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9533 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9534 | debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG); |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9535 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9536 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9537 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9538 | /* odd, couldn't find the block group, leave it alone */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9539 | if (!block_group) { |
| 9540 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9541 | btrfs_warn(fs_info, |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9542 | "can't find block group for bytenr %llu", |
| 9543 | bytenr); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9544 | return -1; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9545 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9546 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9547 | min_free = btrfs_block_group_used(&block_group->item); |
| 9548 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9549 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9550 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9551 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9552 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9553 | space_info = block_group->space_info; |
| 9554 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9555 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9556 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9557 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9558 | /* |
| 9559 | * 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] | 9560 | * relocate it unless we're able to allocate a new chunk below. |
| 9561 | * |
| 9562 | * Otherwise, we need to make sure we have room in the space to handle |
| 9563 | * 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] | 9564 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9565 | if ((space_info->total_bytes != block_group->key.offset) && |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 9566 | (btrfs_space_info_used(space_info, false) + min_free < |
| 9567 | space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9568 | spin_unlock(&space_info->lock); |
| 9569 | goto out; |
| 9570 | } |
| 9571 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9572 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9573 | /* |
| 9574 | * ok we don't have enough space, but maybe we have free space on our |
| 9575 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9576 | * alloc devices and guess if we have enough space. if this block |
| 9577 | * group is going to be restriped, run checks against the target |
| 9578 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9579 | */ |
| 9580 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 9581 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9582 | /* |
| 9583 | * index: |
| 9584 | * 0: raid10 |
| 9585 | * 1: raid1 |
| 9586 | * 2: dup |
| 9587 | * 3: raid0 |
| 9588 | * 4: single |
| 9589 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9590 | target = get_restripe_target(fs_info, block_group->flags); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9591 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 9592 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9593 | } else { |
| 9594 | /* |
| 9595 | * this is just a balance, so if we were marked as full |
| 9596 | * we know there is no space for a new chunk |
| 9597 | */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9598 | if (full) { |
| 9599 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9600 | btrfs_warn(fs_info, |
| 9601 | "no space to alloc new chunk for block group %llu", |
| 9602 | block_group->key.objectid); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9603 | goto out; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9604 | } |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9605 | |
| 9606 | index = get_block_group_index(block_group); |
| 9607 | } |
| 9608 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9609 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9610 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9611 | /* Divide by 2 */ |
| 9612 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9613 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9614 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9615 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9616 | /* Multiply by 2 */ |
| 9617 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9618 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9619 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9620 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9621 | } |
| 9622 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9623 | /* We need to do this so that we can look at pending chunks */ |
| 9624 | trans = btrfs_join_transaction(root); |
| 9625 | if (IS_ERR(trans)) { |
| 9626 | ret = PTR_ERR(trans); |
| 9627 | goto out; |
| 9628 | } |
| 9629 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9630 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9631 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9632 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9633 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9634 | /* |
| 9635 | * check to make sure we can actually find a chunk with enough |
| 9636 | * space to fit our block group in. |
| 9637 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9638 | if (device->total_bytes > device->bytes_used + min_free && |
| 9639 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9640 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9641 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9642 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9643 | dev_nr++; |
| 9644 | |
| 9645 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9646 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9647 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9648 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9649 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9650 | } |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9651 | if (debug && ret == -1) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9652 | btrfs_warn(fs_info, |
| 9653 | "no space to allocate a new chunk for block group %llu", |
| 9654 | block_group->key.objectid); |
| 9655 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9656 | btrfs_end_transaction(trans); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9657 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9658 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9659 | return ret; |
| 9660 | } |
| 9661 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9662 | static int find_first_block_group(struct btrfs_fs_info *fs_info, |
| 9663 | struct btrfs_path *path, |
| 9664 | struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9665 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9666 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9667 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9668 | struct btrfs_key found_key; |
| 9669 | struct extent_buffer *leaf; |
| 9670 | int slot; |
| 9671 | |
| 9672 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9673 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9674 | goto out; |
| 9675 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9676 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9677 | slot = path->slots[0]; |
| 9678 | leaf = path->nodes[0]; |
| 9679 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9680 | ret = btrfs_next_leaf(root, path); |
| 9681 | if (ret == 0) |
| 9682 | continue; |
| 9683 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9684 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9685 | break; |
| 9686 | } |
| 9687 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9688 | |
| 9689 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9690 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9691 | struct extent_map_tree *em_tree; |
| 9692 | struct extent_map *em; |
| 9693 | |
| 9694 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9695 | read_lock(&em_tree->lock); |
| 9696 | em = lookup_extent_mapping(em_tree, found_key.objectid, |
| 9697 | found_key.offset); |
| 9698 | read_unlock(&em_tree->lock); |
| 9699 | if (!em) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9700 | btrfs_err(fs_info, |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9701 | "logical %llu len %llu found bg but no related chunk", |
| 9702 | found_key.objectid, found_key.offset); |
| 9703 | ret = -ENOENT; |
| 9704 | } else { |
| 9705 | ret = 0; |
| 9706 | } |
Josef Bacik | 187ee58 | 2016-08-18 15:30:06 -0400 | [diff] [blame] | 9707 | free_extent_map(em); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9708 | goto out; |
| 9709 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9710 | path->slots[0]++; |
| 9711 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9712 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9713 | return ret; |
| 9714 | } |
| 9715 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9716 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 9717 | { |
| 9718 | struct btrfs_block_group_cache *block_group; |
| 9719 | u64 last = 0; |
| 9720 | |
| 9721 | while (1) { |
| 9722 | struct inode *inode; |
| 9723 | |
| 9724 | block_group = btrfs_lookup_first_block_group(info, last); |
| 9725 | while (block_group) { |
| 9726 | spin_lock(&block_group->lock); |
| 9727 | if (block_group->iref) |
| 9728 | break; |
| 9729 | spin_unlock(&block_group->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9730 | block_group = next_block_group(info, block_group); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9731 | } |
| 9732 | if (!block_group) { |
| 9733 | if (last == 0) |
| 9734 | break; |
| 9735 | last = 0; |
| 9736 | continue; |
| 9737 | } |
| 9738 | |
| 9739 | inode = block_group->inode; |
| 9740 | block_group->iref = 0; |
| 9741 | block_group->inode = NULL; |
| 9742 | spin_unlock(&block_group->lock); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9743 | ASSERT(block_group->io_ctl.inode == NULL); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9744 | iput(inode); |
| 9745 | last = block_group->key.objectid + block_group->key.offset; |
| 9746 | btrfs_put_block_group(block_group); |
| 9747 | } |
| 9748 | } |
| 9749 | |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 9750 | /* |
| 9751 | * Must be called only after stopping all workers, since we could have block |
| 9752 | * group caching kthreads running, and therefore they could race with us if we |
| 9753 | * freed the block groups before stopping them. |
| 9754 | */ |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9755 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 9756 | { |
| 9757 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9758 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9759 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9760 | struct rb_node *n; |
| 9761 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9762 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9763 | while (!list_empty(&info->caching_block_groups)) { |
| 9764 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 9765 | struct btrfs_caching_control, list); |
| 9766 | list_del(&caching_ctl->list); |
| 9767 | put_caching_control(caching_ctl); |
| 9768 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9769 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9770 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9771 | spin_lock(&info->unused_bgs_lock); |
| 9772 | while (!list_empty(&info->unused_bgs)) { |
| 9773 | block_group = list_first_entry(&info->unused_bgs, |
| 9774 | struct btrfs_block_group_cache, |
| 9775 | bg_list); |
| 9776 | list_del_init(&block_group->bg_list); |
| 9777 | btrfs_put_block_group(block_group); |
| 9778 | } |
| 9779 | spin_unlock(&info->unused_bgs_lock); |
| 9780 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9781 | spin_lock(&info->block_group_cache_lock); |
| 9782 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 9783 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 9784 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9785 | rb_erase(&block_group->cache_node, |
| 9786 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9787 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9788 | spin_unlock(&info->block_group_cache_lock); |
| 9789 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9790 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9791 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9792 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 9793 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9794 | /* |
| 9795 | * We haven't cached this block group, which means we could |
| 9796 | * possibly have excluded extents on this block group. |
| 9797 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 9798 | if (block_group->cached == BTRFS_CACHE_NO || |
| 9799 | block_group->cached == BTRFS_CACHE_ERROR) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9800 | free_excluded_extents(info, block_group); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9801 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9802 | btrfs_remove_free_space_cache(block_group); |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 9803 | ASSERT(block_group->cached != BTRFS_CACHE_STARTED); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9804 | ASSERT(list_empty(&block_group->dirty_list)); |
| 9805 | ASSERT(list_empty(&block_group->io_list)); |
| 9806 | ASSERT(list_empty(&block_group->bg_list)); |
| 9807 | ASSERT(atomic_read(&block_group->count) == 1); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 9808 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9809 | |
| 9810 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9811 | } |
| 9812 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9813 | |
| 9814 | /* now that all the block groups are freed, go through and |
| 9815 | * free all the space_info structs. This is only called during |
| 9816 | * the final stages of unmount, and so we know nobody is |
| 9817 | * using them. We call synchronize_rcu() once before we start, |
| 9818 | * just to be on the safe side. |
| 9819 | */ |
| 9820 | synchronize_rcu(); |
| 9821 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 9822 | release_global_block_rsv(info); |
| 9823 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 9824 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9825 | int i; |
| 9826 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9827 | space_info = list_entry(info->space_info.next, |
| 9828 | struct btrfs_space_info, |
| 9829 | list); |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9830 | |
| 9831 | /* |
| 9832 | * Do not hide this behind enospc_debug, this is actually |
| 9833 | * important and indicates a real bug if this happens. |
| 9834 | */ |
| 9835 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9836 | space_info->bytes_reserved > 0 || |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9837 | space_info->bytes_may_use > 0)) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9838 | dump_space_info(info, space_info, 0, 0); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9839 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9840 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 9841 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9842 | kobj = space_info->block_group_kobjs[i]; |
| 9843 | space_info->block_group_kobjs[i] = NULL; |
| 9844 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9845 | kobject_del(kobj); |
| 9846 | kobject_put(kobj); |
| 9847 | } |
| 9848 | } |
| 9849 | kobject_del(&space_info->kobj); |
| 9850 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9851 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9852 | return 0; |
| 9853 | } |
| 9854 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9855 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 9856 | struct btrfs_block_group_cache *cache) |
| 9857 | { |
| 9858 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9859 | bool first = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9860 | |
| 9861 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9862 | if (list_empty(&space_info->block_groups[index])) |
| 9863 | first = true; |
| 9864 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 9865 | up_write(&space_info->groups_sem); |
| 9866 | |
| 9867 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9868 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9869 | int ret; |
| 9870 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9871 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 9872 | if (!rkobj) |
| 9873 | goto out_err; |
| 9874 | rkobj->raid_type = index; |
| 9875 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 9876 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 9877 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9878 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9879 | kobject_put(&rkobj->kobj); |
| 9880 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9881 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9882 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9883 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9884 | |
| 9885 | return; |
| 9886 | out_err: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9887 | btrfs_warn(cache->fs_info, |
| 9888 | "failed to add kobject for block cache, ignoring"); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9889 | } |
| 9890 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9891 | static struct btrfs_block_group_cache * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9892 | btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info, |
| 9893 | u64 start, u64 size) |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9894 | { |
| 9895 | struct btrfs_block_group_cache *cache; |
| 9896 | |
| 9897 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 9898 | if (!cache) |
| 9899 | return NULL; |
| 9900 | |
| 9901 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 9902 | GFP_NOFS); |
| 9903 | if (!cache->free_space_ctl) { |
| 9904 | kfree(cache); |
| 9905 | return NULL; |
| 9906 | } |
| 9907 | |
| 9908 | cache->key.objectid = start; |
| 9909 | cache->key.offset = size; |
| 9910 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 9911 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9912 | cache->sectorsize = fs_info->sectorsize; |
| 9913 | cache->fs_info = fs_info; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9914 | cache->full_stripe_len = btrfs_full_stripe_len(fs_info, |
| 9915 | &fs_info->mapping_tree, |
| 9916 | start); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 9917 | set_free_space_tree_thresholds(cache); |
| 9918 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9919 | atomic_set(&cache->count, 1); |
| 9920 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 9921 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9922 | INIT_LIST_HEAD(&cache->list); |
| 9923 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9924 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9925 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9926 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 9927 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9928 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9929 | atomic_set(&cache->trimming, 0); |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 9930 | mutex_init(&cache->free_space_lock); |
Qu Wenruo | 0966a7b | 2017-04-14 08:35:54 +0800 | [diff] [blame] | 9931 | btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9932 | |
| 9933 | return cache; |
| 9934 | } |
| 9935 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 9936 | int btrfs_read_block_groups(struct btrfs_fs_info *info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9937 | { |
| 9938 | struct btrfs_path *path; |
| 9939 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9940 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9941 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9942 | struct btrfs_key key; |
| 9943 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9944 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9945 | int need_clear = 0; |
| 9946 | u64 cache_gen; |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 9947 | u64 feature; |
| 9948 | int mixed; |
| 9949 | |
| 9950 | feature = btrfs_super_incompat_flags(info->super_copy); |
| 9951 | mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9952 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9953 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9954 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9955 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9956 | path = btrfs_alloc_path(); |
| 9957 | if (!path) |
| 9958 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 9959 | path->reada = READA_FORWARD; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9960 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9961 | cache_gen = btrfs_super_cache_generation(info->super_copy); |
| 9962 | if (btrfs_test_opt(info, SPACE_CACHE) && |
| 9963 | btrfs_super_generation(info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9964 | need_clear = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9965 | if (btrfs_test_opt(info, CLEAR_CACHE)) |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9966 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9967 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9968 | while (1) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9969 | ret = find_first_block_group(info, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9970 | if (ret > 0) |
| 9971 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9972 | if (ret != 0) |
| 9973 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9974 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9975 | leaf = path->nodes[0]; |
| 9976 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9977 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9978 | cache = btrfs_create_block_group_cache(info, found_key.objectid, |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9979 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9980 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9981 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9982 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9983 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9984 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9985 | if (need_clear) { |
| 9986 | /* |
| 9987 | * When we mount with old space cache, we need to |
| 9988 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 9989 | * |
| 9990 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 9991 | * truncate the old free space cache inode and |
| 9992 | * setup a new one. |
| 9993 | * b) Setting 'dirty flag' makes sure that we flush |
| 9994 | * the new space cache info onto disk. |
| 9995 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9996 | if (btrfs_test_opt(info, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9997 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9998 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9999 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10000 | read_extent_buffer(leaf, &cache->item, |
| 10001 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 10002 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10003 | cache->flags = btrfs_block_group_flags(&cache->item); |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 10004 | if (!mixed && |
| 10005 | ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) && |
| 10006 | (cache->flags & BTRFS_BLOCK_GROUP_DATA))) { |
| 10007 | btrfs_err(info, |
| 10008 | "bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups", |
| 10009 | cache->key.objectid); |
| 10010 | ret = -EINVAL; |
| 10011 | goto error; |
| 10012 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10013 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10014 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10015 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10016 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10017 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10018 | * We need to exclude the super stripes now so that the space |
| 10019 | * info has super bytes accounted for, otherwise we'll think |
| 10020 | * we have more space than we actually do. |
| 10021 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10022 | ret = exclude_super_stripes(info, cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10023 | if (ret) { |
| 10024 | /* |
| 10025 | * We may have excluded something, so call this just in |
| 10026 | * case. |
| 10027 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10028 | free_excluded_extents(info, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10029 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10030 | goto error; |
| 10031 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10032 | |
| 10033 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10034 | * check for two cases, either we are full, and therefore |
| 10035 | * don't need to bother with the caching work since we won't |
| 10036 | * find any space, or we are empty, and we can just add all |
| 10037 | * the space in and be done with it. This saves us _alot_ of |
| 10038 | * time, particularly in the full case. |
| 10039 | */ |
| 10040 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10041 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10042 | cache->cached = BTRFS_CACHE_FINISHED; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10043 | free_excluded_extents(info, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10044 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10045 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10046 | cache->cached = BTRFS_CACHE_FINISHED; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10047 | add_new_free_space(cache, info, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10048 | found_key.objectid, |
| 10049 | found_key.objectid + |
| 10050 | found_key.offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10051 | free_excluded_extents(info, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10052 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10053 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10054 | ret = btrfs_add_block_group_cache(info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10055 | if (ret) { |
| 10056 | btrfs_remove_free_space_cache(cache); |
| 10057 | btrfs_put_block_group(cache); |
| 10058 | goto error; |
| 10059 | } |
| 10060 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10061 | trace_btrfs_add_block_group(info, cache, 0); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10062 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 10063 | btrfs_block_group_used(&cache->item), |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10064 | cache->bytes_super, &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10065 | if (ret) { |
| 10066 | btrfs_remove_free_space_cache(cache); |
| 10067 | spin_lock(&info->block_group_cache_lock); |
| 10068 | rb_erase(&cache->cache_node, |
| 10069 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10070 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10071 | spin_unlock(&info->block_group_cache_lock); |
| 10072 | btrfs_put_block_group(cache); |
| 10073 | goto error; |
| 10074 | } |
| 10075 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10076 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10077 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10078 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10079 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10080 | set_avail_alloc_bits(info, cache->flags); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10081 | if (btrfs_chunk_readonly(info, cache->key.objectid)) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10082 | inc_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10083 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
| 10084 | spin_lock(&info->unused_bgs_lock); |
| 10085 | /* Should always be true but just in case. */ |
| 10086 | if (list_empty(&cache->bg_list)) { |
| 10087 | btrfs_get_block_group(cache); |
| 10088 | list_add_tail(&cache->bg_list, |
| 10089 | &info->unused_bgs); |
| 10090 | } |
| 10091 | spin_unlock(&info->unused_bgs_lock); |
| 10092 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10093 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10094 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10095 | list_for_each_entry_rcu(space_info, &info->space_info, list) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10096 | if (!(get_alloc_profile(info, space_info->flags) & |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10097 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 10098 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 10099 | BTRFS_BLOCK_GROUP_RAID5 | |
| 10100 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10101 | BTRFS_BLOCK_GROUP_DUP))) |
| 10102 | continue; |
| 10103 | /* |
| 10104 | * avoid allocating from un-mirrored block group if there are |
| 10105 | * mirrored block groups. |
| 10106 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10107 | list_for_each_entry(cache, |
| 10108 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 10109 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10110 | inc_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10111 | list_for_each_entry(cache, |
| 10112 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 10113 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10114 | inc_block_group_ro(cache, 1); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10115 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10116 | |
| 10117 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10118 | ret = 0; |
| 10119 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10120 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10121 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10122 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10123 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10124 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10125 | struct btrfs_fs_info *fs_info) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10126 | { |
| 10127 | struct btrfs_block_group_cache *block_group, *tmp; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10128 | struct btrfs_root *extent_root = fs_info->extent_root; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10129 | struct btrfs_block_group_item item; |
| 10130 | struct btrfs_key key; |
| 10131 | int ret = 0; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10132 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10133 | |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10134 | trans->can_flush_pending_bgs = false; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10135 | list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10136 | if (ret) |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10137 | goto next; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10138 | |
| 10139 | spin_lock(&block_group->lock); |
| 10140 | memcpy(&item, &block_group->item, sizeof(item)); |
| 10141 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10142 | spin_unlock(&block_group->lock); |
| 10143 | |
| 10144 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 10145 | sizeof(item)); |
| 10146 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10147 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10148 | ret = btrfs_finish_chunk_alloc(trans, fs_info, key.objectid, |
| 10149 | key.offset); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 10150 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10151 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10152 | add_block_group_free_space(trans, fs_info, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10153 | /* already aborted the transaction if it failed. */ |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10154 | next: |
| 10155 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10156 | } |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10157 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10158 | } |
| 10159 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10160 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10161 | struct btrfs_fs_info *fs_info, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 10162 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10163 | u64 size) |
| 10164 | { |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10165 | struct btrfs_block_group_cache *cache; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10166 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10167 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10168 | btrfs_set_log_full_commit(fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 10169 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10170 | cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 10171 | if (!cache) |
| 10172 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10173 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10174 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10175 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10176 | btrfs_set_block_group_flags(&cache->item, type); |
| 10177 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10178 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10179 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10180 | cache->cached = BTRFS_CACHE_FINISHED; |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10181 | cache->needs_free_space = 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10182 | ret = exclude_super_stripes(fs_info, cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10183 | if (ret) { |
| 10184 | /* |
| 10185 | * We may have excluded something, so call this just in |
| 10186 | * case. |
| 10187 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10188 | free_excluded_extents(fs_info, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10189 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10190 | return ret; |
| 10191 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10192 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10193 | add_new_free_space(cache, fs_info, chunk_offset, chunk_offset + size); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10194 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10195 | free_excluded_extents(fs_info, cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10196 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10197 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10198 | if (btrfs_should_fragment_free_space(cache)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10199 | u64 new_bytes_used = size - bytes_used; |
| 10200 | |
| 10201 | bytes_used += new_bytes_used >> 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10202 | fragment_free_space(cache); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10203 | } |
| 10204 | #endif |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10205 | /* |
| 10206 | * Call to ensure the corresponding space_info object is created and |
| 10207 | * assigned to our block group, but don't update its counters just yet. |
| 10208 | * We want our bg to be added to the rbtree with its ->space_info set. |
| 10209 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10210 | ret = update_space_info(fs_info, cache->flags, 0, 0, 0, |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10211 | &cache->space_info); |
| 10212 | if (ret) { |
| 10213 | btrfs_remove_free_space_cache(cache); |
| 10214 | btrfs_put_block_group(cache); |
| 10215 | return ret; |
| 10216 | } |
| 10217 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10218 | ret = btrfs_add_block_group_cache(fs_info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10219 | if (ret) { |
| 10220 | btrfs_remove_free_space_cache(cache); |
| 10221 | btrfs_put_block_group(cache); |
| 10222 | return ret; |
| 10223 | } |
| 10224 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10225 | /* |
| 10226 | * Now that our block group has its ->space_info set and is inserted in |
| 10227 | * the rbtree, update the space info's counters. |
| 10228 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10229 | trace_btrfs_add_block_group(fs_info, cache, 1); |
| 10230 | ret = update_space_info(fs_info, cache->flags, size, bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10231 | cache->bytes_super, &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10232 | if (ret) { |
| 10233 | btrfs_remove_free_space_cache(cache); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10234 | spin_lock(&fs_info->block_group_cache_lock); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10235 | rb_erase(&cache->cache_node, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10236 | &fs_info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10237 | RB_CLEAR_NODE(&cache->cache_node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10238 | spin_unlock(&fs_info->block_group_cache_lock); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10239 | btrfs_put_block_group(cache); |
| 10240 | return ret; |
| 10241 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10242 | update_global_block_rsv(fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10243 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10244 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10245 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10246 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10247 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10248 | set_avail_alloc_bits(fs_info, type); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10249 | return 0; |
| 10250 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10251 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10252 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 10253 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 10254 | u64 extra_flags = chunk_to_extended(flags) & |
| 10255 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10256 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10257 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10258 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 10259 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 10260 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 10261 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 10262 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 10263 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10264 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10265 | } |
| 10266 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10267 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10268 | struct btrfs_fs_info *fs_info, u64 group_start, |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10269 | struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10270 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10271 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10272 | struct btrfs_path *path; |
| 10273 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10274 | struct btrfs_free_cluster *cluster; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10275 | struct btrfs_root *tree_root = fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10276 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10277 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10278 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10279 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10280 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10281 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10282 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10283 | bool remove_em; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10284 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10285 | block_group = btrfs_lookup_block_group(fs_info, group_start); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10286 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10287 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10288 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10289 | /* |
| 10290 | * Free the reserved super bytes from this block group before |
| 10291 | * remove it. |
| 10292 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10293 | free_excluded_extents(fs_info, block_group); |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10294 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10295 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10296 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10297 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 10298 | BTRFS_BLOCK_GROUP_RAID1 | |
| 10299 | BTRFS_BLOCK_GROUP_RAID10)) |
| 10300 | factor = 2; |
| 10301 | else |
| 10302 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10303 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10304 | /* make sure this block group isn't part of an allocation cluster */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10305 | cluster = &fs_info->data_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10306 | spin_lock(&cluster->refill_lock); |
| 10307 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10308 | spin_unlock(&cluster->refill_lock); |
| 10309 | |
| 10310 | /* |
| 10311 | * make sure this block group isn't part of a metadata |
| 10312 | * allocation cluster |
| 10313 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10314 | cluster = &fs_info->meta_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10315 | spin_lock(&cluster->refill_lock); |
| 10316 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10317 | spin_unlock(&cluster->refill_lock); |
| 10318 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10319 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 10320 | if (!path) { |
| 10321 | ret = -ENOMEM; |
| 10322 | goto out; |
| 10323 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10324 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10325 | /* |
| 10326 | * get the inode first so any iput calls done for the io_list |
| 10327 | * aren't the final iput (no unlinks allowed now) |
| 10328 | */ |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 10329 | inode = lookup_free_space_inode(fs_info, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10330 | |
| 10331 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 10332 | /* |
| 10333 | * make sure our free spache cache IO is done before remove the |
| 10334 | * free space inode |
| 10335 | */ |
| 10336 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10337 | if (!list_empty(&block_group->io_list)) { |
| 10338 | list_del_init(&block_group->io_list); |
| 10339 | |
| 10340 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 10341 | |
| 10342 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 10343 | btrfs_wait_cache_io(trans, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10344 | btrfs_put_block_group(block_group); |
| 10345 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10346 | } |
| 10347 | |
| 10348 | if (!list_empty(&block_group->dirty_list)) { |
| 10349 | list_del_init(&block_group->dirty_list); |
| 10350 | btrfs_put_block_group(block_group); |
| 10351 | } |
| 10352 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10353 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 10354 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10355 | if (!IS_ERR(inode)) { |
Nikolay Borisov | 73f2e54 | 2017-02-20 13:50:59 +0200 | [diff] [blame] | 10356 | ret = btrfs_orphan_add(trans, BTRFS_I(inode)); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 10357 | if (ret) { |
| 10358 | btrfs_add_delayed_iput(inode); |
| 10359 | goto out; |
| 10360 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10361 | clear_nlink(inode); |
| 10362 | /* One for the block groups ref */ |
| 10363 | spin_lock(&block_group->lock); |
| 10364 | if (block_group->iref) { |
| 10365 | block_group->iref = 0; |
| 10366 | block_group->inode = NULL; |
| 10367 | spin_unlock(&block_group->lock); |
| 10368 | iput(inode); |
| 10369 | } else { |
| 10370 | spin_unlock(&block_group->lock); |
| 10371 | } |
| 10372 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 10373 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10374 | } |
| 10375 | |
| 10376 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 10377 | key.offset = block_group->key.objectid; |
| 10378 | key.type = 0; |
| 10379 | |
| 10380 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 10381 | if (ret < 0) |
| 10382 | goto out; |
| 10383 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10384 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10385 | if (ret == 0) { |
| 10386 | ret = btrfs_del_item(trans, tree_root, path); |
| 10387 | if (ret) |
| 10388 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10389 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10390 | } |
| 10391 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10392 | spin_lock(&fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10393 | rb_erase(&block_group->cache_node, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10394 | &fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 10395 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 10396 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10397 | if (fs_info->first_logical_byte == block_group->key.objectid) |
| 10398 | fs_info->first_logical_byte = (u64)-1; |
| 10399 | spin_unlock(&fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10400 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10401 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10402 | /* |
| 10403 | * we must use list_del_init so people can check to see if they |
| 10404 | * are still on the list after taking the semaphore |
| 10405 | */ |
| 10406 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10407 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10408 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 10409 | block_group->space_info->block_group_kobjs[index] = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10410 | clear_avail_alloc_bits(fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10411 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10412 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10413 | if (kobj) { |
| 10414 | kobject_del(kobj); |
| 10415 | kobject_put(kobj); |
| 10416 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10417 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10418 | if (block_group->has_caching_ctl) |
| 10419 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10420 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10421 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10422 | if (block_group->has_caching_ctl) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10423 | down_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10424 | if (!caching_ctl) { |
| 10425 | struct btrfs_caching_control *ctl; |
| 10426 | |
| 10427 | list_for_each_entry(ctl, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10428 | &fs_info->caching_block_groups, list) |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10429 | if (ctl->block_group == block_group) { |
| 10430 | caching_ctl = ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 10431 | refcount_inc(&caching_ctl->count); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10432 | break; |
| 10433 | } |
| 10434 | } |
| 10435 | if (caching_ctl) |
| 10436 | list_del_init(&caching_ctl->list); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10437 | up_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10438 | if (caching_ctl) { |
| 10439 | /* Once for the caching bgs list and once for us. */ |
| 10440 | put_caching_control(caching_ctl); |
| 10441 | put_caching_control(caching_ctl); |
| 10442 | } |
| 10443 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10444 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10445 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10446 | if (!list_empty(&block_group->dirty_list)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10447 | WARN_ON(1); |
| 10448 | } |
| 10449 | if (!list_empty(&block_group->io_list)) { |
| 10450 | WARN_ON(1); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10451 | } |
| 10452 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10453 | btrfs_remove_free_space_cache(block_group); |
| 10454 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10455 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 10456 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10457 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10458 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10459 | WARN_ON(block_group->space_info->total_bytes |
| 10460 | < block_group->key.offset); |
| 10461 | WARN_ON(block_group->space_info->bytes_readonly |
| 10462 | < block_group->key.offset); |
| 10463 | WARN_ON(block_group->space_info->disk_total |
| 10464 | < block_group->key.offset * factor); |
| 10465 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10466 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 10467 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10468 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10469 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10470 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 10471 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10472 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10473 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10474 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 10475 | if (!list_empty(&em->list)) { |
| 10476 | /* We're in the transaction->pending_chunks list. */ |
| 10477 | free_extent_map(em); |
| 10478 | } |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10479 | spin_lock(&block_group->lock); |
| 10480 | block_group->removed = 1; |
| 10481 | /* |
| 10482 | * At this point trimming can't start on this block group, because we |
| 10483 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 10484 | * so no one can't find it anymore and even if someone already got this |
| 10485 | * block group before we removed it from the rbtree, they have already |
| 10486 | * incremented block_group->trimming - if they didn't, they won't find |
| 10487 | * any free space entries because we already removed them all when we |
| 10488 | * called btrfs_remove_free_space_cache(). |
| 10489 | * |
| 10490 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 10491 | * to prevent the same logical address range and physical device space |
| 10492 | * ranges from being reused for a new block group. This is because our |
| 10493 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 10494 | * completely transactionless, so while it is trimming a range the |
| 10495 | * currently running transaction might finish and a new one start, |
| 10496 | * allowing for new block groups to be created that can reuse the same |
| 10497 | * physical device locations unless we take this special care. |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10498 | * |
| 10499 | * There may also be an implicit trim operation if the file system |
| 10500 | * is mounted with -odiscard. The same protections must remain |
| 10501 | * in place until the extents have been discarded completely when |
| 10502 | * the transaction commit has completed. |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10503 | */ |
| 10504 | remove_em = (atomic_read(&block_group->trimming) == 0); |
| 10505 | /* |
| 10506 | * Make sure a trimmer task always sees the em in the pinned_chunks list |
| 10507 | * if it sees block_group->removed == 1 (needs to lock block_group->lock |
| 10508 | * before checking block_group->removed). |
| 10509 | */ |
| 10510 | if (!remove_em) { |
| 10511 | /* |
| 10512 | * Our em might be in trans->transaction->pending_chunks which |
| 10513 | * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks), |
| 10514 | * and so is the fs_info->pinned_chunks list. |
| 10515 | * |
| 10516 | * So at this point we must be holding the chunk_mutex to avoid |
| 10517 | * any races with chunk allocation (more specifically at |
| 10518 | * volumes.c:contains_pending_extent()), to ensure it always |
| 10519 | * sees the em, either in the pending_chunks list or in the |
| 10520 | * pinned_chunks list. |
| 10521 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10522 | list_move_tail(&em->list, &fs_info->pinned_chunks); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10523 | } |
| 10524 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10525 | |
| 10526 | if (remove_em) { |
| 10527 | struct extent_map_tree *em_tree; |
| 10528 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10529 | em_tree = &fs_info->mapping_tree.map_tree; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10530 | write_lock(&em_tree->lock); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10531 | /* |
| 10532 | * The em might be in the pending_chunks list, so make sure the |
| 10533 | * chunk mutex is locked, since remove_extent_mapping() will |
| 10534 | * delete us from that list. |
| 10535 | */ |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10536 | remove_extent_mapping(em_tree, em); |
| 10537 | write_unlock(&em_tree->lock); |
| 10538 | /* once for the tree */ |
| 10539 | free_extent_map(em); |
| 10540 | } |
| 10541 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10542 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10543 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10544 | ret = remove_block_group_free_space(trans, fs_info, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10545 | if (ret) |
| 10546 | goto out; |
| 10547 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 10548 | btrfs_put_block_group(block_group); |
| 10549 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10550 | |
| 10551 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 10552 | if (ret > 0) |
| 10553 | ret = -EIO; |
| 10554 | if (ret < 0) |
| 10555 | goto out; |
| 10556 | |
| 10557 | ret = btrfs_del_item(trans, root, path); |
| 10558 | out: |
| 10559 | btrfs_free_path(path); |
| 10560 | return ret; |
| 10561 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10562 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10563 | struct btrfs_trans_handle * |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10564 | btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info, |
| 10565 | const u64 chunk_offset) |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10566 | { |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10567 | struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree; |
| 10568 | struct extent_map *em; |
| 10569 | struct map_lookup *map; |
| 10570 | unsigned int num_items; |
| 10571 | |
| 10572 | read_lock(&em_tree->lock); |
| 10573 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 10574 | read_unlock(&em_tree->lock); |
| 10575 | ASSERT(em && em->start == chunk_offset); |
| 10576 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10577 | /* |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10578 | * We need to reserve 3 + N units from the metadata space info in order |
| 10579 | * to remove a block group (done at btrfs_remove_chunk() and at |
| 10580 | * btrfs_remove_block_group()), which are used for: |
| 10581 | * |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10582 | * 1 unit for adding the free space inode's orphan (located in the tree |
| 10583 | * of tree roots). |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10584 | * 1 unit for deleting the block group item (located in the extent |
| 10585 | * tree). |
| 10586 | * 1 unit for deleting the free space item (located in tree of tree |
| 10587 | * roots). |
| 10588 | * N units for deleting N device extent items corresponding to each |
| 10589 | * stripe (located in the device tree). |
| 10590 | * |
| 10591 | * In order to remove a block group we also need to reserve units in the |
| 10592 | * system space info in order to update the chunk tree (update one or |
| 10593 | * more device items and remove one chunk item), but this is done at |
| 10594 | * btrfs_remove_chunk() through a call to check_system_chunk(). |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10595 | */ |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 10596 | map = em->map_lookup; |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10597 | num_items = 3 + map->num_stripes; |
| 10598 | free_extent_map(em); |
| 10599 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10600 | return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root, |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10601 | num_items, 1); |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10602 | } |
| 10603 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10604 | /* |
| 10605 | * Process the unused_bgs list and remove any that don't have any allocated |
| 10606 | * space inside of them. |
| 10607 | */ |
| 10608 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 10609 | { |
| 10610 | struct btrfs_block_group_cache *block_group; |
| 10611 | struct btrfs_space_info *space_info; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10612 | struct btrfs_trans_handle *trans; |
| 10613 | int ret = 0; |
| 10614 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 10615 | if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags)) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10616 | return; |
| 10617 | |
| 10618 | spin_lock(&fs_info->unused_bgs_lock); |
| 10619 | while (!list_empty(&fs_info->unused_bgs)) { |
| 10620 | u64 start, end; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10621 | int trimming; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10622 | |
| 10623 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 10624 | struct btrfs_block_group_cache, |
| 10625 | bg_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10626 | list_del_init(&block_group->bg_list); |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10627 | |
| 10628 | space_info = block_group->space_info; |
| 10629 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10630 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 10631 | btrfs_put_block_group(block_group); |
| 10632 | continue; |
| 10633 | } |
| 10634 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10635 | |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10636 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10637 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10638 | /* Don't want to race with allocators so take the groups_sem */ |
| 10639 | down_write(&space_info->groups_sem); |
| 10640 | spin_lock(&block_group->lock); |
| 10641 | if (block_group->reserved || |
| 10642 | btrfs_block_group_used(&block_group->item) || |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 10643 | block_group->ro || |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10644 | list_is_singular(&block_group->list)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10645 | /* |
| 10646 | * We want to bail if we made new allocations or have |
| 10647 | * outstanding allocations in this block group. We do |
| 10648 | * the ro check in case balance is currently acting on |
| 10649 | * this block group. |
| 10650 | */ |
| 10651 | spin_unlock(&block_group->lock); |
| 10652 | up_write(&space_info->groups_sem); |
| 10653 | goto next; |
| 10654 | } |
| 10655 | spin_unlock(&block_group->lock); |
| 10656 | |
| 10657 | /* 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] | 10658 | ret = inc_block_group_ro(block_group, 0); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10659 | up_write(&space_info->groups_sem); |
| 10660 | if (ret < 0) { |
| 10661 | ret = 0; |
| 10662 | goto next; |
| 10663 | } |
| 10664 | |
| 10665 | /* |
| 10666 | * Want to do this before we do anything else so we can recover |
| 10667 | * properly if we fail to join the transaction. |
| 10668 | */ |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10669 | trans = btrfs_start_trans_remove_block_group(fs_info, |
| 10670 | block_group->key.objectid); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10671 | if (IS_ERR(trans)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10672 | btrfs_dec_block_group_ro(block_group); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10673 | ret = PTR_ERR(trans); |
| 10674 | goto next; |
| 10675 | } |
| 10676 | |
| 10677 | /* |
| 10678 | * We could have pending pinned extents for this block group, |
| 10679 | * just delete them, we don't care about them anymore. |
| 10680 | */ |
| 10681 | start = block_group->key.objectid; |
| 10682 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10683 | /* |
| 10684 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 10685 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 10686 | * another task might be running finish_extent_commit() for the |
| 10687 | * previous transaction N - 1, and have seen a range belonging |
| 10688 | * to the block group in freed_extents[] before we were able to |
| 10689 | * clear the whole block group range from freed_extents[]. This |
| 10690 | * means that task can lookup for the block group after we |
| 10691 | * unpinned it from freed_extents[] and removed it, leading to |
| 10692 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 10693 | */ |
| 10694 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10695 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10696 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10697 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10698 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10699 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10700 | goto end_trans; |
| 10701 | } |
| 10702 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10703 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10704 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10705 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10706 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10707 | goto end_trans; |
| 10708 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10709 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10710 | |
| 10711 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10712 | spin_lock(&space_info->lock); |
| 10713 | spin_lock(&block_group->lock); |
| 10714 | |
| 10715 | space_info->bytes_pinned -= block_group->pinned; |
| 10716 | space_info->bytes_readonly += block_group->pinned; |
| 10717 | percpu_counter_add(&space_info->total_bytes_pinned, |
| 10718 | -block_group->pinned); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10719 | block_group->pinned = 0; |
| 10720 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10721 | spin_unlock(&block_group->lock); |
| 10722 | spin_unlock(&space_info->lock); |
| 10723 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10724 | /* DISCARD can flip during remount */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10725 | trimming = btrfs_test_opt(fs_info, DISCARD); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10726 | |
| 10727 | /* Implicit trim during transaction commit. */ |
| 10728 | if (trimming) |
| 10729 | btrfs_get_block_group_trimming(block_group); |
| 10730 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10731 | /* |
| 10732 | * Btrfs_remove_chunk will abort the transaction if things go |
| 10733 | * horribly wrong. |
| 10734 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 10735 | ret = btrfs_remove_chunk(trans, fs_info, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10736 | block_group->key.objectid); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10737 | |
| 10738 | if (ret) { |
| 10739 | if (trimming) |
| 10740 | btrfs_put_block_group_trimming(block_group); |
| 10741 | goto end_trans; |
| 10742 | } |
| 10743 | |
| 10744 | /* |
| 10745 | * If we're not mounted with -odiscard, we can just forget |
| 10746 | * about this block group. Otherwise we'll need to wait |
| 10747 | * until transaction commit to do the actual discard. |
| 10748 | */ |
| 10749 | if (trimming) { |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10750 | spin_lock(&fs_info->unused_bgs_lock); |
| 10751 | /* |
| 10752 | * A concurrent scrub might have added us to the list |
| 10753 | * fs_info->unused_bgs, so use a list_move operation |
| 10754 | * to add the block group to the deleted_bgs list. |
| 10755 | */ |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10756 | list_move(&block_group->bg_list, |
| 10757 | &trans->transaction->deleted_bgs); |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10758 | spin_unlock(&fs_info->unused_bgs_lock); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10759 | btrfs_get_block_group(block_group); |
| 10760 | } |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10761 | end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 10762 | btrfs_end_transaction(trans); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10763 | next: |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10764 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10765 | btrfs_put_block_group(block_group); |
| 10766 | spin_lock(&fs_info->unused_bgs_lock); |
| 10767 | } |
| 10768 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10769 | } |
| 10770 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10771 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 10772 | { |
| 10773 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10774 | struct btrfs_super_block *disk_super; |
| 10775 | u64 features; |
| 10776 | u64 flags; |
| 10777 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10778 | int ret; |
| 10779 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10780 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10781 | if (!btrfs_super_root(disk_super)) |
Dan Carpenter | 0dc924c5 | 2016-01-13 15:21:17 +0300 | [diff] [blame] | 10782 | return -EINVAL; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10783 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10784 | features = btrfs_super_incompat_flags(disk_super); |
| 10785 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 10786 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10787 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10788 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10789 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10790 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10791 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10792 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10793 | if (mixed) { |
| 10794 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10795 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10796 | } else { |
| 10797 | flags = BTRFS_BLOCK_GROUP_METADATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10798 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10799 | if (ret) |
| 10800 | goto out; |
| 10801 | |
| 10802 | flags = BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10803 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10804 | } |
| 10805 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10806 | return ret; |
| 10807 | } |
| 10808 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10809 | int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 10810 | u64 start, u64 end) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10811 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10812 | return unpin_extent_range(fs_info, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10813 | } |
| 10814 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10815 | /* |
| 10816 | * It used to be that old block groups would be left around forever. |
| 10817 | * Iterating over them would be enough to trim unused space. Since we |
| 10818 | * now automatically remove them, we also need to iterate over unallocated |
| 10819 | * space. |
| 10820 | * |
| 10821 | * We don't want a transaction for this since the discard may take a |
| 10822 | * substantial amount of time. We don't require that a transaction be |
| 10823 | * running, but we do need to take a running transaction into account |
| 10824 | * to ensure that we're not discarding chunks that were released in |
| 10825 | * the current transaction. |
| 10826 | * |
| 10827 | * Holding the chunks lock will prevent other threads from allocating |
| 10828 | * or releasing chunks, but it won't prevent a running transaction |
| 10829 | * from committing and releasing the memory that the pending chunks |
| 10830 | * list head uses. For that, we need to take a reference to the |
| 10831 | * transaction. |
| 10832 | */ |
| 10833 | static int btrfs_trim_free_extents(struct btrfs_device *device, |
| 10834 | u64 minlen, u64 *trimmed) |
| 10835 | { |
| 10836 | u64 start = 0, len = 0; |
| 10837 | int ret; |
| 10838 | |
| 10839 | *trimmed = 0; |
| 10840 | |
| 10841 | /* Not writeable = nothing to do. */ |
| 10842 | if (!device->writeable) |
| 10843 | return 0; |
| 10844 | |
| 10845 | /* No free space = nothing to do. */ |
| 10846 | if (device->total_bytes <= device->bytes_used) |
| 10847 | return 0; |
| 10848 | |
| 10849 | ret = 0; |
| 10850 | |
| 10851 | while (1) { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 10852 | struct btrfs_fs_info *fs_info = device->fs_info; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10853 | struct btrfs_transaction *trans; |
| 10854 | u64 bytes; |
| 10855 | |
| 10856 | ret = mutex_lock_interruptible(&fs_info->chunk_mutex); |
| 10857 | if (ret) |
| 10858 | return ret; |
| 10859 | |
| 10860 | down_read(&fs_info->commit_root_sem); |
| 10861 | |
| 10862 | spin_lock(&fs_info->trans_lock); |
| 10863 | trans = fs_info->running_transaction; |
| 10864 | if (trans) |
Elena Reshetova | 9b64f57 | 2017-03-03 10:55:11 +0200 | [diff] [blame] | 10865 | refcount_inc(&trans->use_count); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10866 | spin_unlock(&fs_info->trans_lock); |
| 10867 | |
| 10868 | ret = find_free_dev_extent_start(trans, device, minlen, start, |
| 10869 | &start, &len); |
| 10870 | if (trans) |
| 10871 | btrfs_put_transaction(trans); |
| 10872 | |
| 10873 | if (ret) { |
| 10874 | up_read(&fs_info->commit_root_sem); |
| 10875 | mutex_unlock(&fs_info->chunk_mutex); |
| 10876 | if (ret == -ENOSPC) |
| 10877 | ret = 0; |
| 10878 | break; |
| 10879 | } |
| 10880 | |
| 10881 | ret = btrfs_issue_discard(device->bdev, start, len, &bytes); |
| 10882 | up_read(&fs_info->commit_root_sem); |
| 10883 | mutex_unlock(&fs_info->chunk_mutex); |
| 10884 | |
| 10885 | if (ret) |
| 10886 | break; |
| 10887 | |
| 10888 | start += len; |
| 10889 | *trimmed += bytes; |
| 10890 | |
| 10891 | if (fatal_signal_pending(current)) { |
| 10892 | ret = -ERESTARTSYS; |
| 10893 | break; |
| 10894 | } |
| 10895 | |
| 10896 | cond_resched(); |
| 10897 | } |
| 10898 | |
| 10899 | return ret; |
| 10900 | } |
| 10901 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10902 | 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] | 10903 | { |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10904 | struct btrfs_block_group_cache *cache = NULL; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10905 | struct btrfs_device *device; |
| 10906 | struct list_head *devices; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10907 | u64 group_trimmed; |
| 10908 | u64 start; |
| 10909 | u64 end; |
| 10910 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10911 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10912 | int ret = 0; |
| 10913 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10914 | /* |
| 10915 | * try to trim all FS space, our block group may start from non-zero. |
| 10916 | */ |
| 10917 | if (range->len == total_bytes) |
| 10918 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 10919 | else |
| 10920 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10921 | |
| 10922 | while (cache) { |
| 10923 | if (cache->key.objectid >= (range->start + range->len)) { |
| 10924 | btrfs_put_block_group(cache); |
| 10925 | break; |
| 10926 | } |
| 10927 | |
| 10928 | start = max(range->start, cache->key.objectid); |
| 10929 | end = min(range->start + range->len, |
| 10930 | cache->key.objectid + cache->key.offset); |
| 10931 | |
| 10932 | if (end - start >= range->minlen) { |
| 10933 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 10934 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 10935 | if (ret) { |
| 10936 | btrfs_put_block_group(cache); |
| 10937 | break; |
| 10938 | } |
| 10939 | ret = wait_block_group_cache_done(cache); |
| 10940 | if (ret) { |
| 10941 | btrfs_put_block_group(cache); |
| 10942 | break; |
| 10943 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10944 | } |
| 10945 | ret = btrfs_trim_block_group(cache, |
| 10946 | &group_trimmed, |
| 10947 | start, |
| 10948 | end, |
| 10949 | range->minlen); |
| 10950 | |
| 10951 | trimmed += group_trimmed; |
| 10952 | if (ret) { |
| 10953 | btrfs_put_block_group(cache); |
| 10954 | break; |
| 10955 | } |
| 10956 | } |
| 10957 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10958 | cache = next_block_group(fs_info, cache); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10959 | } |
| 10960 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10961 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
| 10962 | devices = &fs_info->fs_devices->alloc_list; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10963 | list_for_each_entry(device, devices, dev_alloc_list) { |
| 10964 | ret = btrfs_trim_free_extents(device, range->minlen, |
| 10965 | &group_trimmed); |
| 10966 | if (ret) |
| 10967 | break; |
| 10968 | |
| 10969 | trimmed += group_trimmed; |
| 10970 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10971 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10972 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10973 | range->len = trimmed; |
| 10974 | return ret; |
| 10975 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10976 | |
| 10977 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10978 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 10979 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 10980 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 10981 | * but flush the data into disk after the snapshot creation, or to prevent |
| 10982 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 10983 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10984 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10985 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10986 | { |
| 10987 | percpu_counter_dec(&root->subv_writers->counter); |
| 10988 | /* |
David Sterba | a83342a | 2015-02-16 19:36:47 +0100 | [diff] [blame] | 10989 | * Make sure counter is updated before we wake up waiters. |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10990 | */ |
| 10991 | smp_mb(); |
| 10992 | if (waitqueue_active(&root->subv_writers->wait)) |
| 10993 | wake_up(&root->subv_writers->wait); |
| 10994 | } |
| 10995 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10996 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10997 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 10998 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10999 | return 0; |
| 11000 | |
| 11001 | percpu_counter_inc(&root->subv_writers->counter); |
| 11002 | /* |
| 11003 | * Make sure counter is updated before we check for snapshot creation. |
| 11004 | */ |
| 11005 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11006 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11007 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11008 | return 0; |
| 11009 | } |
| 11010 | return 1; |
| 11011 | } |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11012 | |
| 11013 | static int wait_snapshoting_atomic_t(atomic_t *a) |
| 11014 | { |
| 11015 | schedule(); |
| 11016 | return 0; |
| 11017 | } |
| 11018 | |
| 11019 | void btrfs_wait_for_snapshot_creation(struct btrfs_root *root) |
| 11020 | { |
| 11021 | while (true) { |
| 11022 | int ret; |
| 11023 | |
| 11024 | ret = btrfs_start_write_no_snapshoting(root); |
| 11025 | if (ret) |
| 11026 | break; |
| 11027 | wait_on_atomic_t(&root->will_be_snapshoted, |
| 11028 | wait_snapshoting_atomic_t, |
| 11029 | TASK_UNINTERRUPTIBLE); |
| 11030 | } |
| 11031 | } |